:root {
  --color-primary: #4a3728;      /* Rich brown from logo text */
  --color-secondary: #d4754e;    /* Terracotta/burnt orange from sun */
  --color-accent: #c9a07a;       /* Sandy tan from mountains */
  --color-sage: #6b7c4c;         /* Cactus green */
  --color-bg: #faf5f0;           /* Warm cream background */
  --color-text: #4a3728;         /* Brown text */
  --color-light: #f5ebe0;        /* Light desert sand */
  --max-width: 1200px;
}

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

body {
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

header {
  background: var(--color-primary);
  padding: 0.75rem 2rem;
}

.logo-img {
  height: 50px;
  width: auto;
}

nav {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

nav .logo {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem;
  min-height: calc(100vh - 200px);
}

footer {
  background: var(--color-secondary);
  color: white;
  text-align: center;
  padding: 1.5rem;
}

footer p {
  margin: 0.25rem 0;
}

h1, h2, h3 {
  margin-bottom: 1rem;
  color: var(--color-primary);
}

h1 {
  font-size: 2.5rem;
}

p {
  margin-bottom: 1rem;
}

ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

a {
  color: var(--color-primary);
}

section {
  margin-bottom: 3rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.9;
}

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

.btn-secondary {
  background: var(--color-secondary);
  color: white;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Hero */
.hero {
  text-align: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--color-light);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero .tagline {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 1rem;
}

/* Offerings */
.offerings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.offering-column h3 {
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

/* Reasons grid */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.reason {
  background: var(--color-light);
  padding: 1rem;
  border-left: 3px solid var(--color-secondary);
}

/* Founders */
.founders {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.founder {
  text-align: center;
  padding: 1.5rem;
  background: var(--color-light);
  border-radius: 8px;
}

.founder h3 {
  margin-bottom: 0.5rem;
}

.founder p {
  margin: 0;
  color: var(--color-secondary);
}

/* Pillars grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.pillar {
  background: var(--color-light);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.pillar h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.pillar p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text);
}

/* Principles */
.principles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.principle {
  background: var(--color-sage);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* Skills grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.skill {
  background: var(--color-light);
  padding: 1rem;
  text-align: center;
  border-radius: 4px;
}

/* Projects grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.project {
  background: var(--color-light);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-accent);
}

.project h3 {
  margin-bottom: 0.5rem;
}

.project p {
  margin: 0;
  font-size: 0.95rem;
}

/* CTA section */
.cta-section {
  text-align: center;
  padding: 2rem;
  background: var(--color-light);
  border-radius: 8px;
}

/* Contact */
.contact-intro {
  max-width: 600px;
}

.location {
  background: var(--color-light);
  padding: 1.5rem;
  border-radius: 8px;
  max-width: 400px;
}

/* Mobile */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero .tagline {
    font-size: 1.2rem;
  }

  nav ul {
    gap: 1rem;
  }

  main {
    padding: 1rem;
  }
}
