:root {
  --white: #FFFFFF;
  --chocolate-cosmos: #530C0C;
  --orange-wheel: #FA7E0B;
  --pale-dogwood: #D6BBBB;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--white);
  color: var(--chocolate-cosmos);
  min-height: 100vh;
}

.hero {
  background: linear-gradient(135deg, var(--white) 60%, var(--pale-dogwood) 100%);
  padding: 3.5rem 1rem 2.5rem 1rem;
  text-align: center;
  box-shadow: 0 2px 16px rgba(83,12,12,0.04);
  position: relative;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(83, 12, 12, 0.45);
  z-index: 1;
}
.hero-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.logo {
  width: 80px;
  height: auto;
  margin-bottom: 1.2rem;
}
h1 {
  font-size: 2.8rem;
  margin: 0.2rem 0 0.5rem 0;
  color: var(--chocolate-cosmos);
  font-weight: 700;
  letter-spacing: 1px;
}
.tagline {
  color: #6d3b3b;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.cta-btn {
  display: inline-block;
  background: var(--orange-wheel);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.85rem 2.2rem;
  border: none;
  border-radius: 2rem;
  box-shadow: 0 2px 8px rgba(250,126,11,0.10);
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  margin-top: 1.2rem;
}
.cta-btn:hover {
  background: #d96c09;
  box-shadow: 0 4px 16px rgba(250,126,11,0.18);
}
main {
  max-width: 900px;
  margin: 2.5rem auto;
  padding: 0 1.5rem;
}
section {
  margin-bottom: 2.5rem;
}
h2 {
  color: var(--chocolate-cosmos);
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.about p {
  color: #3d2323;
  font-size: 1.15rem;
  margin: 0 0 1.5rem 0;
}
.services {
  text-align: center;
}
.service-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}
.service-card {
  background: var(--pale-dogwood);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(83,12,12,0.07);
  padding: 2rem 1.5rem;
  max-width: 340px;
  min-width: 220px;
  flex: 1 1 220px;
  text-align: left;
  margin-bottom: 1rem;
}
.service-card h3 {
  color: var(--chocolate-cosmos);
  margin-top: 0;
  font-size: 1.3rem;
  font-weight: 700;
}
.service-card p {
  color: #4d2a2a;
  font-size: 1.05rem;
}
.service-img {
  width: 100%;
  max-width: 340px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(83,12,12,0.08);
}
.contact ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}
.contact li {
  margin-bottom: 0.5rem;
  color: #3d2323;
  font-size: 1.08rem;
}
.social-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0.5rem;
}
.icon {
  width: 32px;
  height: 32px;
  filter: grayscale(1) brightness(0.7);
  transition: filter 0.2s;
}
.icon:hover {
  filter: none;
}
footer {
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  color: #a88b8b;
  font-size: 1rem;
  background: var(--pale-dogwood);
  border-top: 1px solid #e5d3d3;
  margin-top: 2rem;
}
@media (max-width: 900px) {
  .service-cards {
    flex-direction: column;
    gap: 1.2rem;
  }
  main {
    padding: 0 0.5rem;
  }
}
@media (max-width: 600px) {
  .logo {
    width: 54px;
  }
  h1 {
    font-size: 2rem;
  }
  .hero {
    padding: 2rem 0.5rem 1.5rem 0.5rem;
  }
  .service-card {
    padding: 1.2rem 1rem;
  }
} 