:root {
  --bg: #F0EAE0;
  --bg-cream: #EDE7D9;
  --bg-dark: #1A1714;
  --text: #2C2420;
  --text-light: #FAF6F0;
  --muted: #7A6E62;
  --accent: #B8705A;
  --accent-blue: #6B8FA8;
  --highlight: #E8DABC;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Lora', Georgia, serif;
  font-size: 18px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 600ms ease;
}
a:hover { border-bottom-color: var(--accent); }
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 {
  font-size: clamp(40px, 7vw, 64px);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.1;
}
h2 {
  font-size: clamp(28px, 4vw, 38px);
  margin-top: 64px;
  margin-bottom: 20px;
}
h3 {
  font-size: 22px;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--accent);
  font-style: italic;
}
p { margin-bottom: 20px; max-width: 720px; }
ul, ol { margin-bottom: 20px; padding-left: 24px; max-width: 720px; }
li { margin-bottom: 8px; }
strong { font-weight: 500; color: var(--text); }
.site-header {
  position: sticky; top: 0;
  background: var(--bg);
  border-bottom: 1px solid rgba(122, 110, 98, 0.15);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}
.site-header .brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 28px;
  border-bottom: none;
}
.site-header nav { display: flex; gap: 24px; flex-wrap: wrap; }
.site-header nav a { font-size: 13px; color: var(--muted); border-bottom: none; }
.site-header nav a:hover { color: var(--text); border-bottom: 1px solid var(--accent); }
.hero { max-width: 920px; margin: 0 auto; padding: 80px 40px 40px; }
.hero .badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero .lede { font-size: 22px; color: var(--muted); max-width: 720px; margin-top: 24px; font-style: italic; }
main { max-width: 920px; margin: 0 auto; padding: 0 40px 80px; }
.callout {
  background: var(--bg-cream);
  padding: 32px 40px;
  margin: 40px 0;
  border-left: 3px solid var(--accent);
}
.callout h3 { margin-top: 0; color: var(--text); font-style: normal; }
table { width: 100%; border-collapse: collapse; margin: 32px 0; font-size: 15px; }
th {
  text-align: left;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 16px;
  border-bottom: 2px solid var(--text);
}
td { padding: 12px 16px; border-bottom: 1px solid rgba(122, 110, 98, 0.15); vertical-align: top; }
.cta {
  display: inline-block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  margin: 24px 16px 24px 0;
}
.cta:hover { border-bottom-color: var(--text); color: var(--text); }
.disclaimer {
  background: var(--bg-cream);
  padding: 20px 28px;
  margin-top: 40px;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.6;
  border-left: 2px solid var(--muted);
}
.disclaimer strong { color: var(--text); font-style: normal; }
.faq-item { border-bottom: 1px solid rgba(122, 110, 98, 0.15); padding: 28px 0; }
.faq-item h3 { font-style: normal; color: var(--text); font-size: 22px; margin-top: 0; margin-bottom: 12px; }
.faq-item p { margin-bottom: 0; color: var(--text); }
footer.site-footer { background: var(--bg-dark); color: var(--text-light); padding: 60px 40px 40px; margin-top: 80px; }
footer.site-footer .footer-inner { max-width: 920px; margin: 0 auto; }
footer.site-footer .footer-brand { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 32px; margin-bottom: 16px; color: var(--text-light); }
footer.site-footer p, footer.site-footer a { color: var(--text-light); font-size: 14px; }
footer.site-footer a { border-bottom: 1px solid rgba(250, 246, 240, 0.3); margin-right: 20px; display: inline-block; margin-bottom: 8px; }
footer.site-footer a:hover { border-bottom-color: var(--accent); }
footer.site-footer .small { margin-top: 32px; color: var(--muted); font-size: 12px; max-width: 720px; }
.source { font-size: 13px; color: var(--muted); font-style: italic; }

/* Lead form */
.lead-form-wrap {
  background: var(--bg-cream);
  padding: 48px 40px;
  margin: 60px 0 40px;
  border-left: 3px solid var(--accent);
}
.lead-form-wrap h2 {
  margin-top: 0;
  margin-bottom: 12px;
}
.lead-form-wrap .form-intro {
  color: var(--muted);
  font-style: italic;
  margin-bottom: 32px;
  max-width: 600px;
}
.lead-form { max-width: 600px; }
.lead-form .field { margin-bottom: 24px; }
.lead-form label {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.lead-form label .optional {
  color: var(--muted);
  font-style: italic;
  font-size: 14px;
  margin-left: 6px;
}
.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"],
.lead-form textarea {
  width: 100%;
  padding: 12px 0;
  font-family: 'Lora', Georgia, serif;
  font-size: 17px;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(122, 110, 98, 0.4);
  outline: none;
  transition: border-color 400ms ease;
}
.lead-form input:focus,
.lead-form textarea:focus {
  border-bottom-color: var(--accent);
}
.lead-form textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.6;
}
.lead-form .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}
.lead-form .checkbox-group label {
  font-family: 'Lora', Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 0;
}
.lead-form input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.lead-form button {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--accent);
  padding: 4px 0;
  margin-top: 12px;
  cursor: pointer;
  transition: color 400ms ease, border-color 400ms ease;
}
.lead-form button:hover {
  color: var(--text);
  border-bottom-color: var(--text);
}
.form-fallback {
  margin-top: 28px;
  font-size: 14px;
  color: var(--muted);
}
.form-fallback a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}
.form-privacy {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.6;
  max-width: 600px;
}
@media (max-width: 768px) {
  .lead-form-wrap { padding: 32px 24px; }
}
@media (max-width: 768px) {
  .site-header { padding: 16px 24px; flex-direction: column; gap: 12px; }
  .site-header nav { gap: 16px; justify-content: center; font-size: 12px; }
  .hero { padding: 50px 24px 30px; }
  main { padding: 0 24px 60px; }
  .callout { padding: 24px 24px; }
  footer.site-footer { padding: 40px 24px 30px; }
}
