:root {
  --bg: #f6f1e8;
  --surface: #fffaf4;
  --surface-2: #f2e9dc;
  --text: #201915;
  --muted: #62574f;
  --line: #dccfbe;
  --primary: #a44d2d;
  --primary-dark: #84371d;
  --secondary: #6f7d5c;
  --shadow: 0 10px 30px rgba(32, 25, 21, 0.08);
  --radius: 18px;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

a:hover {
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.narrow {
  width: min(100% - 2rem, 760px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav nav a {
  color: var(--text);
}

.nav-cta {
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.hero {
  padding: 5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.lead {
  font-size: 1.15rem;
  max-width: 58ch;
  color: var(--muted);
}

.microcopy {
  font-size: 0.98rem;
  color: var(--muted);
}

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

.section {
  padding: 4.5rem 0;
}

.section.alt {
  background: rgba(255, 250, 244, 0.6);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.section-head.center {
  text-align: center;
}

.intro-strip {
  padding-top: 0;
}

.intro-strip p {
  margin: 0;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--muted);
  font-size: 1.05rem;
}

.cards {
  display: grid;
  gap: 1.2rem;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.cards.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.price-card {
  position: relative;
}

.price-card h3 {
  font-size: 2rem;
  margin-bottom: 0.2rem;
}

.plan-name {
  margin: 0 0 0.5rem;
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.88rem;
}

.price-note {
  margin-top: 0;
  color: var(--muted);
}

.featured {
  border-color: #c9ab95;
  background: #fff7ef;
}

.section-note {
  margin-top: 1.2rem;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step {
  position: relative;
  padding-top: 3.2rem;
}

.step-number {
  position: absolute;
  top: 1rem;
  left: 1.2rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.check-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.9rem 1rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

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

label {
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #cdbca7;
  border-radius: 12px;
  background: #fffdf9;
  color: var(--text);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(164, 77, 45, 0.18);
  border-color: var(--primary);
}

.button {
  display: inline-block;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}

.button:hover {
  text-decoration: none;
}

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

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

.button.secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .cards.three,
  .cards.two,
  .steps,
  .check-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav {
    padding: 0.8rem 0;
  }

  .nav nav {
    gap: 0.7rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  .hero {
    padding-top: 3.5rem;
  }
}

.hero-small {
  padding-bottom: 2rem;
}

select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #cdbca7;
  border-radius: 12px;
  background: #fffdf9;
  color: var(--text);
  font: inherit;
}

select:focus {
  outline: 2px solid rgba(164, 77, 45, 0.18);
  border-color: var(--primary);
}

.contact-page-section {
  padding-top: 1rem;
}

.contact-side-note {
  margin-top: 1.2rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.thanks-box {
  text-align: center;
  padding: 2rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.final-cta {
  text-align: center;
  border-top: 1px solid #e5e0d8;
}

.final-cta h2 {
  margin-bottom: 0.5rem;
}

.final-cta p {
  margin-bottom: 1.5rem;
  color: #555;
}

