:root {
  --bg: #FCFCFC;
  --headline: #142C44;
  --accent: #985414;
  --highlight: #FCA04C;
  --soft: #FCD0A4;
  --line: #D8D4D4;
  --text: #4C4C4C;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(20, 44, 68, 0.06);
  --shadow-soft: 0 10px 28px rgba(20, 44, 68, 0.05);
  --radius: 18px;
  --container: 1180px;
  --narrow: 860px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, Helvetica, Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}
.narrow { width: min(var(--narrow), calc(100% - 40px)); margin: 0 auto; }
.narrow-left { width: min(920px, calc(100% - 40px)); margin: 0 auto; }
.text-center { text-align: center; }

.section {
  padding: 88px 0;
}
.section-tight {
  padding-top: 40px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 16px;
  color: var(--headline);
  font-weight: 700;
  line-height: 1.16;
}
h1 { font-size: clamp(2.6rem, 5vw, 4.25rem); max-width: 13ch; }
h2 { font-size: clamp(2rem, 4vw, 3rem); max-width: 18ch; }
h3 { font-size: 1.4rem; }
.lead {
  font-size: clamp(1.075rem, 2vw, 1.25rem);
  color: var(--headline);
  max-width: 48ch;
}
.section-head { margin-bottom: 28px; }
.section-head-narrow { max-width: 780px; }
.section-head .lead { color: var(--text); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 252, 252, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--highlight));
  box-shadow: 0 0 0 6px rgba(252, 208, 164, 0.35);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-text strong {
  color: var(--headline);
  font-size: 1rem;
}
.brand-text small {
  margin-top: 4px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--headline);
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 600;
}

.primary-nav {
  margin-left: auto;
}
.primary-nav .menu,
.footer-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.primary-nav a {
  color: var(--headline);
  font-size: 0.95rem;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  color: var(--accent);
}
.header-cta { margin-left: 8px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 650;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: #7f4510; }
.btn-secondary {
  background: transparent;
  color: var(--headline);
  border-color: var(--line);
}
.btn-secondary:hover {
  background: rgba(252, 208, 164, 0.2);
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.text-link {
  color: var(--accent);
  font-weight: 650;
}
.text-link:hover { text-decoration: underline; }

.hero {
  padding-top: 72px;
}
.hero-home {
  border-bottom: 1px solid rgba(216, 212, 212, 0.75);
}
.hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}
.hero-grid-single {
  grid-template-columns: minmax(0, 860px);
}
.hero-copy .lead {
  margin-top: 12px;
}

.grid {
  display: grid;
  gap: 20px;
}
.grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.compact-grid { margin-top: 20px; }

.card,
.panel,
.stat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.card,
.panel { padding: 26px; }
.card h3,
.panel h2,
.panel h3 { max-width: 18ch; }
.card p:last-child,
.panel p:last-child { margin-bottom: 0; }
.card-link-wrap { margin-top: 14px; }
.soft-panel,
.band-note {
  background: linear-gradient(180deg, rgba(252, 208, 164, 0.22), rgba(252, 252, 252, 0.92));
}
.highlight-panel {
  background: linear-gradient(180deg, rgba(252, 208, 164, 0.35), rgba(252, 252, 252, 0.96));
  border-color: rgba(152, 84, 20, 0.22);
}
.band-note {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.band-note p { margin: 0; }

.split-proof,
.split-2-1,
.process-layout {
  display: grid;
  gap: 28px;
  align-items: start;
}
.split-proof { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); }
.split-2-1 { grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr); }
.process-layout { grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr); }

.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.check-list li {
  position: relative;
  padding-left: 18px;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}
.two-column-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
}

.stat-card {
  padding: 24px;
}
.stat-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  color: var(--headline);
  font-weight: 800;
  margin-bottom: 12px;
}
.stat-card p,
.compact-card p { margin-bottom: 0; }
.compact-card h3 { margin-bottom: 10px; font-size: 1.125rem; }

.process-copy h2 { max-width: 13ch; }
.process-copy .lead { color: var(--text); max-width: 34ch; }
.process-grid .process-card {
  min-height: 220px;
}
.process-card h3 {
  margin-top: 6px;
  max-width: 13ch;
}

.faq-wrap { max-width: 920px; }
.faq-list {
  max-width: 820px;
  margin: 32px auto 0;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.faq-item.is-open {
  border-color: rgba(152, 84, 20, 0.36);
  box-shadow: var(--shadow);
}
.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--headline);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  text-align: left;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.faq-toggle {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.faq-a {
  padding: 0 20px 18px;
  border-top: 1px solid rgba(216, 212, 212, 0.6);
}
.faq-a p:last-child { margin-bottom: 0; }

.faq-section .section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-section .section-head .eyebrow {
  display: block;
  width: fit-content;
  margin: 0 auto 16px;
  text-align: center;
}

.faq-section .section-head h2 {
  max-width: none;
  margin: 0 auto;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 860px) {
  .faq-section .section-head h2 {
    white-space: normal;
  }
}

.page-hero { padding-top: 72px; }
.page-shell { padding-top: 72px; }
.page-content h2, .page-content h3 { max-width: none; }
.legal-panel p + p { margin-top: 0; }
.legal-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(216, 212, 212, 0.9);
}
.compact-note {
  margin-top: 26px;
}

.post-grid { margin-top: 26px; }

.site-footer {
  margin-top: 40px;
  padding: 48px 0 26px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, 0.7fr));
  gap: 28px;
  align-items: start;
}
.footer-brand-line {
  color: var(--headline);
  font-weight: 700;
  margin-bottom: 10px;
}
.footer-brand p { max-width: 32ch; }
.footer-contact-list,
.footer-links,
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-menu { list-style: none; margin: 0; padding: 0; }
.site-footer h6 {
  margin: 0 0 12px;
  color: var(--headline);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}
.footer-bottom {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(216, 212, 212, 0.7);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  font-size: 0.88rem;
}
.footer-bottom p { margin: 0; }

@media (max-width: 1024px) {
  .grid.cols-3,
  .grid.cols-4,
  .split-proof,
  .split-2-1,
  .process-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid.cols-2 { grid-template-columns: 1fr 1fr; }
  .process-copy h2, h1, h2 { max-width: none; }
}

@media (max-width: 860px) {
  .section { padding: 72px 0; }
  .section-tight { padding-top: 28px; }
  .header-row {
    min-height: 72px;
    flex-wrap: wrap;
    padding: 12px 0;
  }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .primary-nav {
    width: 100%;
    order: 4;
    display: none;
    margin: 8px 0 0;
    border-top: 1px solid var(--line);
    padding-top: 14px;
  }
  .primary-nav.is-open { display: block; }
  .primary-nav .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .header-cta {
    display: none;
  }
  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .two-column-list {
    grid-template-columns: 1fr;
  }
  .button-row { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .faq-q { padding: 16px; }
  .faq-a { padding: 0 16px 16px; }
  .brand-text small { display: none; }
}

@media (max-width: 640px) {
  .container,
  .narrow,
  .narrow-left {
    width: min(100% - 28px, var(--container));
  }
  h1 { font-size: 2.35rem; }
  h2 { font-size: 1.82rem; }
  .card,
  .panel,
  .stat-card { padding: 20px; }
  .hero { padding-top: 56px; }
  .page-hero,
  .page-shell { padding-top: 56px; }
  .footer-bottom { font-size: 0.82rem; }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  min-width: 0;
  padding: 1.5rem;
  border: 1px solid #D8D4D4;
  border-radius: 20px;
  background: #FCFCFC;
  overflow: hidden;
}

.stat-number {
  display: block;
  font-size: clamp(2rem, 2.4vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
  margin-bottom: 0.9rem;
}

.stat-copy {
  margin: 0;
  line-height: 1.7;
  color: #4C4C4C;
}

@media (max-width: 1100px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }
}

.cta-section .panel.text-center .eyebrow {
  display: block;
  width: fit-content;
  margin: 0 auto 16px;
  text-align: center;
}

.cta-section .panel.text-center h2 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cta-section .panel.text-center .lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
