
:root {
  --bg: #fffdf8;
  --paper: #ffffff;
  --text: #1f1f1f;
  --muted: #6b6b6b;
  --gold: #aa8f3d;
  --green: #234b3b;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --radius: 14px;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body { margin:0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; color: var(--text); background: var(--bg); }
.container { width: min(1100px, 92%); margin: 0 auto; }
.hidden { display:none; }

/* Header */
.site-header { position: sticky; top: 0; background: var(--bg); border-bottom: 1px solid #eee; z-index: 1000; }
.nav { display:flex; align-items:center; justify-content:space-between; padding: 14px 0; }
.logo { font-family: "Playfair Display", serif; font-weight: 700; font-size: 20px; color: var(--text); text-decoration: none; }
.nav-toggle { display:none; background:none; border:1px solid #ddd; border-radius:8px; padding:8px 12px; }
.nav-links { display:flex; gap: 18px; list-style:none; margin:0; padding:0; }
.nav-links a { text-decoration:none; color: var(--text); padding:8px 10px; border-radius:8px; }
.nav-links .btn-outline { border:1px solid var(--gold); color: var(--gold); }
.nav-links .btn-outline:hover { background: var(--gold); color: white; }

/* Hero */
.hero { display:grid; grid-template-columns: 1.25fr 1fr; align-items:center; gap: 24px; padding: 40px 0; }
.hero-content h1 { font-family: "Playfair Display", serif; font-size: clamp(32px, 6vw, 56px); margin: 0 0 12px; }
.hero-content p { color: var(--muted); max-width: 640px; }
.hero-actions { display:flex; gap:10px; margin-top: 14px; }
.hero-card { background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px; }
.lead-form h2 { margin:0 0 8px; font-size: 22px; }
.lead-form .form-subtitle { color: var(--muted); margin: 0 0 14px; }
.lead-form label { display:block; margin-bottom: 10px; }
.lead-form input { width:100%; padding:12px 14px; border:1px solid #ddd; border-radius:10px; }
.lead-form .btn-block { width:100%; margin-top: 8px; }
.lead-form .form-note { font-size: 13px; color: var(--muted); margin-top: 10px; }

/* Trust badges */
.trust { padding: 14px 0; }
.trust-list { display:grid; grid-template-columns: repeat(4, 1fr); gap:12px; list-style:none; margin:0; padding:0; }
.trust-list li { background: var(--paper); box-shadow: var(--shadow); border-radius: 12px; padding: 14px; text-align:center; }

/* Programs */
.programs { padding: 40px 0; background: linear-gradient(180deg, #fffdf8 0%, #f7f2e5 100%); }
.programs h2 { font-family: "Playfair Display", serif; font-size: 32px; margin:0 0 6px; }
.section-lead { color: var(--muted); margin: 0 0 18px; }
.card-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px; display:flex; flex-direction:column; gap:10px; }
.card h3 { margin:0; font-size: 22px; }
.card p { color: var(--muted); }

/* Benefits */
.benefits { padding: 40px 0; }
.benefits h2 { font-family: "Playfair Display", serif; font-size: 28px; margin:0 0 8px; }
.feature-grid { list-style:none; margin:0; padding:0; display:grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-grid li { background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px; }
.feature-grid h4 { margin:0 0 6px; font-size: 18px; }
.feature-grid p { color: var(--muted); }

/* Testimonials */
.testimonials { padding: 40px 0; background: #fff; }
.testimonial { margin:0; background: var(--paper); border-left: 4px solid var(--gold); padding: 16px; border-radius: var(--radius); box-shadow: var(--shadow); }
.testimonial blockquote { margin:0 0 8px; font-style: italic; }
.testimonial figcaption { color: var(--muted); }

/* FAQ */
.faq { padding: 40px 0; }
.faq h2 { font-family: "Playfair Display", serif; font-size: 28px; margin:0 0 14px; }
.faq details { background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); padding: 12px 16px; margin-bottom: 10px; }
.faq summary { cursor:pointer; font-weight: 600; }
.faq .answer { color: var(--muted); margin-top: 8px; }

/* CTA */
.cta { padding: 40px 0; background: #f7f2e5; text-align:center; }
.cta h2 { font-family: "Playfair Display", serif; margin:0 0 8px; }
.cta p { color: var(--muted); margin: 0 0 14px; }

/* Subscribe bottom */
.subscribe { padding: 40px 0; }
.subscribe-card { background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px; }
.subscribe .form-row { display:grid; grid-template-columns: 1fr 1fr auto; gap: 12px; align-items:end; }
.subscribe label { display:block; }
.subscribe input { width:100%; padding:12px 14px; border:1px solid #ddd; border-radius:10px; }

/* Footer */
.site-footer { background: #111; color: #eee; padding: 28px 0; }
.site-footer .logo { color: #fff; }
.site-footer a { color: #ddd; text-decoration:none; }
.site-footer .footer-grid { display:grid; grid-template-columns: 2fr 1fr 1fr; gap: 14px; }
.site-footer .muted { color: #aaa; }

/* Buttons */
.btn { display:inline-block; padding: 12px 16px; border-radius: 10px; text-decoration:none; font-weight: 600; }
.btn-primary { background: var(--gold); color: white; }
.btn-primary:hover { filter: brightness(0.95); }
.btn-secondary { background: var(--green); color: white; }
.btn-secondary:hover { filter: brightness(1.05); }
.btn-outline { border: 2px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: white; }

/* Instagram feed */
.instagram { padding: 40px 0; }
.instagram h2 { font-family: "Playfair Display", serif; font-size: 28px; margin:0 0 6px; }
.ig-note { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.ig-placeholder-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:10px; }
.ig-placeholder-grid .ph { background: #eee; border-radius: 12px; padding-top: 100%; position: relative; overflow:hidden; }
.ig-placeholder-grid .ph::after { content: ""; position:absolute; inset:0; background: linear-gradient(135deg, rgba(170,143,61,0.15), rgba(35,75,59,0.15)); }

/* Sticky Join button */
.sticky-join { position: fixed; right: 16px; bottom: 16px; background: var(--gold); color: #fff; padding: 12px 16px; border-radius: 999px; box-shadow: var(--shadow); text-decoration:none; font-weight: 700; display:flex; align-items:center; gap:8px; z-index: 1100; }
.sticky-join .phone { font-size: 18px; }
.sticky-join:hover { filter: brightness(0.95); }
@media (prefers-reduced-motion: no-preference) {
  .sticky-join { transition: transform .2s ease; }
  .sticky-join:hover { transform: translateY(-2px); }
}

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .trust-list { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .subscribe .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-toggle { display:block; }
  .nav-links { display:none; position:absolute; right:4%; top:54px; background: var(--paper); box-shadow: var(--shadow); border-radius: 12px; padding: 10px; flex-direction: column; }
}
