/* ── TOKENS ── */
:root {
  --green-deep:   #1a5c2a;
  --green-mid:    #2d7a3a;
  --green-light:  #4a9e5c;
  --green-pale:   #e8f5eb;
  --gold:         #f0c419;
  --gold-deep:    #c99a00;
  --gold-pale:    #fdf6d8;
  --cream:        #faf8f3;
  --earth:        #5c4a2a;
  --earth-light:  #8a7055;
  --white:        #ffffff;
  --text-dark:    #0f2d16;
  --text-body:    #2c3e2e;
  --text-muted:   #5a7060;
  --border:       rgba(26,92,42,0.15);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;

  --shadow-card:  0 2px 24px rgba(26,92,42,0.10);
  --shadow-hover: 0 8px 40px rgba(26,92,42,0.18);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--cream);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.1;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-deep);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green-deep);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 100px;
  border: 1.5px solid var(--green-deep);
  cursor: pointer;
  transition: all 0.25s;
}
.btn-outline:hover { background: var(--green-pale); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 100px;
  border: 1.5px solid rgba(240,196,25,0.5);
  cursor: pointer;
  transition: all 0.25s;
}
.btn-ghost:hover { background: rgba(240,196,25,0.12); border-color: var(--gold); }
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text-dark);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.btn-dark:hover { background: var(--green-deep); transform: translateY(-2px); }
.gold-bar {
  display: inline-block;
  width: 48px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,248,243,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(26,92,42,0.12); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .top {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.2;
}
.nav-logo-text .sub {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-body);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--green-deep); }
/* Active nav state */
.nav-links a.active {
  color: var(--green-deep);
  font-weight: 500;
}
.nav-links a.active:not(.btn-primary)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-links a.btn-primary.active {
  box-shadow: 0 0 0 2px rgba(240,196,25,0.6);
}
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── INNER PAGE BANNER ── */
.page-banner {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 140px 0 72px;
  position: relative;
}
.page-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.08;
  margin-bottom: 16px;
}
.page-banner-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--text-dark);
  padding-top: 80px;
}
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroSlide 25s infinite;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 5s; }
.hero-slide:nth-child(3) { animation-delay: 10s; }
.hero-slide:nth-child(4) { animation-delay: 15s; }
.hero-slide:nth-child(5) { animation-delay: 20s; }
@keyframes heroSlide {
  0%      { opacity: 0; }
  4%      { opacity: 1; }
  20%     { opacity: 1; }
  24%     { opacity: 0; }
  100%    { opacity: 0; }
}
.hero-panel {
  position: absolute;
  inset: 0;
  width: 60%;
  min-width: 620px;
  background: var(--green-deep);
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
  z-index: 1;
}
@media (max-width: 900px) {
  .hero-panel { width: 100%; min-width: 0; clip-path: none; background: rgba(15,45,22,0.86); }
}
#hero > .container {
  width: 100%;
  min-width: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 460px;
  color: #fff;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-meta .rule { width: 30px; height: 1.5px; background: var(--gold); display: block; }
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  font-weight: 900;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 24px;
}
.hero-heading em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 15.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-actions .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.hero-actions .btn-outline:hover { background: rgba(255,255,255,0.1); }
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 28px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}
.hero-dots {
  position: absolute;
  left: 24px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  gap: 8px;
}
.hero-dots span {
  width: 22px;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
}
.hero-dots span:nth-child(1) { background: var(--gold); }
@media (max-width: 640px) {
  .hero-dots { display: none; }
}

/* ── MARQUEE BAND ── */
.marquee-band {
  background: var(--green-deep);
  color: #fff;
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 0 32px;
  text-transform: uppercase;
}
.marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); display: inline-block; flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── ABOUT PREVIEW STRIP ── */
.about-preview {
  padding: 80px 0;
  background: var(--green-deep);
  color: #fff;
  border-top: 3px solid var(--gold);
}
.about-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-preview-blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.45;
  color: #fff;
  margin-bottom: 16px;
}
.about-preview-source {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.about-preview-body {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
}

/* ── CLIENT STRIP (home) ── */
.client-strip {
  padding: 40px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.client-strip-label {
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.client-strip-overflow { overflow: hidden; }
.client-strip-track {
  display: flex;
  width: max-content;
  animation: clientScroll 34s linear infinite;
}
.client-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
  border-right: 1px solid var(--border);
}
.client-strip-item:last-child { border-right: none; }
.cdot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
@keyframes clientScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SERVICES (shared) ── */
.services-section {
  padding: 100px 0;
  background: var(--white);
}
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 24px;
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--cream);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.service-card.featured {
  background: var(--green-deep);
  border-color: transparent;
  color: #fff;
}
/* Service cover: real image or brand card */
.svc-cover {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.svc-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.service-card:hover .svc-cover img { transform: scale(1.05); }
.service-body { padding: 28px; }
.service-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--green-pale);
  color: var(--green-deep);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.service-card.featured .service-tag {
  background: rgba(240,196,25,0.2);
  color: var(--gold);
}
.service-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.2;
}
.service-card.featured .service-name { color: #fff; }
.service-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-muted);
}
.service-card.featured .service-desc { color: rgba(255,255,255,0.7); }
.service-items {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.service-item-chip {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: var(--white);
}
.service-card.featured .service-item-chip {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
}

/* ── ABOUT (index) ── */
#about { padding: 100px 0; position: relative; }
.value-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--green-deep); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── ABOUT PHOTO STRIP ── */
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── GALLERY MASONRY ── */
#gallery { padding: 100px 0; background: var(--cream); }
.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}
.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.gallery-masonry-item img {
  width: 100%;
  display: block;
}
@media (max-width: 900px) { .gallery-masonry { columns: 2; } }
@media (max-width: 560px) { .gallery-masonry { columns: 1; } }

/* ── MARULA OIL SPOTLIGHT ── */
#marula {
  padding: 100px 0;
  background: var(--green-deep);
  color: #fff;
  border-top: 3px solid var(--gold);
}
.marula-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.marula-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.marula-heading em { font-style: italic; color: var(--gold); }
.marula-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
}
.marula-uses { display: flex; flex-direction: column; gap: 16px; }
.marula-use {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.marula-use-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(240,196,25,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.marula-use-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--gold); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.marula-use strong { display: block; font-size: 14px; font-weight: 500; color: #fff; margin-bottom: 2px; }
.marula-use span { font-size: 13px; color: rgba(255,255,255,0.6); }
.marula-visual { display: flex; align-items: center; justify-content: center; }
.marula-visual-panel {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.15);
  overflow: hidden;
  position: relative;
}
.marula-visual-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.marula-panel-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 24px;
  background: rgba(15,45,22,0.72);
}
.marula-panel-caption .name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1.2;
}
.marula-panel-caption .sub {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  display: block;
}

/* Marula process */
.marula-process { padding: 100px 0; background: var(--cream); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
  counter-reset: step-counter;
}
.process-step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1px solid var(--border);
  position: relative;
  counter-increment: step-counter;
  transition: box-shadow 0.25s;
}
.process-step:hover { box-shadow: var(--shadow-card); }
.process-step::after {
  content: counter(step-counter, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(26,92,42,0.06);
  position: absolute;
  top: 12px; right: 18px;
  line-height: 1;
}
.process-icon {
  width: 44px; height: 44px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.process-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--green-mid); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.process-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.process-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* Marula CTA strip */
.marula-cta-strip {
  background: var(--gold);
  padding: 64px 0;
  text-align: center;
}
.marula-cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.marula-cta-strip p { font-size: 15px; color: var(--earth); margin-bottom: 28px; }

/* ── REFERENCES / CLIENTS ── */
#references { padding: 100px 0; background: var(--white); }
.stats-band {
  background: var(--green-deep);
  padding: 64px 0;
  border-top: 3px solid var(--gold);
}
.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.sband-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.sband-label { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.4; }
@media (max-width: 700px) { .stats-band-grid { grid-template-columns: repeat(2, 1fr); } }

.clients-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.client-card-pro {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 28px 28px 36px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.client-card-pro::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--green-deep);
}
.client-card-pro:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: var(--green-light);
}
.client-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}
.client-type { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 14px; }
.client-service-badge {
  display: inline-block;
  font-size: 11px;
  padding: 4px 12px;
  background: var(--green-pale);
  color: var(--green-deep);
  border-radius: 100px;
  font-weight: 500;
  margin-bottom: 10px;
}
.client-detail { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── CONTACT ── */
#contact { padding: 100px 0; background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--green-mid); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-item-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 4px; }
.contact-item-value { font-size: 15px; font-weight: 400; color: var(--text-dark); }
.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green-mid); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.map-section { padding: 48px 0 0; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); margin-top: 24px; }
.map-wrap iframe { width: 100%; height: 380px; display: block; border: none; }

/* ── FOOTER ── */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
}
.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 280px; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
.reg-info { font-size: 11px; color: rgba(255,255,255,0.25); text-align: right; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .marula-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-preview-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-heading { font-size: 2.4rem; }
  .hero-stats { gap: 24px; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .contact-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.25s; }
.fade-up-3 { animation-delay: 0.4s; }
.fade-up-4 { animation-delay: 0.55s; }
