:root {
  --bg: #f2efe7;
  --bg-accent: #e7dfd0;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #fffdf7;
  --text: #211c15;
  --muted: #675d52;
  --line: rgba(33, 28, 21, 0.12);
  --brand: #a5461f;
  --brand-dark: #7d2f10;
  --shadow: 0 20px 60px rgba(69, 48, 22, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(165, 70, 31, 0.12), transparent 32%),
    radial-gradient(circle at right center, rgba(126, 141, 85, 0.14), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, #f7f4ec 100%);
  font-family: "Manrope", sans-serif;
}

.site-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 64px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.96), rgba(245, 238, 226, 0.92)),
    var(--surface-strong);
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(165, 70, 31, 0.18), transparent 68%);
  pointer-events: none;
}

.hero__eyebrow,
.card__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__title {
  max-width: 820px;
  margin: 0;
  font-family: "Source Serif 4", serif;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 0.95;
}

.hero__lead {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 140ms ease, background-color 140ms ease, border-color 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: white;
  background: var(--brand);
}

.button--primary:hover {
  background: var(--brand-dark);
}

.button--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.55);
  border-color: var(--line);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.card {
  grid-column: span 6;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.card--wide {
  grid-column: 1 / -1;
}

.card--profile {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(231, 223, 208, 0.78)),
    var(--surface);
}

.card__title {
  margin: 0;
  font-size: 1.85rem;
  line-height: 1.1;
}

.card__text {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.contact-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.contact-list__key {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-list__value {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  word-break: break-word;
}

.contact-list__value:hover {
  color: var(--brand-dark);
}

.contact-list__value--muted {
  color: #8a8276;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
}

.step__number {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(165, 70, 31, 0.1);
  color: var(--brand-dark);
  font-weight: 800;
}

.step__title,
.trust-grid__title {
  margin: 0;
  font-size: 1.05rem;
}

.step__text {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

code {
  padding: 2px 6px;
  border-radius: 8px;
  background: rgba(33, 28, 21, 0.06);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.92em;
}

@media (max-width: 900px) {
  .site-shell {
    width: min(100% - 20px, 1120px);
    padding-top: 20px;
  }

  .hero {
    padding: 28px;
    border-radius: 26px;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .card--wide {
    grid-column: 1 / -1;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero__title {
    font-size: 2.35rem;
  }

  .card {
    padding: 22px;
  }

  .step {
    grid-template-columns: 1fr;
  }
}
