:root {
  --bg-main: #f6f4f1;
  --bg-light: #ffffff;
  --text-main: #2f2f2f;
  --text-muted: #6b6b6b;
  --accent: #7a8f86;
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.container.narrow {
  max-width: 720px;
}

.hero {
  background: var(--bg-light);
  text-align: center;
  padding: 5rem 1.5rem;
}

h1, h2 {
  font-weight: 500;
}

.subtitle {
  color: var(--text-muted);
  margin: 1.5rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-photo img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-photo {
    margin-top: 2rem;
  }
}

.btn-primary {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #6a7f76;
}

.about, .process, .booking {
  background: var(--bg-light);
  margin-top: 2rem;
  border-radius: var(--radius);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.step {
  padding: 1.5rem;
  background: var(--bg-main);
  border-radius: var(--radius);
}

.muted {
  color: var(--text-muted);
}

.footer {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
