:root {
  --bg: #f7f5f1;
  --text: #1f1f1d;
  --muted: #66645f;
  --line: #ddd8d0;
  --card: #ffffff;
  --dark: #191816;
  --dark-soft: #26231f;
  --accent: #ece7de;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.hero {
  background: linear-gradient(180deg, #efebe5 0%, #fbfaf8 100%);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  padding: 88px 0;
}
.eyebrow, .section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #746f67;
}
.section-label.dark { color: #d8d0c4; }
h1 {
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.02;
  margin: 16px 0 0;
  letter-spacing: -0.04em;
}
.lead, .section-copy { font-size: 18px; color: var(--muted); max-width: 760px; }
.button-row { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 16px;
  font-weight: 700;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark { background: var(--dark); color: white; box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.btn-light { background: white; border: 1px solid var(--line); }
.btn-white { background: white; color: var(--dark); margin-top: 18px; }
.highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.pill {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 14px;
}
.hero-card-wrap { padding-left: 8px; }
.hero-card, .contact-card {
  background: var(--dark);
  color: white;
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 18px 48px rgba(0,0,0,.18);
}
.card-label { text-transform: uppercase; letter-spacing: 0.18em; font-size: 12px; color: #bdb5a8; font-weight: 700; }
.hero-card h2, .contact-card h2, .section-title { font-size: clamp(30px, 4vw, 46px); line-height: 1.08; margin: 12px 0 14px; letter-spacing: -0.03em; }
.hero-card p, .contact-card p { color: #ddd6cc; }
.stack { display: grid; gap: 12px; margin-top: 22px; }
.stack-item {
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
}
.stack.light .stack-item, .stack-item.light {
  background: #f1ede6;
  color: var(--text);
  border: 1px solid var(--line);
}
.section { padding: 88px 0; }
.section-alt { background: white; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 30px;
}
.service-card h3 { font-size: 32px; margin: 0 0 12px; }
.service-card p { color: var(--muted); }
.service-card ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; }
.service-card li { background: #f7f4ef; border-radius: 14px; padding: 12px 14px; }
.split, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.contact-list { display: grid; gap: 10px; margin-top: 20px; }
.contact-list > div { background: rgba(255,255,255,.08); border-radius: 14px; padding: 12px 14px; }
@media (max-width: 900px) {
  .hero-grid, .cards, .split, .contact-grid, .highlights { grid-template-columns: 1fr; }
  .hero { padding-top: 0; }
  .hero-grid, .section { padding: 64px 0; }
  .hero-card-wrap { padding-left: 0; }
}
