:root {
  color-scheme: light;
  --coffee: #3b2f2f;
  --espresso: #1f1a19;
  --latte: #f6f1ec;
  --cream: #fdf9f4;
  --accent: #c37b4b;
  --accent-dark: #a26136;
  --text: #2b2422;
  --muted: #615653;
  --card: #ffffff;
  --shadow: 0 20px 45px rgba(26, 18, 16, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

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

img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(253, 249, 244, 0.9);
  backdrop-filter: blur(10px);
  z-index: 10;
  border-bottom: 1px solid rgba(94, 74, 67, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  gap: 16px;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-weight: 500;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.2s ease;
}

.button.primary {
  background: var(--coffee);
  color: white;
  box-shadow: var(--shadow);
}

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

.button.ghost {
  border-color: rgba(59, 47, 47, 0.2);
  color: var(--coffee);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 14px 0 16px;
  color: var(--espresso);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-dark);
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0;
}

.hero-highlights {
  display: grid;
  gap: 16px;
}

.hero-highlights div {
  background: var(--card);
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.hero-highlights strong {
  display: block;
  margin-bottom: 6px;
}

.hero-card {
  background: var(--card);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card-content {
  padding: 24px;
}

.card-title {
  font-weight: 600;
  margin-bottom: 8px;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 24px;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 36px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
  color: var(--espresso);
}

.section-heading p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.services article,
.plans .plan {
  background: var(--card);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.services h3,
.plans h3 {
  margin: 18px 0 10px;
  color: var(--espresso);
}

.how-it-works {
  background: var(--latte);
  border-radius: 30px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  list-style: none;
}

.steps li {
  background: var(--card);
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.steps h3 {
  margin-bottom: 8px;
}

.plans .plan {
  position: relative;
}

.plan-price {
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 14px;
}

.plan ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.plan ul li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--accent-dark);
}

.plan.featured {
  border: 2px solid var(--accent);
  transform: translateY(-6px);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--accent);
  color: white;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.assurance {
  display: grid;
  gap: 32px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.checklist {
  margin-top: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.contact {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.contact-card {
  background: var(--espresso);
  color: white;
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin-bottom: 12px;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-details {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.contact-details span {
  display: block;
  font-size: 0.9rem;
  opacity: 0.7;
}

.contact-details a {
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-image img {
  border-radius: 26px;
}

.footer {
  background: var(--coffee);
  color: white;
  padding: 32px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer p {
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 48px;
  }
}
