@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-primary: #f8f7f5;     /* Soft beige/off-white */
  --bg-secondary: #ffffff;   /* Pure white */
  --bg-dark: #1e1e1e;        /* Dark grey/black for contrast sections */
  --bg-darker: #151515;      /* Darker background for footer */
  --text-primary: #2d2d2d;   /* Deep charcoal for text */
  --text-secondary: #6e6e6e; /* Muted grey for subtext */
  --accent-primary: #aea087; /* Sophisticated beige/gold */
  --accent-dark: #8c7e66;    /* Darker beige/gold */
  --border-light: rgba(0, 0, 0, 0.08);
  --border-dark: rgba(255, 255, 255, 0.1);
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.08);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  background: rgba(248, 247, 245, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  background: var(--text-primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 20px; color: var(--bg-primary);
  font-weight: 700;
}
.nav-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 24px; font-weight: 600; letter-spacing: 1px;
  color: var(--text-primary);
}
.nav-logo-text span { color: var(--accent-primary); }

.nav-links { display: flex; gap: 40px; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 500; letter-spacing: 0.5px;
  color: var(--text-secondary); text-decoration: none;
  transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
  background: var(--text-primary);
  color: var(--bg-primary) !important;
  padding: 12px 24px;
  border-radius: 30px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.nav-cta:hover { background: var(--accent-primary); transform: translateY(-2px); }

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--bg-primary);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 140px 60px 60px;
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(174, 160, 135, 0.15);
  border: 1px solid rgba(174, 160, 135, 0.4);
  padding: 8px 16px;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 1px;
  color: var(--accent-dark);
  margin-bottom: 30px;
  align-self: flex-start;
  animation: fadeUp 0.8s ease backwards;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent-primary);
  border-radius: 50%;
}
.hero-title {
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.05;
  color: var(--text-primary);
  letter-spacing: -1px;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease backwards;
}
.hero-title span { color: var(--accent-primary); }
.hero-sub {
  font-size: 18px; line-height: 1.6;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 40px;
  font-weight: 300;
  animation: fadeUp 0.8s 0.2s ease backwards;
}
.hero-actions {
  display: flex; gap: 20px; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease backwards;
}
.btn-primary {
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 16px 32px;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-primary:hover { background: var(--accent-primary); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(174, 160, 135, 0.2); }
.btn-outline {
  border: 1px solid var(--border-light);
  background: var(--bg-secondary);
  color: var(--text-primary);
  padding: 16px 32px;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-outline:hover { border-color: var(--text-primary); transform: translateY(-3px); box-shadow: var(--shadow-soft); }

.hero-stats {
  position: relative; z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  border-top: 1px solid var(--border-light);
  padding-top: 40px;
  margin-top: 50px;
  animation: fadeUp 0.8s 0.4s ease backwards;
}
.hero-stat {
  display: flex; flex-direction: column; gap: 8px;
}
.hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 36px; font-weight: 500; color: var(--text-primary);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-secondary);
}

/* DECORATIVE ELEMENTS */
.blob-1 {
  position: absolute; top: -10%; right: -5%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(174,160,135,0.08) 0%, rgba(248,247,245,0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.blob-2 {
  position: absolute; bottom: -20%; left: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(174,160,135,0.06) 0%, rgba(248,247,245,0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* BBEE STRIP */
.bbee-strip {
  background: var(--bg-dark);
  padding: 20px 60px;
  display: flex; align-items: center; justify-content: center; gap: 60px;
  flex-wrap: wrap;
}
.bbee-item {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  color: var(--bg-primary);
  display: flex; align-items: center; gap: 10px;
}
.bbee-item svg {
  width: 18px; height: 18px;
  fill: var(--accent-primary);
}

/* SECTIONS */
section { padding: 120px 60px; }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--accent-primary);
  flex-shrink: 0;
}
.section-title {
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 24px;
}

/* ABOUT */
.about { background: var(--bg-secondary); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.about-text p {
  font-size: 17px; line-height: 1.7; color: var(--text-secondary);
  margin-bottom: 24px; font-weight: 300;
}
.about-image-block {
  position: relative;
}
.about-image-frame {
  background: var(--bg-primary);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.about-image-frame img {
  border-radius: var(--border-radius-md);
  margin-bottom: 24px;
}
.founder-name {
  font-family: 'Outfit', sans-serif;
  font-size: 28px; font-weight: 500; color: var(--text-primary);
  margin-bottom: 6px;
}
.founder-title {
  font-size: 13px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent-primary); margin-bottom: 20px;
}
.founder-bio {
  font-size: 15px; line-height: 1.7; color: var(--text-secondary);
}
.founder-credential {
  margin-top: 24px;
  padding: 16px;
  background: rgba(174, 160, 135, 0.1);
  border-radius: var(--border-radius-sm);
  border-left: 3px solid var(--accent-primary);
  font-size: 14px; font-weight: 500; color: var(--text-primary);
}
.about-pillars {
  margin-top: 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.pillar {
  padding: 24px;
  background: var(--bg-primary);
  border-radius: var(--border-radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pillar:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.pillar-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px; font-weight: 600; color: var(--text-primary);
  margin-bottom: 10px;
}
.pillar-text { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* SERVICES */
.services { background: var(--bg-primary); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.service-card {
  background: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
}
.service-card:hover { 
  transform: translateY(-8px); 
  box-shadow: var(--shadow-hover);
}
.service-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(174, 160, 135, 0.1);
  border-radius: var(--border-radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-primary);
}
.service-icon-wrap svg {
  width: 28px; height: 28px;
}
.service-num {
  position: absolute; top: 32px; right: 32px;
  font-family: 'Outfit', sans-serif; font-weight: 300;
  font-size: 48px; color: rgba(0,0,0,0.03);
  line-height: 1;
}
.service-name {
  font-family: 'Outfit', sans-serif;
  font-size: 22px; font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.service-desc {
  font-size: 15px; line-height: 1.6;
  color: var(--text-secondary);
  flex-grow: 1;
}
.service-tags {
  margin-top: 24px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--accent-dark); background: rgba(174, 160, 135, 0.08);
  padding: 6px 12px; border-radius: 20px;
}

/* PAST PROJECTS */
.projects { background: var(--bg-dark); color: var(--bg-primary); }
.projects .section-title { color: var(--bg-primary); }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 50px;
}
.project-card {
  background: var(--bg-darker);
  border: 1px solid var(--border-dark);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  transition: all 0.3s ease;
}
.project-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-5px);
}
.project-year {
  display: inline-block;
  font-size: 13px; font-weight: 600; letter-spacing: 1px;
  color: var(--accent-primary);
  margin-bottom: 16px;
}
.project-client {
  font-family: 'Outfit', sans-serif;
  font-size: 24px; font-weight: 500; color: var(--bg-primary);
  margin-bottom: 12px;
}
.project-desc {
  font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.7);
}

/* WHY US */
.why { background: var(--bg-secondary); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
  align-items: start;
  max-width: 1200px; margin: 0 auto;
}
.why-sticky { position: sticky; top: 120px; }
.why-lead {
  font-size: 18px; line-height: 1.6; color: var(--text-secondary); font-weight: 300;
  margin-top: 24px;
}
.why-list { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.why-item {
  padding: 32px;
  background: var(--bg-primary);
  border-radius: var(--border-radius-lg);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-item:hover { transform: translateX(10px); box-shadow: var(--shadow-soft); }
.why-icon {
  width: 48px; height: 48px;
  background: var(--text-primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--bg-primary);
}
.why-icon svg { width: 24px; height: 24px; }
.why-item-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 500; color: var(--text-primary);
  margin-bottom: 8px;
}
.why-item-text { font-size: 15px; line-height: 1.6; color: var(--text-secondary); }

/* CLIENTS */
.clients { background: var(--bg-primary); padding: 80px 60px; text-align: center; }
.clients .section-label { justify-content: center; margin-bottom: 30px; }
.clients .section-label::before { display: none; }
.clients-grid {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 60px;
  max-width: 1000px; margin: 0 auto;
}
.client-logo {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
  display: flex; align-items: center; justify-content: center;
}
.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.client-logo img {
  max-width: 180px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}

/* CONTACT */
.contact { background: var(--bg-dark); }
.contact .section-title { color: var(--bg-primary); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 50px;
  max-width: 1200px; margin: 0 auto;
}
.contact-info-block {
  display: flex; flex-direction: column; gap: 32px;
}
.contact-row {
  display: flex; gap: 20px; align-items: flex-start;
}
.contact-ico {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-primary);
}
.contact-ico svg { width: 20px; height: 20px; }
.contact-row-label {
  font-size: 12px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 6px;
}
.contact-row-val {
  font-size: 16px; color: var(--bg-primary); line-height: 1.5;
}
.contact-row-val a { color: var(--bg-primary); text-decoration: none; transition: color 0.2s; }
.contact-row-val a:hover { color: var(--accent-primary); }
.contact-form {
  background: var(--bg-darker);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  display: flex; flex-direction: column; gap: 20px;
  border: 1px solid var(--border-dark);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--border-radius-sm);
  padding: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px; color: var(--bg-primary);
  outline: none;
  transition: all 0.3s ease;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { 
  border-color: var(--accent-primary); 
  background: rgba(255,255,255,0.05);
}
.form-group select option { background: var(--bg-dark); }
.form-group textarea { height: 140px; }
.btn-submit {
  background: var(--accent-primary);
  color: var(--bg-primary);
  padding: 16px 32px;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 600; border: none; cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 10px;
}
.btn-submit:hover { background: var(--accent-dark); transform: translateY(-2px); }

/* FOOTER */
footer {
  background: #111111;
  padding: 60px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 24px; font-weight: 600; color: var(--bg-primary); letter-spacing: 1px;
}
.footer-brand span { color: var(--accent-primary); }
.footer-reg {
  font-size: 13px; color: rgba(255,255,255,0.4);
  margin-top: 8px; line-height: 1.6;
}
.footer-mid {
  text-align: center;
  font-size: 13px; color: rgba(255,255,255,0.4);
  line-height: 1.6;
}
.footer-right {
  text-align: right;
  font-size: 13px; color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* MOBILE */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  section { padding: 80px 24px; }
  .hero { padding: 120px 24px 60px; min-height: auto; }
  .hero-title { font-size: 40px; }
  .hero-stats { gap: 24px; }
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .why-sticky { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .bbee-strip { padding: 20px 24px; gap: 20px; justify-content: flex-start; }
  footer { flex-direction: column; text-align: left; padding: 40px 24px; align-items: flex-start; }
  .footer-mid { text-align: left; }
  .footer-right { text-align: left; }
}