:root {
  --bg-main: #f4f1ec;
  --bg-card: #ffffff;
  --text-main: #2f2f2f;
  --text-muted: #6b6b6b;
  --accent: #c2b8a3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
}

.hero {
  position: relative;
  min-height: 60vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(244, 241, 236, 0.65);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 24px;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 24px;
}

.philosophy {
  max-width: 720px;
  margin: 0 auto 80px auto;
  text-align: center;
  font-size: 1.05rem;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.service-card {
  background-color: var(--bg-card);
  padding: 32px 28px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 500;
}

.service-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Service card media (responsive cover images) */
.service-media {
  width: 100%;
  height: 180px;
  margin-bottom: 16px;
  border-radius: 10px;
  overflow: hidden;
  background: #f0efe9;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 700px) {
  .service-media {
    height: 220px;
  }
}

footer {
  margin-top: 96px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

footer span {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
}
