:root {
  --ink: #3e3526;
  --ink-2: #6b6151;
  --cream: #faf6ec;
  --cream-2: #f1ead9;
  --gold: #e0c736;
  --gold-dark: #c9ad2e;
  --border: rgba(62, 53, 38, 0.14);
  --border-dark: rgba(250, 246, 236, 0.16);
  color-scheme: light;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Merriweather", Georgia, "Times New Roman", serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand, .btn, nav {
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
}

a { color: var(--ink); }

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

/* Header / nav */
header.site {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(250, 246, 236, 0.94);
  backdrop-filter: blur(8px);
  z-index: 10;
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
}
.brand img { height: 34px; width: 34px; border-radius: 4px; display: block; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.header-actions a { color: var(--ink); text-decoration: none; }
.header-actions a.phone { color: var(--gold-dark); }
.header-actions a:hover { color: var(--gold-dark); }

/* Hero */
.hero {
  position: relative;
  padding: 6rem 0 5rem;
  text-align: center;
  color: var(--cream);
  background: linear-gradient(rgba(45, 38, 26, 0.72), rgba(45, 38, 26, 0.8)), url("img/header.jpg") center / cover no-repeat;
}
.hero .wrap { max-width: 720px; }
.hero-logo { height: 96px; width: 96px; border-radius: 10px; margin-bottom: 1.75rem; box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.eyebrow {
  color: var(--gold);
  font-family: "Open Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}
h1 {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(1.85rem, 4.2vw, 2.6rem);
  line-height: 1.25;
  letter-spacing: -0.005em;
  font-weight: 700;
  margin: 0 0 1.25rem;
  color: var(--cream);
}
.lede {
  font-size: 1.1rem;
  color: rgba(250, 246, 236, 0.82);
  max-width: 58ch;
  margin: 0 auto 2.25rem;
}
.cta-row { display: flex; gap: 0.9rem; flex-wrap: wrap; justify-content: center; }

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 300px;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-dark); }
.btn-secondary { border-color: rgba(250, 246, 236, 0.6); color: var(--cream); background: transparent; }
.btn-secondary:hover { border-color: var(--cream); background: rgba(250, 246, 236, 0.08); }
.dark .btn-secondary, .dark-section .btn-secondary { border-color: rgba(250,246,236,0.6); color: var(--cream); }
section.light .btn-secondary { border-color: var(--ink); color: var(--ink); }
section.light .btn-secondary:hover { background: rgba(62,53,38,0.06); }

/* Sections */
section { padding: 4.5rem 0; }
section.dark {
  background: var(--ink);
  color: rgba(250, 246, 236, 0.88);
}
section.light { background: var(--cream); }
section.light:nth-of-type(odd) { background: var(--cream-2); }

section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin: 0 0 0.5rem;
  text-align: center;
}
section .rule {
  width: 46px;
  height: 3px;
  background: var(--gold);
  border: none;
  margin: 0 auto 2rem;
}
section.dark h2 { color: var(--cream); }
section.dark .rule { background: var(--gold); }

section > .wrap > p.intro {
  color: var(--ink-2);
  max-width: 60ch;
  margin: 0 auto 2rem;
  text-align: center;
}
section.dark > .wrap > p.intro { color: rgba(250, 246, 236, 0.75); }

.pillars {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .pillars { grid-template-columns: 1fr 1fr 1fr; }
}
.pillar {
  background: rgba(250, 246, 236, 0.06);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 1.4rem;
  font-size: 0.95rem;
  text-align: center;
}
section.light .pillar {
  background: #fff;
  border-color: var(--border);
}
.pillar strong {
  display: block;
  font-family: "Open Sans", sans-serif;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
section.light .pillar strong { color: var(--gold-dark); }

ul.check {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  max-width: 60ch;
}
ul.check li {
  padding-left: 1.75rem;
  position: relative;
}
ul.check li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 700;
}
section.dark ul.check li::before { color: var(--gold); }

.case-card {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  max-width: 640px;
  margin: 0 auto;
}
section.dark .case-card { background: rgba(250, 246, 236, 0.97); }
.case-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem 1rem;
  margin: 1.5rem 0;
  text-align: center;
}
.stat .num { font-family: "Open Sans", sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--ink); white-space: nowrap; }
.stat .label { font-size: 0.82rem; color: var(--ink-2); margin-top: 0.25rem; }
.case-note {
  font-size: 0.85rem;
  color: var(--ink-2);
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.prose { max-width: 62ch; margin: 0 auto; text-align: center; }

/* Contact */
#contact .wrap { max-width: 640px; }
#contact form {
  display: grid;
  gap: 1rem;
  max-width: 520px;
  margin: 0 auto;
}
.field { display: grid; gap: 0.4rem; }
.field label { font-family: "Open Sans", sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.02em; }
.field input, .field textarea {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.7rem 0.85rem;
  color: var(--ink);
  font-family: "Merriweather", serif;
  font-size: 0.95rem;
}
.field input:focus, .field textarea:focus {
  outline: 2px solid var(--gold-dark);
  outline-offset: 1px;
}
.field textarea { resize: vertical; min-height: 100px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.submit-row { display: flex; align-items: center; gap: 1rem; justify-content: center; margin-top: 0.5rem; }
#form-status { font-family: "Open Sans", sans-serif; font-size: 0.85rem; }
#form-status[data-state="success"] { color: #3f7a4f; }
#form-status[data-state="error"] { color: #a5423a; }
.contact-phone { margin-top: -1rem; margin-bottom: 2rem; color: var(--ink-2); text-align: center; }
.contact-phone a { color: var(--ink); font-weight: 700; }

footer.site {
  background: var(--ink);
  color: rgba(250, 246, 236, 0.65);
  padding: 2.5rem 0;
  font-size: 0.85rem;
  font-family: "Open Sans", sans-serif;
}
footer.site a { color: rgba(250, 246, 236, 0.85); text-decoration: none; }
footer.site a:hover { color: var(--gold); }
footer.site .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
