/* ============================================
   ChadTrip.com - Travel With Context
   Mobile-First Responsive CSS Framework
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --color-sand: #D4A853;
  --color-sand-light: #E8C97A;
  --color-sand-dark: #B8893A;
  --color-desert: #C4956A;
  --color-sahel: #A67B5B;
  --color-savannah: #6B8E4E;
  --color-savannah-dark: #4A6B35;
  --color-lake: #3A7CA5;
  --color-lake-dark: #2A5F80;
  --color-tibesti: #8B5E3C;
  --color-night: #1A1A2E;
  --color-night-light: #2D2D44;
  --color-charcoal: #2C2C2C;
  --color-slate: #4A4A4A;
  --color-ash: #6B6B6B;
  --color-stone: #999999;
  --color-fog: #D0D0D0;
  --color-cloud: #EAEAEA;
  --color-white: #FFFFFF;
  --color-cream: #FAF7F2;
  --color-warm-white: #FFF8F0;
  --color-accent: #D4A853;
  --color-accent-hover: #B8893A;
  --color-danger: #C0392B;
  --color-success: #27AE60;

  /* Typography */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --max-width-wide: 1400px;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 50px rgba(0,0,0,0.15);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

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

a:hover {
  color: var(--color-lake-dark);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-night);
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

p { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.container--wide {
  max-width: var(--max-width-wide);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 168, 83, 0.15);
  transition: all var(--transition-base);
}

.nav--scrolled {
  background: rgba(26, 26, 46, 0.98);
  box-shadow: var(--shadow-lg);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.nav__logo span {
  color: var(--color-sand);
}

.nav__links {
  display: none;
  align-items: center;
  gap: var(--space-xl);
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-sand);
  transition: width var(--transition-base);
}

.nav__link:hover {
  color: var(--color-white);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--active {
  color: var(--color-sand);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--color-sand);
  color: var(--color-night) !important;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
}

.nav__cta:hover {
  background: var(--color-sand-light);
  transform: translateY(-1px);
  color: var(--color-night) !important;
}

/* Mobile Menu Toggle */
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-base);
  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: 360px;
  height: 100vh;
  background: var(--color-night);
  z-index: 999;
  padding: 80px var(--space-xl) var(--space-xl);
  transition: right var(--transition-base);
  overflow-y: auto;
}

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

.mobile-menu__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.mobile-menu__overlay--visible {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__link {
  display: block;
  padding: var(--space-md) 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition-fast);
}

.mobile-menu__link:hover {
  color: var(--color-sand);
  padding-left: var(--space-sm);
}

.mobile-menu__cta {
  display: block;
  margin-top: var(--space-xl);
  padding: var(--space-md) var(--space-xl);
  background: var(--color-sand);
  color: var(--color-night);
  font-weight: 700;
  text-align: center;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-night);
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: brightness(0.7);
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 46, 0.3) 0%,
    rgba(26, 26, 46, 0.6) 50%,
    rgba(26, 26, 46, 0.95) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px var(--space-lg) var(--space-3xl);
  max-width: 900px;
}

.hero__badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(212, 168, 83, 0.15);
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-sand);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-xl);
}

.hero__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.03em;
}

.hero__title em {
  font-style: normal;
  color: var(--color-sand);
}

.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  animation: bounce 2s infinite;
}

.hero__scroll svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255,255,255,0.5);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-sand);
  color: var(--color-night);
}

.btn--primary:hover {
  background: var(--color-sand-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 168, 83, 0.3);
  color: var(--color-night);
}

.btn--secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.3);
}

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

.btn--dark {
  background: var(--color-night);
  color: var(--color-white);
}

.btn--dark:hover {
  background: var(--color-night-light);
  transform: translateY(-2px);
  color: var(--color-white);
}

.btn--outline {
  background: transparent;
  color: var(--color-night);
  border: 2px solid var(--color-night);
}

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

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
}

.btn--full {
  width: 100%;
}

/* --- Section Layouts --- */
.section {
  padding: var(--space-3xl) 0;
}

.section--lg {
  padding: var(--space-4xl) 0;
}

.section--dark {
  background: var(--color-night);
  color: var(--color-white);
}

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

.section--cream {
  background: var(--color-cream);
}

.section--warm {
  background: var(--color-warm-white);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-sand);
  margin-bottom: var(--space-md);
}

.section__title {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.section__desc {
  font-size: 1.05rem;
  color: var(--color-ash);
  line-height: 1.7;
}

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

/* --- Cards Grid --- */
.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
.grid--5 { grid-template-columns: 1fr; }

/* --- Zone Cards --- */
.zone-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  text-decoration: none;
  color: var(--color-white);
}

.zone-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  color: var(--color-white);
}

.zone-card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.zone-card:hover .zone-card__img {
  transform: scale(1.05);
}

.zone-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 30%,
    rgba(0,0,0,0.7) 100%
  );
}

.zone-card__content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl);
  width: 100%;
}

.zone-card__zone {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-sand);
  margin-bottom: var(--space-xs);
}

.zone-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.zone-card__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

/* --- Feature Cards --- */
.feature-card {
  padding: var(--space-xl);
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-cloud);
  transition: all var(--transition-base);
}

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

.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 83, 0.1);
  border-radius: 12px;
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.feature-card__title {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.feature-card__desc {
  font-size: 0.9rem;
  color: var(--color-ash);
  line-height: 1.6;
}

/* --- Info Cards --- */
.info-card {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-cloud);
  transition: all var(--transition-base);
  text-decoration: none;
  color: var(--color-charcoal);
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--color-charcoal);
}

.info-card__number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-night);
  color: var(--color-sand);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 10px;
}

.info-card__title {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.info-card__desc {
  font-size: 0.875rem;
  color: var(--color-ash);
  line-height: 1.5;
}

/* --- Stats Bar --- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  padding: var(--space-2xl) 0;
}

.stat {
  text-align: center;
}

.stat__number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-sand);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- Blockquote --- */
.quote {
  position: relative;
  padding: var(--space-2xl);
  background: var(--color-cream);
  border-radius: var(--border-radius-lg);
  border-left: 4px solid var(--color-sand);
}

.quote__text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-night);
  font-style: italic;
}

.quote__text::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--color-sand);
  position: absolute;
  top: 10px;
  left: 16px;
  line-height: 1;
}

/* --- Image Banner --- */
.banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  margin: var(--space-xl) 0;
}

.banner__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.6);
}

.banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-2xl);
  color: var(--color-white);
  max-width: 600px;
}

.banner__title {
  font-size: 1.75rem;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.banner__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-xl);
}

/* --- Checklist --- */
.checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-white);
  border-radius: var(--border-radius);
  border: 1px solid var(--color-cloud);
}

.checklist__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 83, 0.15);
  color: var(--color-sand-dark);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

.checklist__text {
  font-size: 0.95rem;
  line-height: 1.5;
}

.checklist__text strong {
  color: var(--color-night);
}

/* --- Page Header (Subpages) --- */
.page-header {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-night);
}

.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.page-header__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 46, 0.4) 0%,
    rgba(26, 26, 46, 0.85) 100%
  );
}

.page-header__content {
  position: relative;
  z-index: 2;
  padding: 120px 0 var(--space-3xl);
}

.page-header__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-lg);
}

.page-header__breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.page-header__breadcrumb a:hover {
  color: var(--color-sand);
}

.page-header__breadcrumb span {
  color: rgba(255,255,255,0.3);
}

.page-header__title {
  font-size: 2.25rem;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.page-header__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  line-height: 1.6;
}

/* --- Content Sections --- */
.content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-slate);
}

.content h2 {
  font-size: 1.5rem;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-cloud);
}

.content h3 {
  font-size: 1.25rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.content ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-xl);
}

.content ul li {
  position: relative;
  padding-left: var(--space-sm);
  margin-bottom: var(--space-sm);
  list-style: none;
}

.content ul li::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--color-sand);
  border-radius: 50%;
}

.content blockquote {
  margin: var(--space-xl) 0;
  padding: var(--space-lg) var(--space-xl);
  background: var(--color-cream);
  border-left: 4px solid var(--color-sand);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  font-style: italic;
  color: var(--color-night);
}

/* --- Footer --- */
.footer {
  background: var(--color-night);
  color: rgba(255,255,255,0.6);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer__logo span {
  color: var(--color-sand);
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-sand);
  margin-bottom: var(--space-lg);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-white);
}

.footer__bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer__bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
}

.footer__bottom-links a:hover {
  color: rgba(255,255,255,0.7);
}

/* --- Coming Soon Page --- */
.coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-night);
  position: relative;
  overflow: hidden;
}

.coming-soon__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.coming-soon__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-2xl);
  max-width: 550px;
}

.coming-soon__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 83, 0.15);
  border-radius: 50%;
  font-size: 1.75rem;
}

.coming-soon__title {
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.coming-soon__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
}

/* --- Two Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.two-col__img {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.two-col__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

/* --- Accordion --- */
.accordion__item {
  border-bottom: 1px solid var(--color-cloud);
}

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-lg) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-night);
  text-align: left;
}

.accordion__trigger svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-base);
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.accordion__trigger--active svg {
  transform: rotate(180deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.accordion__content--open {
  max-height: 500px;
}

.accordion__body {
  padding-bottom: var(--space-lg);
  font-size: 0.95rem;
  color: var(--color-ash);
  line-height: 1.7;
}

/* --- Tags --- */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(212, 168, 83, 0.12);
  color: var(--color-sand-dark);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tag--dark {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

/* --- Responsive Grid Breakpoints --- */

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

/* Large phones / Small tablets (480px+) */
@media (min-width: 480px) {
  h1 { font-size: 2.5rem; }
  .hero__title { font-size: 2.75rem; }
  .hero__actions { flex-direction: row; justify-content: center; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

/* Tablets (640px+) */
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--5 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr 1fr; }
}

/* Small desktops (768px+) */
@media (min-width: 768px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }
  .section { padding: var(--space-4xl) 0; }
  .section__title { font-size: 2.25rem; }
  .hero__title { font-size: 3.25rem; }
  .hero__subtitle { font-size: 1.25rem; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .stat__number { font-size: 2.5rem; }
  .nav__links { display: flex; }
  .nav__toggle { display: none; }
  .page-header__title { font-size: 2.75rem; }
  .banner { min-height: 450px; }
}

/* Desktops (1024px+) */
@media (min-width: 1024px) {
  h1 { font-size: 3.25rem; }
  .hero__title { font-size: 3.75rem; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--5 { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .footer__bottom { flex-direction: row; justify-content: space-between; }
  .section__title { font-size: 2.5rem; }
  .two-col { gap: var(--space-4xl); }
}

/* Large desktops (1200px+) */
@media (min-width: 1200px) {
  .hero__title { font-size: 4.25rem; }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .grid--5 { grid-template-columns: repeat(5, 1fr); }
}

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

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Lazy loading images */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s ease;
}

img[loading="lazy"].loaded,
img[loading="lazy"][src] {
  opacity: 1;
}

/* --- Print Styles --- */
@media print {
  .nav, .footer, .mobile-menu, .mobile-menu__overlay { display: none; }
  .hero { min-height: auto; }
  body { color: #000; }
}
