:root {
  /* African Safari Luxury Palette */
  --bg-primary: #1a120b;
  --bg-secondary: #2b1d14;
  --surface: rgba(255, 248, 230, 0.06);
  --surface-hover: rgba(255, 248, 230, 0.1);
  --surface-border: rgba(255, 248, 230, 0.08);
  
  --accent-primary: #c19a49;
  --accent-secondary: #d97706;
  --accent-highlight: #fbbf24;
  
  --text-primary: #fef3c7;
  --text-secondary: #fde68a;
  --text-muted: rgba(253, 230, 138, 0.6);
  
  /* Gradients */
  --gold-gradient: linear-gradient(135deg, #c19a49 0%, #d97706 100%);
  --gold-gradient-hover: linear-gradient(135deg, #fbbf24 0%, #c19a49 100%);
  
  /* Typography */
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  
  /* Layout & Spacing */
  --container-max: 1320px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Floating Dust Animation Layer */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(193, 154, 73, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(217, 119, 6, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: breathe 15s infinite alternate ease-in-out;
}

@keyframes breathe {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.1); opacity: 1; }
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; color: var(--accent-primary); }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1rem; color: var(--text-secondary); }

/* =========================================
   LAYOUT
========================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

section {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.fade-in {
  animation: fadeIn 1.2s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

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

/* =========================================
   COMPONENTS
========================================= */

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(26, 18, 11, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--surface-border);
  transition: var(--transition-smooth);
  padding: 1rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent-primary);
  font-weight: 600;
  letter-spacing: 1px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  fill: var(--accent-primary);
}

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

.nav-links a {
  color: var(--text-primary);
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-primary);
  transition: var(--transition-smooth);
}

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

/* Mobile Menu Toggle */
.menu-toggle {
  display: block;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 102;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  position: absolute;
  transition: var(--transition-smooth);
}

.menu-toggle span:first-child { top: 0; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:last-child { top: 18px; }

#nav-checkbox {
  display: none;
}

#nav-checkbox:checked ~ .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 80%;
  max-width: 400px;
  background: var(--bg-secondary);
  padding: 6rem 2rem 2rem;
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  z-index: 101;
  animation: slideIn 0.4s forwards;
}

@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

#nav-checkbox:checked ~ .menu-toggle span:first-child {
  transform: rotate(45deg);
  top: 9px;
}
#nav-checkbox:checked ~ .menu-toggle span:nth-child(2) {
  opacity: 0;
}
#nav-checkbox:checked ~ .menu-toggle span:last-child {
  transform: rotate(-45deg);
  top: 9px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--bg-primary);
  box-shadow: 0 4px 15px rgba(193, 154, 73, 0.2);
}

.btn-primary:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(193, 154, 73, 0.4);
}

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

.btn-outline:hover {
  background: rgba(193, 154, 73, 0.1);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
  /* Parallax effect simulated via slow scale */
  animation: slowZoom 20s infinite alternate linear;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, var(--bg-primary) 0%, transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Legal & Info Cards */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.glass-card {
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  background: var(--surface-hover);
  transform: translateY(-5px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(193, 154, 73, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-primary);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Page Headers */
.page-header {
  padding: 150px 0 80px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--surface-border);
}

.page-header-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.page-header-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

/* Content Blocks */
.content-block {
  max-width: 800px;
  margin: 0 auto;
  background: var(--surface);
  padding: 3rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-border);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.form-control {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: rgba(0,0,0,0.4);
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--surface-border);
  padding: 60px 0 30px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--accent-highlight);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* =========================================
   MEDIA QUERIES
========================================= */

/* Tablet */
@media (min-width: 768px) {
  html { font-size: 16px; }
  section { padding: 80px 0; }
  .container { padding: 0 24px; }
  .hero h1 { font-size: 4rem; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  
  .header-container { justify-content: space-between; }
  .menu-toggle { display: none; }
  .nav-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: transparent;
    padding: 0;
    box-shadow: none;
    width: auto;
    animation: none;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  section { padding: 110px 0; }
  .container { padding: 0 32px; }
  .hero h1 { font-size: 5rem; }
  .info-grid { grid-template-columns: repeat(3, 1fr); }
}