:root {
  --cream: #f8f3ee;
  --rose: #efe1dc;
  --text: #1f1a17;
  --muted: #6a5f59;
  --accent: #b88974;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 0;
  background: linear-gradient(180deg, #faf6f2 0%, #f3e6df 100%);
}

.hero-content {
  max-width: 760px;
}

.logo {
  width: min(360px, 80vw);
  margin: 0 auto 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.subtitle,
.info-block p,
.card p,
.steps p,
.two-columns p {
  font-size: 1.05rem;
  color: var(--muted);
}

.subtitle {
  margin: 0 auto;
  max-width: 680px;
}

.section {
  padding: 4rem 0;
}

.alt {
  background: var(--rose);
}

.two-columns,
.grid {
  display: grid;
  gap: 1.5rem;
}

.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.services,
.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.steps article,
.info-block {
  background: rgba(255, 255, 255, 0.82);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(184, 137, 116, 0.2);
}

.highlight {
  text-align: center;
  font-weight: bold;
  color: var(--accent);
}

.steps span {
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.info-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 768px) {
  .two-columns,
  .services,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 5rem 0;
  }
}