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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #3d2b1f;
  background: #faf6ee;
  line-height: 1.7;
  font-size: 17px;
}

/* Header */
header {
  background: #8B3A3A;
  padding: 1.25rem 2rem;
}

.header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem;
}

header h1 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #F5E6A0;
  margin: 0;
  line-height: 1.2;
}

.tagline {
  font-size: 0.9rem;
  color: #d4c08a;
  font-weight: 400;
}

/* Main content */
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* Hero — two columns */
.hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.hero-text h2 {
  font-size: 1.75rem;
  color: #8B3A3A;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.hero-text p {
  margin-bottom: 1rem;
  color: #5a4a3a;
}

.cta {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.65rem 1.5rem;
  background: #8B3A3A;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.2s;
}

.cta:hover {
  background: #6e2d2d;
}

.avatar {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #E8D080;
}

/* Services grid — 2 columns */
.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e8dcc8;
}

.service-card h3 {
  font-size: 1.1rem;
  color: #8B3A3A;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.service-card p {
  color: #5a4a3a;
  margin: 0;
  font-size: 0.95rem;
}

/* Links */
a {
  color: #8B3A3A;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #8B3A3A;
}

/* Footer */
footer {
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid #e0d5c0;
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #8a7a68;
}

footer p {
  margin-bottom: 0.5rem;
}

.copyright {
  font-size: 0.85rem;
}

/* Privacy page */
.privacy {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.privacy .updated {
  font-size: 0.9rem;
  color: #8a7a68;
  margin-bottom: 2rem;
}

.privacy section {
  margin-bottom: 2rem;
}

.privacy h2 {
  font-size: 1.3rem;
  color: #8B3A3A;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 700px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-avatar {
    order: -1;
  }

  .avatar {
    width: 160px;
    height: 160px;
  }

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

  .header-inner {
    justify-content: center;
  }

  main {
    padding: 2rem 1.25rem;
  }
}
