:root {
  color-scheme: light only;
  --bg: #FFF8F1;
  --panel: rgba(255, 255, 255, 0.82);
  --ink: #6F4B2E;
  --accent: #A47148;
  --label: #7FB77E;
  --secondary: rgba(164, 113, 72, 0.7);
  --water: #A8DADC;
  --sand: #E2D9C9;
  --btn-primary: #7FB77E;
  --btn-soft-bg: #EDE4D5;
  --btn-soft-ink: #A47148;
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  --shadow-sm: 0 6px 16px rgba(0, 0, 0, 0.1);
  --max: 68ch;
  --pad: 20px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, "SF Pro", "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Hero ---------- */

header.hero {
  position: relative;
  padding: clamp(40px, 9vw, 76px) 0 40px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -140px;
  right: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: var(--water);
  opacity: 0.22;
  filter: blur(70px);
  pointer-events: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  object-fit: cover;
  display: inline-block;
  box-shadow: var(--shadow-sm);
}

.wordmark {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(1.9rem, 6vw, 2.6rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.lede {
  color: var(--ink);
  font-size: 1.05rem;
  max-width: 46ch;
  margin: 0 0 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 16px;
  background: var(--btn-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.btn:hover { filter: brightness(1.04); }

.btn-soft {
  background: var(--btn-soft-bg);
  color: var(--btn-soft-ink);
  box-shadow: none;
}

/* ---------- Eyebrow / section heading ---------- */

.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--label);
  margin-bottom: 8px;
}

.section-heading {
  font-size: clamp(1.3rem, 4vw, 1.6rem);
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 18px;
  letter-spacing: -0.005em;
}

main {
  padding: 10px 0 60px;
}

section {
  padding: 34px 0;
  border-top: 1px solid var(--sand);
  scroll-margin-top: 18px;
}

section:first-child { border-top: none; }

/* ---------- FAQ accordion ---------- */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--panel);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 20px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: translateY(2px) rotate(-135deg);
}

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--ink);
  opacity: 0.9;
}

/* ---------- Contact card ---------- */

.contact-card {
  padding: 28px 26px;
  background: var(--panel);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.contact-card p { margin: 0 0 18px; color: var(--ink); }
.contact-card .eyebrow { text-align: center; }

/* ---------- Footer ---------- */

footer.site-footer {
  padding: 30px var(--pad) 48px;
  border-top: 1px solid var(--sand);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-wordmark { font-size: 0.95rem; }

.footer-note {
  margin: 0;
  color: var(--secondary);
  font-size: 0.88rem;
}

.footer-note a { color: var(--accent); }

/* ---------- Back to top ---------- */

a.backtotop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border-radius: 20px;
  background: var(--btn-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.15rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

a.backtotop.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media print {
  a.backtotop, .hero-glow { display: none !important; }
}
