:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #161b22;
  background: #faf9f6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.nav,
.nav-actions,
.actions,
.service-top,
.steps,
.form-actions {
  display: flex;
  align-items: center;
}

.nav {
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
}

.nav-actions,
.actions,
.form-actions {
  flex-wrap: wrap;
  gap: 10px;
}

a {
  color: inherit;
  text-decoration: none;
}

.brand {
  font-weight: 900;
  font-size: 19px;
}

.ghost,
.button {
  border-radius: 8px;
  font-weight: 850;
}

.ghost {
  border: 1px solid #d8d4cb;
  background: #ffffff;
  padding: 10px 14px;
}

.hero {
  max-width: 940px;
  padding: 72px 0 34px;
}

.eyebrow,
.tag {
  color: #7a5a3d;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 16px;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 820px;
  margin: 24px 0 0;
  color: #555b62;
  font-size: 20px;
  line-height: 1.68;
}

.actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  justify-content: center;
  min-height: 46px;
  border: 0;
  padding: 0 18px;
  cursor: pointer;
  color: #ffffff;
  background: #242831;
}

.button.line {
  background: #06c755;
  color: #071c10;
}

.button.secondary {
  border: 1px solid #d8d4cb;
  color: #161b22;
  background: #ffffff;
}

.notice,
.booking,
.value,
.compare {
  border-block: 1px solid #ddd8cf;
  padding: 24px 0;
  margin-bottom: 28px;
}

.notice strong {
  display: block;
  color: #7a5a3d;
  margin-bottom: 8px;
}

.notice p,
.section-head p,
.service p,
.value p,
.compare p,
.steps p {
  margin: 0;
  color: #555b62;
  line-height: 1.65;
}

.section-head {
  max-width: 860px;
  margin-bottom: 18px;
}

.section-head h2,
.steps h2 {
  margin: 8px 0 10px;
  font-size: 26px;
}

.form {
  display: grid;
  gap: 14px;
}

fieldset {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  border: 1px solid #ddd8cf;
  border-radius: 8px;
  background: #ffffff;
  margin: 0;
  padding: 18px;
}

legend {
  padding: 0 6px;
  color: #7a5a3d;
  font-weight: 900;
}

label,
.check-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-weight: 780;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d8d4cb;
  border-radius: 8px;
  background: #fbfaf7;
  color: #161b22;
  font: inherit;
  padding: 12px;
}

textarea {
  resize: vertical;
}

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

.check-group {
  gap: 10px;
}

.check-group span {
  color: #7a5a3d;
  font-weight: 900;
}

.check-group label {
  flex-direction: row;
  align-items: center;
  font-weight: 700;
}

.check-group input {
  width: auto;
}

.form-status {
  margin: 0;
  color: #555b62;
  font-weight: 750;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.service {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 420px;
  border: 1px solid #ddd8cf;
  border-radius: 8px;
  background: #ffffff;
  padding: 22px;
}

.service.featured {
  border-color: #bfa98b;
  background: #fffdf8;
}

.service.premium {
  grid-column: span 2;
  border-color: #1d9a6c;
  box-shadow: 0 12px 32px rgba(29, 154, 108, 0.12);
}

.service-top {
  justify-content: space-between;
  gap: 12px;
}

.price {
  font-size: 17px;
  font-weight: 900;
}

.service h2,
.value h3,
.compare h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.25;
}

.service ul,
.compare ul {
  margin: 0;
  padding-left: 20px;
  line-height: 1.65;
}

.service .button {
  width: fit-content;
  margin-top: auto;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.value-grid article {
  min-height: 170px;
  border-radius: 8px;
  background: #f1efe9;
  padding: 22px;
}

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

.compare-card {
  border: 1px solid #ddd8cf;
  border-radius: 8px;
  background: #ffffff;
  padding: 28px;
}

.compare-card.positive {
  border-color: #1d9a6c;
}

.compare-card.muted {
  background: #f1efe9;
}

.compare-card li {
  margin-bottom: 12px;
}

.compare-card.positive li::marker {
  color: #1d9a6c;
}

.compare-card.muted li::marker {
  color: #d95d36;
}

.callout {
  border-left: 4px solid #1d9a6c;
  border-radius: 8px;
  background: #f1efe9;
  margin-top: 18px !important;
  padding: 20px 24px;
  font-weight: 850;
}

.steps {
  align-items: stretch;
  gap: 16px;
  margin-top: 28px;
}

.steps div {
  flex: 1;
  border-top: 1px solid #ddd8cf;
  padding-top: 18px;
}

.steps span {
  color: #7a5a3d;
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 960px) {
  .services,
  .value-grid,
  fieldset {
    grid-template-columns: 1fr;
  }

  .service.premium {
    grid-column: auto;
  }
}

@media (max-width: 820px) {
  .hero {
    padding-top: 52px;
  }

  .compare-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
  }

  .service {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .ghost,
  .button {
    min-height: 44px;
  }
}
