:root {
  color-scheme: light;
  --paper: #f8f1e8;
  --card: #fffaf2;
  --ink: #2c2420;
  --muted: #756760;
  --rose: #c9586a;
  --sage: #708b73;
  --amber: #d39a3d;
  --line: rgba(44, 36, 32, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: var(--rose);
  text-decoration: none;
}

.site-header,
.site-footer,
.hero,
.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
  padding: 48px 0 72px;
}

.eyebrow {
  color: var(--rose);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 12px 0 16px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: 20px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  background: var(--rose);
  color: #fff;
  font-weight: 800;
}

.button.secondary {
  background: rgba(201, 88, 106, 0.13);
  color: var(--rose);
}

.phone {
  max-width: 360px;
  justify-self: center;
  padding: 18px;
  border-radius: 36px;
  background: #1f1a17;
  box-shadow: 0 28px 80px rgba(44, 36, 32, 0.22);
}

.screen {
  overflow: hidden;
  border-radius: 28px;
  background: var(--paper);
  padding: 28px 22px;
}

.screen-title {
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.screen-child {
  margin-top: 20px;
  color: var(--muted);
  font-size: 28px;
  font-weight: 800;
}

.screen-card {
  margin-top: 24px;
  padding: 18px;
  border-radius: 8px;
  background: var(--card);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.metric {
  padding: 12px;
  border-radius: 8px;
  background: #fff;
}

.metric strong {
  display: block;
  color: var(--rose);
  font-size: 26px;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.quick {
  padding: 12px;
  border-radius: 999px;
  background: rgba(201, 88, 106, 0.16);
  color: var(--rose);
  text-align: center;
  font-weight: 800;
}

.section {
  padding: 52px 0;
  border-top: 1px solid var(--line);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature {
  padding: 22px;
  border-radius: 8px;
  background: var(--card);
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.feature p,
.section-copy {
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.legal {
  max-width: 760px;
  padding: 52px 0 80px;
}

.legal h1 {
  font-size: 48px;
}

.legal h2 {
  margin-top: 32px;
  font-size: 24px;
}

.legal p {
  color: var(--muted);
  margin: 10px 0 0;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    gap: 14px;
    flex-direction: column;
  }

  .hero,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 24px;
  }

  .phone {
    max-width: 330px;
  }
}
