* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #2c3e50;
  background: #fef9f3;
  line-height: 1.6;
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #e8dcc8;
  background: white;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  color: #c85a17;
}

/* Hero Section - Clean, desert theme */
.hero {
  padding: 60px 0;
  background: linear-gradient(135deg, #d4a574 0%, #c9956d 100%);
  color: white;
  text-align: center;
}

.hero-copy {
  max-width: 800px;
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #f5deb3;
  letter-spacing: .12em;
  font-weight: 600;
  margin-bottom: 12px;
}

h1, h2, h3 {
  margin-top: 0;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  line-height: 1.2;
  color: white;
  font-weight: 700;
}

h2 {
  font-size: 1.6rem;
  color: #2c3e50;
}

h3 {
  font-size: 1.1rem;
  color: #c85a17;
}

.subhead {
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 24px;
  color: #faf6f1;
  line-height: 1.6;
}

/* CTA Buttons */
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
  justify-content: center;
}

.cta {
  display: inline-block;
  background: #c85a17;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cta:hover {
  background: #a64310;
  transform: translateY(-2px);
}

.cta.secondary {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
}

.cta.secondary:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Bullets */
.bullets {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0;
  font-size: 0.95rem;
  color: #faf6f1;
}

.bullets li::before {
  content: '✓ ';
  font-weight: bold;
  color: #f5deb3;
  margin-right: 6px;
}

/* Main Content Sections */
section {
  padding: 48px 0;
}

section h2 {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #d4a574;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

/* Cards */
.grid article {
  background: white;
  border-left: 4px solid #c85a17;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(200, 90, 23, 0.08);
  transition: all 0.3s ease;
}

.grid article:hover {
  box-shadow: 0 4px 16px rgba(200, 90, 23, 0.15);
  transform: translateY(-4px);
}

.grid article h3 {
  margin-top: 0;
}

.grid article p {
  color: #555;
  margin: 0;
}

/* Forms */
.lead-form {
  background: white;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(200, 90, 23, 0.1);
  max-width: 600px;
  margin: 32px auto;
  display: grid;
  gap: 16px;
}

.row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: #2c3e50;
}

input, textarea, select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d4a574;
  border-radius: 6px;
  font: inherit;
  color: #2c3e50;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #c85a17;
  box-shadow: 0 0 0 3px rgba(200, 90, 23, 0.1);
}

/* Footer */
.footer {
  padding: 32px 0 48px;
  color: #888;
  text-align: center;
  border-top: 1px solid #e8dcc8;
}

/* Responsive */
@media (max-width: 700px) {
  .row { 
    grid-template-columns: 1fr; 
  }
  
  .bullets {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero {
    padding: 40px 0;
  }
  
  h1 {
    font-size: 1.6rem;
  }
}
