:root {
  --bg: #f4f1eb;
  --ink: #1a1916;
  --muted: #6b6560;
  --line: #ddd6cc;
  --card: #fffcf7;
  --accent: #1c4d3a;
  --accent-hover: #163d2e;
  --error: #8c2f2f;
  --ok: #1c4d3a;
  --radius: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Outfit, system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

.top,
main,
footer {
  width: min(920px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.5rem 0 0;
}

.brand {
  font-weight: 500;
  letter-spacing: 0.01em;
}

.badge {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  color: var(--muted);
}

.hero {
  padding: 4.5rem 0 3.5rem;
  text-align: center;
}

.kicker {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2rem, 7vw, 4.4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.lead {
  max-width: 34rem;
  margin: 1.25rem auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
}

.price {
  margin: 2rem 0 1.5rem;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 400;
}

.cta,
button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.7rem 1.4rem;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #f4f1eb;
  font: inherit;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.cta:hover,
button[type="submit"]:hover {
  background: var(--accent-hover);
}

.points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-bottom: 3.5rem;
}

.points article {
  padding: 1.25rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

.points h2 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 600;
}

.points p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  padding: 2.5rem 0 4rem;
  border-top: 1px solid var(--line);
}

.contact-copy h2 {
  margin: 0 0 0.6rem;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 400;
}

.contact-copy > p {
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-weight: 300;
}

.direct {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.direct span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.direct a {
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.direct a:hover {
  border-bottom-color: var(--ink);
}

form {
  display: grid;
  gap: 0.9rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

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

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

label em {
  font-style: normal;
  font-weight: 400;
  color: var(--muted);
}

input,
textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

input.invalid,
textarea.invalid {
  border-color: var(--error);
}

.honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-status {
  margin: 0;
  font-size: 0.95rem;
}

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

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

button[type="submit"] {
  width: 100%;
  margin-top: 0.2rem;
}

button[type="submit"]:disabled {
  opacity: 0.65;
  cursor: wait;
}

footer {
  padding: 0 0 2rem;
  color: var(--muted);
  font-size: 0.85rem;
}

footer p {
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 760px) {
  .top {
    flex-wrap: wrap;
  }

  .badge {
    flex-shrink: 0;
  }

  .points,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3rem 0 2.5rem;
  }

  .contact {
    gap: 1.75rem;
    padding-bottom: 3rem;
  }
}
