:root {
  --green: #21564a;
  --green-dark: #18443a;
  --gold: #e6a534;
  --cream: #fbf9f4;
  --ink: #1f2421;
  --muted: #5c6660;
  --line: #e7e1d6;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(33, 86, 74, 0.08);
  --max: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: "Fraunces", Georgia, serif; line-height: 1.15; font-weight: 600; }

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 249, 244, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: "Fraunces", serif; font-weight: 600; font-size: 1.25rem; color: var(--green); }
.brand .star { color: var(--gold); }
.nav a { color: var(--ink); font-weight: 500; font-size: .95rem; margin-left: 26px; }
.nav a:hover { color: var(--green); text-decoration: none; }

/* Buttons */
.btn {
  display: inline-block; background: var(--green); color: #fff;
  padding: 14px 28px; border-radius: 999px; font-weight: 600; font-size: 1rem;
  border: 0; cursor: pointer; transition: transform .15s ease, background .15s ease;
}
.btn:hover { background: var(--green-dark); text-decoration: none; transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--green-dark); }
.btn-gold:hover { background: #d6991f; }

/* Hero */
.hero { padding: 90px 0 70px; text-align: center; }
.stars { color: var(--gold); font-size: 1.4rem; letter-spacing: 4px; margin-bottom: 18px; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 14ch; margin: 0 auto 20px; }
.hero p.lead { font-size: 1.25rem; color: var(--muted); max-width: 56ch; margin: 0 auto 34px; }

/* Sections */
section.block { padding: 64px 0; }
.section-title { text-align: center; font-size: clamp(1.7rem, 3.5vw, 2.3rem); margin-bottom: 14px; }
.section-sub { text-align: center; color: var(--muted); max-width: 56ch; margin: 0 auto 44px; font-size: 1.08rem; }

/* Steps / cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow); }
.card .num { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--green); color: #fff; font-family: "Fraunces", serif; font-weight: 600; margin-bottom: 16px; }
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .98rem; }

/* Form */
.form-section { background: var(--green); color: #fff; }
.form-section .section-title, .form-section .section-sub { color: #fff; }
.form-section .section-sub { opacity: .85; }
.form-card { background: #fff; color: var(--ink); max-width: 640px; margin: 0 auto; border-radius: var(--radius); padding: 36px; box-shadow: 0 20px 50px rgba(0,0,0,.18); }
.form-card label { display: block; font-weight: 600; font-size: .9rem; margin: 16px 0 6px; }
.form-card input[type=text], .form-card input[type=email], .form-card input[type=tel], .form-card textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #cbd3cd; border-radius: 10px; font-size: 1rem; font-family: inherit;
}
.form-card input:focus, .form-card textarea:focus { outline: 2px solid var(--green); border-color: var(--green); }
.consent { display: flex; gap: 12px; align-items: flex-start; margin: 22px 0; font-size: .85rem; color: var(--muted); line-height: 1.5; }
.consent input { margin-top: 4px; width: 18px; height: 18px; flex-shrink: 0; }
.form-card button { width: 100%; margin-top: 6px; }
.fineprint { font-size: .8rem; color: var(--muted); text-align: center; margin-top: 14px; }

/* Contact strip */
.contact-strip { text-align: center; padding: 50px 0; }
.contact-strip p { color: var(--muted); margin: 4px 0; }

/* Footer */
.site-footer { background: var(--green-dark); color: #cfe0d9; padding: 40px 0; font-size: .9rem; }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; }
.site-footer a { color: #fff; }
.site-footer .links a { margin-left: 18px; }

/* Legal pages */
.legal { max-width: 760px; padding: 60px 24px 80px; }
.legal h1 { font-size: 2.2rem; margin-bottom: 6px; }
.legal .updated { color: var(--muted); margin-bottom: 30px; }
.legal h2 { font-size: 1.25rem; margin: 30px 0 10px; }
.legal p, .legal li { color: #33403a; margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.legal .highlight { background: #fdf3da; border-left: 4px solid var(--gold); padding: 14px 18px; border-radius: 8px; }

@media (max-width: 760px) {
  .cards { grid-template-columns: 1fr; }
  .nav a:not(.btn) { display: none; }
  .hero { padding: 60px 0 50px; }
}
