:root {
  --ink: #1f2a2b;
  --deep: #2f4f4f;
  --leaf: #4f7a6d;
  --sand: #f8f1e8;
  --peach: #f4d8c2;
  --mist: #eef3f0;
  --white: #ffffff;
  --accent: #d88352;
  --shadow: rgba(24, 40, 44, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #f6efe5 0%, #f9f5f0 40%, #ffffff 100%);
  line-height: 1.6;
}

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

a:hover {
  color: var(--accent);
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(47, 79, 79, 0.08);
}

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

.logo {
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  font-size: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo small {
  font-size: 0.8rem;
  font-family: "Manrope", sans-serif;
  color: var(--leaf);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.95rem;
}

.hero {
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(216, 131, 82, 0.12);
  filter: blur(0);
  z-index: 0;
}

.hero::before {
  top: -60px;
  right: 10%;
}

.hero::after {
  bottom: 10%;
  left: -80px;
  background: rgba(79, 122, 109, 0.12);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-family: "Source Serif 4", serif;
  font-size: clamp(2.4rem, 3.2vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.eyebrow {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--leaf);
  margin-bottom: 0.5rem;
}

.lead {
  font-size: 1.1rem;
}

.tagline {
  font-weight: 600;
  color: var(--deep);
  margin: 0.6rem 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--deep);
  color: var(--white);
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 20px var(--shadow);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px var(--shadow);
}

.button.small {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

.ghost {
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(47, 79, 79, 0.25);
  font-weight: 600;
}

.trust-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 2rem;
}

.trust-row div {
  padding: 0.8rem 1rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 20px var(--shadow);
}

.hero-card .card {
  background: var(--white);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 18px 40px var(--shadow);
}

.section {
  padding: 4.5rem 0;
}

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

.section-heading h2 {
  font-family: "Source Serif 4", serif;
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  margin-bottom: 0.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

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

.card {
  background: var(--white);
  padding: 1.6rem;
  border-radius: 20px;
  box-shadow: 0 12px 30px var(--shadow);
}

.thank-you-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-card .cta-row {
  justify-content: center;
}

.highlight {
  background: linear-gradient(120deg, #fdf6ee 0%, #f3f7f4 100%);
}

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

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.checklist li {
  margin-bottom: 0.9rem;
  padding-left: 1.8rem;
  position: relative;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.stat-box {
  background: var(--white);
  padding: 2rem;
  border-radius: 22px;
  box-shadow: 0 18px 40px var(--shadow);
}

.stat {
  font-weight: 600;
  margin: 0.6rem 0;
}

.price-card .price {
  font-size: 2rem;
  font-weight: 600;
  color: var(--deep);
}

.price-card span {
  font-size: 1rem;
  color: var(--leaf);
}

.fine {
  font-size: 0.85rem;
  color: #526060;
  margin-top: 1rem;
}

.center {
  text-align: center;
}

.muted {
  background: var(--mist);
}

.steps {
  padding-left: 1.2rem;
}

.area-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  box-shadow: 0 10px 24px var(--shadow);
}

.faq-item[open] {
  border-left: 4px solid var(--accent);
}

summary {
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 0.5rem;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.contact {
  background: linear-gradient(130deg, rgba(79, 122, 109, 0.12), rgba(216, 131, 82, 0.12));
}

.contact-card {
  padding: 1.4rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 24px var(--shadow);
}

.form {
  display: grid;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  border: 1px solid rgba(47, 79, 79, 0.2);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  font-family: "Manrope", sans-serif;
}

textarea {
  resize: vertical;
}

.alert {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.alert.success {
  background: rgba(79, 122, 109, 0.2);
  color: var(--deep);
}

.alert.error {
  background: rgba(216, 131, 82, 0.2);
  color: #5a2a1f;
}

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

.site-footer {
  padding: 3rem 0 2rem;
  background: var(--deep);
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.site-footer a {
  color: var(--white);
  display: block;
  margin-bottom: 0.4rem;
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  font-size: 0.85rem;
}

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

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-card,
  .section {
    animation: fadeInUp 0.8s ease both;
  }

  .section {
    animation-delay: 0.1s;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
