:root {
  --bg: #fffaf6;
  --surface: #ffffff;
  --ink: #241a16;
  --muted: #6f5c53;
  --brand: #c66e4e;
  --brand-strong: #a75134;
  --accent: #f3d2bb;
  --ok: #1f8f5f;
  --warn: #8a6514;
  --err: #b9382b;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(48, 25, 16, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% -10%, #ffe6d5 0%, transparent 42%),
              radial-gradient(circle at 90% 10%, #fceadf 0%, transparent 40%),
              var(--bg);
  line-height: 1.5;
}

h1,
h2,
h3 {
  font-family: "Prata", serif;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1rem;
}

a {
  color: inherit;
}

.container {
  width: min(1100px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  filter: blur(28px);
  opacity: 0.55;
}

.bg-shape-top {
  width: 360px;
  height: 360px;
  background: #ffd7bf;
  top: -130px;
  left: -90px;
  border-radius: 999px;
}

.bg-shape-bottom {
  width: 300px;
  height: 300px;
  background: #f7c9b0;
  right: -80px;
  bottom: -120px;
  border-radius: 999px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
}

.brand {
  font-family: "Prata", serif;
  font-size: 1.2rem;
  text-decoration: none;
}

.topnav {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.topnav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.hero {
  padding: 2.5rem 0 1.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-strong);
  font-weight: 800;
  font-size: 0.77rem;
  margin-bottom: 0.7rem;
}

.lead {
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  margin: 1.2rem 0 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-strong);
}

.btn-ghost {
  border-color: #d7b7a5;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.75);
}

.hero-points {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
}

.hero-points li::before {
  content: "•";
  color: var(--brand);
  margin-right: 0.45rem;
}

.hero-media {
  min-height: 390px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(201, 123, 88, 0.35), rgba(92, 55, 38, 0.38)),
              url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.offer,
.services,
.reviews,
.runtime,
.lead {
  margin-top: 1.4rem;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

.section-head {
  margin-bottom: 1rem;
}

.service-grid,
.review-grid,
.status-grid {
  display: grid;
  gap: 0.9rem;
}

.service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: #fff8f3;
  border: 1px solid #f0ddd2;
  border-radius: 14px;
  padding: 1rem;
}

.card span {
  display: inline-block;
  margin-top: 0.6rem;
  font-weight: 700;
  color: var(--brand-strong);
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

blockquote {
  margin: 0;
  padding: 1rem;
  border-radius: 14px;
  background: #fff7f2;
  border: 1px solid #f2ddd1;
}

cite {
  display: block;
  margin-top: 0.65rem;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.status-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.status-card {
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid #f0ddd2;
  background: #fff9f5;
}

.status-badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: lowercase;
}

.status-ok {
  color: #fff;
  background: var(--ok);
}

.status-wait {
  color: #fff;
  background: var(--warn);
}

.status-err {
  color: #fff;
  background: var(--err);
}

.lead {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
}

.lead-form {
  display: grid;
  gap: 0.8rem;
}

.field-row {
  display: grid;
  gap: 0.35rem;
}

label {
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.72rem 0.78rem;
  border-radius: 10px;
  border: 1px solid #d9c4b7;
  font: inherit;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #f1c7af;
  border-color: #c88260;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
}

.consent-row input {
  margin-top: 0.2rem;
  width: auto;
}

.form-status {
  min-height: 1.3rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status.is-success {
  color: var(--ok);
}

.form-status.is-error {
  color: var(--err);
}

.footer {
  margin: 1.4rem auto 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  background: #201610;
  color: #f6e8de;
  border-radius: var(--radius);
  padding: 1.2rem;
}

.footer a {
  color: #ffd5be;
}

@media (max-width: 960px) {
  .hero,
  .lead,
  .review-grid,
  .status-grid,
  .footer {
    grid-template-columns: 1fr;
  }

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

  .hero-media {
    min-height: 280px;
  }
}