/* ─── COLOUR PALETTE (MATCHING YOUR INDEX.HTML) ─────────── */
:root {
  --cream:        #F7F0E6;   /* page background */
  --warm-white:   #FDFAF5;   /* card backgrounds */
  --olive:        #5C6B3A;   /* primary green */
  --olive-light:  #7A8C52;
  --terra:        #C4633A;   /* accent orange-red */
  --terra-light:  #E07B52;
  --brown:        #3D2B1F;   /* dark text / nav */
  --brown-light:  #6B4C3B;
  --sage:         #A8B89A;   /* muted green */
  --gold:         #D4A847;   /* highlight gold */
  --text:         #2C1F14;   /* body text */
}

/* ─── RESET & BASE ───────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

/* ─── NAVIGATION (DARK THEME) ────────────────────────────── */
nav {
  background: var(--brown);
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.5rem; 
  color: var(--gold); 
  text-decoration: none; 
}
.logo span { color: var(--cream); font-style: italic; }

.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { 
  color: var(--sage); 
  text-decoration: none; 
  font-size: 0.875rem; 
  font-weight: 500;
  letter-spacing: 0.5px; 
  text-transform: uppercase; 
  transition: color 0.2s; 
}
.nav-links a:hover { color: var(--cream); }

/* ─── SECTION LAYOUT ──────────────────────────────────────── */
.section { padding: 80px 40px; max-width: 1100px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { 
  font-family: 'Playfair Display', serif; 
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: var(--brown); 
  margin-bottom: 12px; 
}
.section-header p { 
  color: var(--brown-light); 
  font-size: 1.1rem; 
  max-width: 600px;
  margin: 0 auto;
}
.divider { 
  width: 60px; 
  height: 3px; 
  background: var(--terra); 
  margin: 20px auto; 
  border-radius: 2px; 
}

/* ─── HOW IT WORKS STEPS ─────────────────────────────────── */
.steps-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 40px; 
  margin-top: 40px; 
}

.step { 
  text-align: center; 
  padding: 50px 35px; 
  background: var(--warm-white);
  border-radius: 16px;
  border: 1px solid rgba(92,107,58,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(61,43,31,0.1);
}

.step-icon { 
  width: 72px; 
  height: 72px; 
  background: linear-gradient(135deg, var(--olive), var(--olive-light));
  border-radius: 20px; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 1.8rem; 
  margin: 0 auto 24px; 
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.step h3 { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.6rem; 
  color: var(--brown); 
  margin-bottom: 15px; 
}

.step p { 
  font-size: 0.95rem; 
  color: var(--brown-light); 
  line-height: 1.7; 
}

/* ─── CALL TO ACTION ─────────────────────────────────────── */
.cta-section {
  background: var(--olive);
  color: var(--cream);
  padding: 80px 40px;
  text-align: center;
  border-radius: 20px;
  margin-top: 60px;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.btn-primary { 
  background: var(--terra); 
  color: var(--cream); 
  padding: 16px 40px;
  border: none; 
  border-radius: 8px; 
  font-family: 'DM Sans', sans-serif; 
  font-size: 1rem;
  font-weight: 500; 
  cursor: pointer; 
  transition: background 0.2s, transform 0.15s;
  text-decoration: none; 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-primary:hover { background: var(--terra-light); transform: translateY(-1px); }

footer { 
  background: var(--brown); 
  color: var(--sage); 
  text-align: center; 
  padding: 40px; 
  font-size: 0.85rem; 
  margin-top: 80px;
}
footer strong { color: var(--gold); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media(max-width: 600px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .section { padding: 60px 20px; }
  .section-header h2 { font-size: 2.2rem; }
}