/* ═══════════════════════════════════════════════════════
   AWESOME SAFARIS — Page-specific (Home + shared grids)
   ═══════════════════════════════════════════════════════ */

/* ── HOME HERO ── */
#home-hero {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  margin-top: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
  padding: 0;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(206,152,2,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(206,152,2,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: gridPan 30s linear infinite;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, black 20%, transparent 75%);
}
@keyframes gridPan {
  0%   { background-position: 0 0; }
  100% { background-position: 48px 48px; }
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(255,255,255,0.5) 0%, transparent 55%),
    linear-gradient(180deg, transparent 55%, rgba(244,239,230,0.9) 100%);
}

.hero-glow-orb {
  position: absolute;
  width: min(90vw, 800px);
  height: min(90vw, 800px);
  background: radial-gradient(circle, rgba(212,160,23,0.14) 0%, transparent 65%);
  top: 48%;
  left: 50%;
  transform: translate(-50%, -52%);
  animation: orbPulse 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes orbPulse {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -52%) scale(1); }
  50%      { opacity: 1; transform: translate(-50%, -52%) scale(1.08); }
}

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

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlide 0.8s 0.5s var(--ease) forwards;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  flex: 0 0 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(20px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8.5vw, 6.8rem);
  font-weight: 700;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeSlide 0.95s 0.75s var(--ease) forwards;
}
.hero-title em {
  color: var(--gold-dim);
  font-style: italic;
}

.hero-typed-wrap {
  font-family: var(--font-accent);
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text-muted);
  min-height: 2.2rem;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeSlide 0.85s 1s var(--ease) forwards;
}
#typed-tagline::after {
  content: '|';
  color: var(--gold-bright);
  animation: blink 1s step-end infinite;
  margin-left: 3px;
  text-shadow: 0 0 12px var(--gold-glow);
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-since {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(206,152,2,0.5);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeSlide 0.8s 1.2s var(--ease) forwards;
}

.hero-btns {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlide 0.8s 1.4s var(--ease) forwards;
}

.hero-bracket {
  position: absolute;
  width: 56px;
  height: 56px;
  border-color: rgba(206,152,2,0.3);
  border-style: solid;
  z-index: 2;
  pointer-events: none;
  transition: border-color 0.4s ease;
}
#home-hero:hover .hero-bracket { border-color: rgba(206,152,2,0.55); }
.hero-bracket.tl { top: 110px; left: 36px; border-width: 1px 0 0 1px; }
.hero-bracket.tr { top: 110px; right: 36px; border-width: 1px 1px 0 0; }
.hero-bracket.bl { bottom: 90px; left: 36px; border-width: 0 0 1px 1px; }
.hero-bracket.br { bottom: 90px; right: 36px; border-width: 0 1px 1px 0; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeSlide 0.8s 1.7s ease forwards;
}
.hero-scroll-indicator span {
  font-family: var(--font-ui);
  font-size: 8px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(206,152,2,0.45);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold-bright), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--gold-glow);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.85); }
  50%      { opacity: 1; transform: scaleY(1.05); }
}

.hero-bottom-flow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--black), transparent);
  z-index: 2;
  pointer-events: none;
}

/* ── STATS ── */
.stats-bar {
  background: var(--surface-card);
  padding: 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  opacity: 0.5;
  animation: navLineFlow 5s ease-in-out infinite;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
  text-align: center;
  padding: 44px 20px;
  position: relative;
  border-right: 1px solid rgba(206,152,2,0.06);
  transition: background 0.4s var(--ease);
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover {
  background: rgba(206,152,2,0.04);
}
.stat-cell::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.4s var(--ease);
  box-shadow: 0 0 12px var(--gold-glow);
}
.stat-cell:hover::after { width: 40%; }

.count-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-dim);
  line-height: 1;
  display: block;
}
.stat-lbl {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 10px;
  display: block;
}

/* ── EXP CARDS ── */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}
.exp-card {
  background: var(--surface-card);
  padding: 56px 40px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border-bottom: 2px solid transparent;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.exp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.exp-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(206,152,2,0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.exp-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.exp-card:hover::before,
.exp-card:hover::after { opacity: 1; }

.exp-num {
  font-family: var(--font-brand);
  font-size: 8px;
  letter-spacing: 4px;
  color: rgba(206,152,2,0.35);
  margin-bottom: 22px;
  display: block;
}
.exp-icon { font-size: 2.4rem; margin-bottom: 20px; display: block; filter: drop-shadow(0 0 12px rgba(206,152,2,0.2)); }
.exp-card h3 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: var(--white);
  margin-bottom: 10px;
}
.exp-tag {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(206,152,2,0.75);
  margin-bottom: 16px;
  display: block;
}
.exp-card p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.exp-link {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-bright);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.exp-link::after { content: '→'; transition: transform 0.35s var(--ease); }
.exp-card:hover .exp-link::after { transform: translateX(8px); }

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 88px);
  align-items: center;
}
.why-features { display: flex; flex-direction: column; gap: 4px; }
.why-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 28px 26px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border-left: 2px solid var(--gold);
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-bright), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.why-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-hover);
}
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(206,152,2,0.1);
  border: 1px solid rgba(206,152,2,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: inset 0 0 20px rgba(206,152,2,0.05);
}
.why-card h4 {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 8px;
  font-weight: 600;
}
.why-card p {
  font-size: 0.9rem;
  line-height: 1.78;
  color: var(--text-muted);
}

/* ── TESTIMONIAL ── */
.testi-strip {
  background: var(--surface-section);
  padding: clamp(64px, 10vw, 96px) 2rem;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}
.testi-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 50% 50%, rgba(206,152,2,0.06), transparent);
  animation: meshDrift 20s ease-in-out infinite alternate;
}
.testi-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.testi-quote {
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.12;
  font-family: var(--font-serif);
  line-height: 1;
  margin-bottom: 8px;
}
.testi-text {
  font-family: var(--font-accent);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.78;
  margin-bottom: 28px;
}
.testi-cite {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
}

/* ── OWNER BLOCK ── */
.owner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.owner-quote-block {
  background: var(--surface-card);
  padding: 64px 52px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}
.owner-quote-block::before {
  content: '"';
  position: absolute;
  top: -24px;
  left: 24px;
  font-family: var(--font-serif);
  font-size: 14rem;
  font-weight: 700;
  color: rgba(206,152,2,0.04);
  line-height: 1;
}
.owner-qtext {
  font-family: var(--font-accent);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.78;
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}
.owner-sig {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-style: italic;
  color: var(--gold-dim);
}
.owner-content {
  background: var(--surface-section);
  padding: 64px 52px;
  border: 1px solid var(--border-subtle);
}
.owner-content p {
  font-size: 0.96rem;
  line-height: 1.92;
  color: var(--text-muted);
  margin-bottom: 18px;
}

/* ── SHARED PAGE GRIDS (about, drives, etc.) ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 80px);
  align-items: start;
}
.about-grid p {
  font-size: 1rem;
  line-height: 1.92;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.team-card {
  background: var(--surface-card);
  padding: 52px 36px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  border-top: 2px solid transparent;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.team-card:hover {
  border-top-color: var(--gold-bright);
  box-shadow: 0 -4px 40px rgba(206,152,2,0.1);
}
.team-num {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(206,152,2,0.06);
  position: absolute;
  top: 16px;
  right: 16px;
  line-height: 1;
}
.team-name {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-style: italic;
  color: var(--gold-bright);
  margin-bottom: 6px;
}
.team-role {
  font-family: var(--font-brand);
  font-size: 7.5px;
  letter-spacing: 2.5px;
  color: var(--text-faint);
  margin-bottom: 18px;
}
.team-card p {
  font-size: 0.88rem;
  line-height: 1.88;
  color: var(--text-muted);
}
.team-quote {
  margin-top: 18px;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-faint);
}

.drives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.drive-card {
  background: var(--surface-card);
  padding: 56px 38px 48px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border-bottom: 2px solid transparent;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}
.drive-card:hover {
  border-bottom-color: var(--gold);
  box-shadow: var(--shadow-hover);
}
.drive-no {
  font-family: var(--font-brand);
  font-size: 8px;
  letter-spacing: 3px;
  color: rgba(206,152,2,0.5);
  margin-bottom: 20px;
}
.drive-icon { font-size: 2.6rem; margin-bottom: 20px; display: block; }
.drive-card h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 8px;
}
.drive-tag {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-bright);
  margin-bottom: 20px;
}
.drive-card p {
  font-size: 0.9rem;
  line-height: 1.88;
  color: var(--text-muted);
  flex: 1;
}
.drive-features {
  list-style: none;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.drive-features li {
  font-size: 0.84rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.drive-features li::before {
  content: '—';
  color: var(--gold);
  font-size: 0.75rem;
}
.drive-link {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold-bright);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-top: auto;
  text-transform: uppercase;
}
.drive-link::after { content: '→'; transition: transform 0.35s var(--ease); }
.drive-card:hover .drive-link::after { transform: translateX(6px); }

.includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.inc-item {
  background: var(--dark-3);
  padding: 38px 28px;
  text-align: center;
  border-top: 2px solid transparent;
  transition: var(--trans);
}
.inc-item:hover {
  border-top-color: var(--gold);
  background: var(--dark-4);
}
.inc-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.inc-item p {
  font-size: 0.86rem;
  line-height: 1.72;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .exp-grid, .stats-inner, .drives-grid { grid-template-columns: 1fr; }
  .why-grid, .owner-grid, .about-grid, .team-grid { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid rgba(206,152,2,0.06); }
  .hero-bracket { display: none; }
  .includes-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .includes-grid { grid-template-columns: 1fr; }
}
