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

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2937;
  background: #ffffff;
  line-height: 1.7;
}

.container {
  width: 90%;
  max-width: 1150px;
  margin: auto;
}

.narrow {
  max-width: 850px;
}

.hero {
  position: relative;
  height: 90vh;
  background:
    linear-gradient(rgba(10,20,35,0.72), rgba(10,20,35,0.72)),
    url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=1800&auto=format&fit=crop')
    center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.hero h1 {
  color: white;
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 25px;
  font-weight: 700;
}

.hero-text {
  color: rgba(255,255,255,0.92);
  font-size: 1.25rem;
  margin-bottom: 35px;
}

.btn {
  display: inline-block;
  background: #c6a15b;
  color: white;
  padding: 16px 34px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #b08e4e;
}

.section {
  padding: 90px 0;
}

.light {
  background: #ffffff;
}

.dark {
  background: #f5f7fa;
}

h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 55px;
  color: #0f172a;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-bottom: 50px;
}

.card {
  background: white;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.card h3 {
  margin-bottom: 16px;
  color: #0f172a;
}

.section-text {
  text-align: center;
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 24px;
}

.services {
  display: grid;
  gap: 25px;
}

.service-item {
  background: white;
  padding: 32px;
  border-left: 5px solid #c6a15b;
  border-radius: 8px;
}

.service-item h3 {
  margin-bottom: 12px;
  color: #0f172a;
}

.contact-section {
  background: #0f172a;
  color: white;
}

.contact-section h2,
.contact-section .section-text {
  color: white;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.contact-form input,
.contact-form textarea {
  padding: 16px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
}

.footer {
  background: #020617;
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 28px;
  font-size: 0.95rem;
}
.headshot {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 40px auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  border: 5px solid white;
}

@media (max-width: 768px) {

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-text {
    font-size: 1.05rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section {
    padding: 70px 0;
  }

}
