/* Luiperdskloof – Unique Bushveld Aesthetic */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #c9a227;
  --gold-light: #e8d48b;
  --deep-green: #0f2a24;
  --forest: #1a3c34;
  --charcoal: #121212;
  --cream: #f7f1e3;
  --sand: #e8dcc8;
  --muted: #a89f8f;
  --white: #ffffff;
  --black: #0a0a0a;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--charcoal);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); }

.lead {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--sand);
  max-width: 640px;
}

/* Layout helpers */
.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

.section {
  padding: 6rem 0;
}

.section-sm {
  padding: 4rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 2px;
}

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

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 162, 39, 0.25);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: var(--charcoal);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--transition), padding var(--transition);
}

.site-header.scrolled {
  background: rgba(15, 42, 36, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.35);
}

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

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

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

.nav a {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav a:hover,
.nav a.active {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.6rem;
  cursor: pointer;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  transform: scale(1.05);
  animation: slowZoom 25s ease-in-out infinite alternate;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15,42,36,0.75) 0%, rgba(10,10,10,0.55) 50%, rgba(15,42,36,0.85) 100%);
}

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

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.hero h1 {
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.hero .lead {
  margin: 0 auto 2.5rem;
  color: var(--sand);
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  animation: bounce 2.2s infinite;
}

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

/* Intro section */
.intro {
  background: var(--deep-green);
  position: relative;
}

.intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-text h2 {
  margin-bottom: 1.5rem;
  color: var(--cream);
}

.intro-text p {
  margin-bottom: 1.25rem;
  color: var(--sand);
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stat {
  text-align: center;
  padding: 1.25rem 0.75rem;
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 4px;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 0.35rem;
}

.intro-image {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.intro-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.intro-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 6px;
  pointer-events: none;
}

/* Cards / Experiences */
.experiences {
  background: var(--charcoal);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-header p {
  color: var(--muted);
  max-width: 560px;
  margin: 1rem auto 0;
}

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

.card {
  background: var(--deep-green);
  border-radius: 6px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(201,162,39,0.12);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.card-img {
  height: 220px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-img img {
  transform: scale(1.08);
}

.card-body {
  padding: 1.75rem;
}

.card-body h3 {
  margin-bottom: 0.75rem;
  color: var(--cream);
}

.card-body p {
  color: var(--sand);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.card-link {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

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

/* Feature strip */
.feature-strip {
  background: linear-gradient(135deg, var(--forest) 0%, var(--deep-green) 100%);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.feature-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,162,39,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.feature-item i,
.feature-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.feature-item h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Testimonials */
.testimonials {
  background: var(--deep-green);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.testimonial {
  background: rgba(0,0,0,0.25);
  padding: 2.25rem;
  border-radius: 6px;
  border-left: 3px solid var(--gold);
}

.testimonial p {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--sand);
  margin-bottom: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.author-info strong {
  display: block;
  font-weight: 500;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* CTA */
.cta {
  background: url('https://images.unsplash.com/photo-1547471080-7cc2caa01a7e?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  position: relative;
  text-align: center;
  padding: 7rem 0;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 42, 36, 0.82);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta h2 {
  margin-bottom: 1.25rem;
}

.cta p {
  color: var(--sand);
  max-width: 520px;
  margin: 0 auto 2rem;
}

/* Footer */
.site-footer {
  background: var(--black);
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(201,162,39,0.15);
}

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

.footer-brand .logo {
  margin-bottom: 1.25rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
}

.footer-col ul li {
  margin-bottom: 0.65rem;
}

.footer-col a {
  color: var(--sand);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.85rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-address {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: 10rem 0 5rem;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,42,36,0.7), rgba(18,18,18,0.9));
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero .lead {
  margin: 0 auto;
}

/* About page */
.about-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}

.about-text p {
  margin-bottom: 1.4rem;
  color: var(--sand);
}

.about-text h3 {
  margin: 2.5rem 0 1rem;
  color: var(--gold);
}

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

.value-card {
  background: var(--deep-green);
  padding: 1.5rem;
  border-radius: 4px;
  border: 1px solid rgba(201,162,39,0.15);
}

.value-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--cream);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.about-side img {
  border-radius: 6px;
  margin-bottom: 1.5rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Experiences page */
.exp-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.exp-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.exp-item:nth-child(even) {
  direction: rtl;
}

.exp-item:nth-child(even) > * {
  direction: ltr;
}

.exp-item img {
  border-radius: 6px;
  height: 360px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.exp-text h3 {
  margin-bottom: 1rem;
  color: var(--cream);
}

.exp-text p {
  color: var(--sand);
  margin-bottom: 1rem;
}

.exp-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.exp-meta span {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* Wildlife page */
.wildlife-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.wildlife-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  height: 320px;
}

.wildlife-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.wildlife-card:hover img {
  transform: scale(1.07);
}

.wildlife-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}

.wildlife-info h3 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.wildlife-info p {
  font-size: 0.9rem;
  color: var(--sand);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.contact-info p {
  color: var(--sand);
  margin-bottom: 1.5rem;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-item strong {
  display: block;
  color: var(--cream);
  margin-bottom: 0.2rem;
  font-weight: 500;
}

.contact-item span,
.contact-item a {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-form {
  background: var(--deep-green);
  padding: 2.5rem;
  border-radius: 6px;
  border: 1px solid rgba(201,162,39,0.15);
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 3px;
  color: var(--cream);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* Responsive */
@media (max-width: 980px) {
  .intro-grid,
  .about-content,
  .exp-item,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .exp-item:nth-child(even) {
    direction: ltr;
  }

  .cards,
  .wildlife-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--deep-green);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .cards,
  .wildlife-grid,
  .feature-grid,
  .intro-stats,
  .footer-grid,
  .form-row,
  .values {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
