:root {
  --dark: #14251F;
  --dark2: #1C3229;
  --green: #1F6F54;
  --gold: #C9A227;
  --cream: #F4F1EA;
  --white: #FFFFFF;
  --red: #B3441E;
  --text: #20241F;
  --muted: #5B6B63;
  --border: #E4DDC9;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, 'Calibri', 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
}

h1, h2, h3 {
  font-family: 'Cambria', Georgia, 'Times New Roman', serif;
  margin: 0 0 0.4em 0;
  color: var(--text);
}

a { color: inherit; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- NAV ---------- */
nav.site-nav {
  background: var(--dark);
  padding: 18px 0;
}
nav.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Cambria', serif; font-weight: bold; font-size: 20px; color: var(--white); letter-spacing: 0.5px; }
.brand img { width: 28px; height: 28px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: #CBD3CC; text-decoration: none; font-size: 14px; font-weight: 600; }
.nav-links a:hover { color: var(--gold); }

/* ---------- HERO ---------- */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 64px 0 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}
.hero h1 { color: var(--white); font-size: 42px; margin-bottom: 10px; }
.hero p.sub { font-size: 18px; font-style: italic; color: #D9CBA0; max-width: 640px; margin: 0 auto 30px auto; }
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: #DBB330; }
.btn-outline { background: transparent; color: var(--white); border-color: #4A5C53; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: #24805F; }

/* ---------- SECTIONS ---------- */
section { padding: 56px 0; }
section.alt { background: var(--white); }
.section-kicker { text-transform: uppercase; letter-spacing: 2px; font-size: 12px; font-weight: 700; color: var(--green); margin-bottom: 10px; }
.section-lead { font-size: 16px; color: var(--muted); max-width: 700px; margin-bottom: 32px; }

/* ---------- CARDS / GRID ---------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}
.card img.icon { width: 40px; height: 40px; margin-bottom: 14px; }
.card h3 { font-size: 17px; margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--muted); margin: 0; }

.dark-card { background: var(--dark); color: var(--white); }
.dark-card h3 { color: var(--white); }
.dark-card p { color: #CBD3CC; }

/* ---------- STEPS ---------- */
.steps { counter-reset: step; margin: 0; padding: 0; list-style: none; }
.steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.steps li:last-child { border-bottom: none; }
.step-num {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: 'Cambria', serif;
}
.steps.gold .step-num { background: var(--gold); color: var(--dark); }
.step-text { font-size: 15px; padding-top: 5px; }
.step-text strong { display: block; font-size: 15.5px; margin-bottom: 2px; }

/* ---------- CALLOUT ---------- */
.callout {
  background: var(--dark);
  color: #F4E9C9;
  border-radius: 8px;
  padding: 20px 26px;
  font-style: italic;
  font-family: 'Cambria', serif;
  font-size: 16px;
  margin: 30px 0;
}

/* ---------- DECK PREVIEW ---------- */
.deck-strip { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 10px; }
.deck-strip img { height: 200px; border-radius: 6px; border: 1px solid var(--border); box-shadow: 0 4px 14px rgba(0,0,0,0.12); }

/* ---------- FORM ---------- */
.form-card {
  background: var(--dark);
  color: var(--white);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}
.form-card h2 { color: var(--white); }
.form-card p { color: #CBD3CC; max-width: 520px; margin: 0 auto 24px auto; }
form.lead-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
form.lead-form input {
  flex: 1 1 200px;
  padding: 13px 16px;
  border-radius: 6px;
  border: none;
  font-size: 15px;
  font-family: inherit;
}
form.lead-form button {
  flex: none;
}
.form-note { font-size: 12px; color: #8FA097; margin-top: 14px; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--dark);
  color: #8FA097;
  padding: 28px 0;
  text-align: center;
  font-size: 13px;
}
footer a { color: #CBD3CC; text-decoration: none; }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 4px 22px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 0;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 22px;
  color: var(--gold);
  font-weight: 700;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p {
  padding-bottom: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}
.faq-group-title {
  font-family: 'Cambria', serif;
  font-size: 20px;
  margin: 34px 0 14px 0;
}
.faq-group-title:first-child { margin-top: 0; }

/* ---------- MISC ---------- */

.center { text-align: center; }
.mt { margin-top: 30px; }
.two-col-audience { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.audience-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.audience-head img { width: 34px; height: 34px; }
.audience-head h2 { margin: 0; font-size: 22px; }

@media (max-width: 760px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .two-col-audience { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  form.lead-form { flex-direction: column; }
  form.lead-form button { width: 100%; }
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: max(20px, env(safe-area-inset-bottom));
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 40;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--green); border-color: var(--green); color: var(--white); }
.back-to-top:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
@media (max-width: 760px) {
  .back-to-top { right: 14px; bottom: max(14px, env(safe-area-inset-bottom)); width: 40px; height: 40px; }
}
