:root {
  --primary: #B85042;
  --primary-dark: #9C4034;
  --secondary: #4F7C73;
  --dark: #2B2420;
  --card-dark: #3A2F27;
  --card-light: #F5EFE8;
  --text-dark: #2B2420;
  --text-muted: #7A6A5D;
  --light-tan: #D9CFC3;
  --white: #FFFFFF;
  --border-light: #E4D9C9;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.1rem; margin-bottom: 0.6rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.4rem; }

.on-dark { color: var(--white); }

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

a { color: inherit; text-decoration: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border-light);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}
.wordmark { display: flex; align-items: center; gap: 0.55rem; font-family: Georgia, serif; font-size: 1.15rem; color: var(--text-dark); }
.wordmark strong { color: var(--primary); }
.wordmark-icon { height: 26px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; font-size: 0.95rem; }
.nav-links a:hover { color: var(--primary); }
.nav-cta-mobile { display: none; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  border: none; background: none; cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text-dark); margin: 0 auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: bold;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(184, 80, 66, 0.35); }
.btn-small { padding: 0.55rem 1.15rem; font-size: 0.9rem; white-space: nowrap; }

/* Hero */
.hero {
  background: var(--dark);
  padding: 5.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -140px; right: -100px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.18;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -160px; left: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: var(--secondary);
  opacity: 0.18;
}
.hero .wrap { position: relative; z-index: 1; }
.kicker {
  font-size: 0.85rem; font-weight: bold; letter-spacing: 2px;
  color: var(--secondary); text-transform: uppercase; margin-bottom: 1rem;
}
.kicker.light { color: var(--light-tan); }
.hero h1 { color: var(--white); margin-bottom: 1.1rem; }
.hero .lead { color: var(--light-tan); font-size: 1.2rem; margin-bottom: 1.8rem; max-width: 32rem; }
.byline { color: var(--light-tan); opacity: 0.8; margin-top: 1.1rem; font-size: 0.95rem; }

/* Sections */
.section { padding: 4.5rem 0; }
.section.alt { background: var(--card-light); }
.section.dark { background: var(--dark); }
.section-lead { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2.2rem; max-width: 40rem; }
.section-lead.on-dark { color: var(--light-tan); }

/* Grid utilities */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }

/* About */
.about-card {
  background: var(--dark); color: var(--white);
  border-radius: 16px; padding: 2rem; text-align: center;
}
.avatar {
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--card-light);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  margin: 0 auto 1rem;
}
.avatar-icon { width: 68%; height: auto; }
.avatar-photo { width: 100%; height: 100%; object-fit: cover; }
.avatar-ring {
  box-shadow: 0 0 0 6px var(--dark), 0 0 0 9px var(--secondary);
}
.about-name { font-family: Georgia, serif; font-weight: bold; font-size: 1.25rem; }
.about-role { color: var(--light-tan); font-size: 0.95rem; margin: 0.2rem 0 0.9rem; }
.about-desc { color: var(--light-tan); font-size: 0.95rem; }

.numbered-list { list-style: none; display: flex; flex-direction: column; gap: 1.4rem; }
.numbered-list li { display: flex; gap: 1rem; align-items: flex-start; }
.numbered-list p { color: var(--text-muted); font-size: 0.95rem; margin-top: 0.2rem; }

.num {
  flex: none;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--card-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: Georgia, serif; font-weight: bold; font-size: 1rem;
}
.num-lg { width: 48px; height: 48px; background: var(--primary); color: var(--white); font-size: 1.2rem; }

/* Problem rows */
.problem-rows { display: flex; flex-direction: column; gap: 1rem; }
.problem-row {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: var(--white); border-radius: 14px; padding: 1.4rem 1.6rem;
}
.problem-row p { color: var(--text-muted); margin-top: 0.3rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; text-align: center; }
.step strong { display: block; font-family: Georgia, serif; font-size: 1.1rem; margin: 0.9rem 0 0.4rem; }
.step p { color: var(--text-muted); font-size: 0.92rem; }
.steps-dark strong { color: var(--white); }
.steps-dark p { color: var(--light-tan); }

/* Case blocks */
.case-block { margin-top: 3rem; }
.case-block h3 { color: var(--white); }
.case-desc { color: var(--light-tan); margin-bottom: 1.4rem; }
.case-shot {
  width: 100%; display: block; border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  margin-bottom: 1.6rem;
}
.case-card { background: var(--card-dark); border-radius: 14px; padding: 1.5rem; }
.case-card p { color: var(--light-tan); margin-top: 0.6rem; font-size: 0.95rem; }
.tag { font-size: 0.8rem; font-weight: bold; letter-spacing: 1px; }
.primary-tag { color: var(--primary); }
.secondary-tag { color: var(--secondary); }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1.6rem; }
.stat { background: var(--card-dark); border-radius: 14px; padding: 1.4rem 1rem; text-align: center; }
.stat-num { display: block; font-family: Georgia, serif; font-weight: bold; font-size: 2.2rem; color: var(--primary); }
.stat-highlight { background: var(--primary); }
.stat-highlight .stat-num { color: var(--white); }
.stat-highlight .stat-label { color: var(--white); }
.stat-label { display: block; color: var(--light-tan); font-size: 0.85rem; margin-top: 0.3rem; }

/* Compare */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1rem; }
.compare-col { background: var(--card-light); border-radius: 16px; padding: 2rem; }
.compare-col p { padding: 0.35rem 0; font-size: 0.97rem; }
.compare-highlight { background: var(--primary); color: var(--white); }
.compare-highlight h4 { color: var(--white); }
.muted-title { color: var(--text-muted); }
.plan-meta-inline { font-style: italic; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.6rem; }
.plan-meta-inline.light { color: #F3E3DC; }

/* Plans */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.plan-card { background: var(--white); border-radius: 16px; padding: 1.8rem; }
.plan-card p { color: var(--text-muted); font-size: 0.93rem; margin: 0.5rem 0; }
.plan-meta { font-weight: bold; color: var(--text-dark) !important; }
.plan-price {
  font-family: Georgia, serif; font-weight: bold; font-size: 1.5rem;
  color: var(--primary) !important; margin-top: 0.8rem !important;
}
.maint-title { margin-top: 1rem; }
.fineprint { color: var(--text-muted); font-size: 0.88rem; font-style: italic; margin-top: 1.2rem; }

/* Capture form */
.capture-form { max-width: 40rem; }
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.2rem; }
.cf-field { margin-bottom: 1.2rem; }
.cf-field label { display: block; font-weight: bold; font-size: 0.9rem; margin-bottom: 0.4rem; color: var(--text-dark); }
.cf-field input, .cf-field textarea {
  width: 100%; padding: 0.75rem 1rem; border-radius: 10px; border: 1px solid var(--border-light);
  background: var(--white); color: var(--text-dark); font-family: inherit; font-size: 0.97rem;
}
.cf-field textarea { min-height: 90px; resize: vertical; }
.cf-field input:focus, .cf-field textarea:focus { outline: 2px solid var(--primary); outline-offset: 1px; border-color: var(--primary); }
.cf-note { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.9rem; font-style: italic; }

/* CTA final */
.cta-final { text-align: center; }
.cta-final h2 { margin-bottom: 2.5rem; }
.cta-final .steps { margin-bottom: 2.8rem; }

/* Footer */
.site-footer {
  background: var(--dark); color: var(--light-tan);
  padding: 1.6rem 0;
}
.site-footer .wrap { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; flex-wrap: wrap; gap: 0.6rem; }
.site-footer a:hover { color: var(--white); }

/* Responsive */
@media (max-width: 860px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }

  .menu-toggle { display: flex; }
  .nav-cta-desktop { display: none; }
  .nav-cta-mobile { display: inline-block; margin-top: 0.5rem; }
  .nav-links {
    position: absolute;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links a, .nav-links .nav-cta-mobile { width: 100%; padding: 0.9rem 1.5rem; }
  .nav-links a { border-top: 1px solid var(--border-light); }

  .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .site-footer .wrap { flex-direction: column; text-align: center; }
  .cf-grid { grid-template-columns: 1fr; }
}
