/* Hero Section */
.hero {
  padding: 8rem 5% 6rem;
  max-width: 1000px;
  margin: 0 auto;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.15;
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: -1px;
  color: #000;
  font-family: "Georgia", serif;
}

.highlight {
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #000;
  max-width: 800px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.cta-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  border: 2px solid #000;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 2rem;
}

/* About Section */
.about {
  padding: 6rem 5%;
  max-width: 100%;
  margin: 0 auto;
}

.about-image {
  width: 100%;
  margin-bottom: 40px;
  display: block;
}

.about-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 5%;
}

.about-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 1.5rem;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
  color: #000;
  font-family: "Georgia", serif;
  line-height: 1.4;
}

.about p {
  font-size: 1rem;
  color: #000;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

/* Values */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem 0;
}

.value {
  border-left: 2px solid #000;
  padding-left: 1.5rem;
}

.value-title {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.value-desc {
  font-size: 0.95rem;
  color: #000;
  line-height: 1.6;
}

/* Focus Section */
.focus-section {
  padding: 6rem 5%;
  max-width: 900px;
  margin: 0 auto;
}

.focus-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 1.5rem;
}

.focus-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
  font-family: "Georgia", serif;
  line-height: 1.4;
}

.focus-text p {
  font-size: 1rem;
  color: #000;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
  padding: 6rem 5%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 400;
  color: #000;
  font-family: "Georgia", serif;
}

.cta-section p {
  font-size: 1rem;
  color: #000;
  margin-bottom: 2.5rem;
}

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

  .about h2 {
    font-size: 1.8rem;
  }

  .cta-section h2 {
    font-size: 1.6rem;
  }

  .values {
    grid-template-columns: 1fr;
  }

  .focus-title {
    font-size: 1.8rem;
  }
}
