*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: #171310;
  color: #CFC5B4;
  font-family: "Trebuchet MS", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, p, ul, ol {
  margin: 0;
}

a {
  color: inherit;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

img {
  max-width: 100%;
}

/* ============ LEFT SIDEBAR NAV ============ */

.side-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  width: 240px;
  height: 100vh;
  padding: 30px 22px 26px;
  background-color: #211B14;
  color: #F4EFE6;
  border-right: 1px solid #33291D;
  transition: box-shadow 0.3s ease;
}

.side-nav.scrolled {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  margin-bottom: 38px;
}

.brand-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 46px;
  height: 46px;
  background-color: #C07A3E;
  border-radius: 7px;
}

.brand-chip .stag-glyph {
  color: #F4EFE6;
  font-size: 8px;
}

.nav-wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  color: #F4EFE6;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.nav-wordmark::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  background-color: #C07A3E;
  margin-top: 7px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 12px;
  color: #F4EFE6;
  text-decoration: none;
  font-size: 15px;
  border-radius: 4px;
}

.nav-links a::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  background-color: #C07A3E;
}

.nav-links a:hover {
  background-color: #2A2219;
  color: #D08B4A;
}

.nav-links a.active {
  background-color: #C07A3E;
  color: #171310;
  font-weight: 700;
}

.nav-links a.active::before {
  background-color: #171310;
}

.nav-spacer {
  flex: 1;
  min-height: 24px;
}

.nav-contact {
  padding-top: 18px;
  border-top: 1px solid #33291D;
  font-size: 13px;
  color: #A89880;
}

.nav-contact .nc-label {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8F7E64;
}

.nav-contact a {
  display: block;
  margin-top: 7px;
  color: #CFC5B4;
  text-decoration: none;
  word-break: break-all;
}

.nav-contact a:hover {
  color: #D08B4A;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  background: none;
  border: 1px solid #33291D;
  border-radius: 6px;
  color: #F4EFE6;
  cursor: pointer;
}

.nav-toggle .burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle .burger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #C07A3E;
}

/* ============ MAIN SHELL ============ */

.main-shell {
  margin-left: 240px;
}

/* ============ STAG GLYPH (CSS silhouette) ============ */

.stag-glyph {
  position: relative;
  display: inline-block;
  flex: none;
  width: 5em;
  height: 4.6em;
  color: #C07A3E;
  font-size: 15px;
}

.stag-glyph i {
  position: absolute;
  display: block;
  background: currentColor;
  border-radius: 2px;
}

.stag-glyph .sg-head {
  left: 1.2em;
  top: 2.05em;
  width: 2.5em;
  height: 2.1em;
  border-radius: 50% 52% 46% 42%;
}

.stag-glyph .sg-snout {
  left: 2.9em;
  top: 3.05em;
  width: 1.55em;
  height: 1.1em;
  border-radius: 0 38% 46% 38%;
}

.stag-glyph .sg-ear {
  width: 0.75em;
  height: 0.68em;
  top: 2.05em;
  border-radius: 40% 60% 50% 50%;
}

.stag-glyph .sg-ear.l {
  left: 0.9em;
  transform: rotate(-38deg);
}

.stag-glyph .sg-ear.r {
  left: 3.35em;
  transform: rotate(38deg);
  border-radius: 60% 40% 50% 50%;
}

.stag-glyph .sg-antler {
  width: 0.38em;
  height: 1.95em;
  top: 0.5em;
  transform-origin: bottom center;
}

.stag-glyph .sg-antler.l {
  left: 1.6em;
  transform: rotate(-22deg);
}

.stag-glyph .sg-antler.r {
  left: 3.15em;
  transform: rotate(22deg);
}

.stag-glyph .sg-tine {
  width: 0.38em;
  height: 0.8em;
  left: -0.05em;
  transform-origin: bottom center;
}

.stag-glyph .sg-antler.l .sg-tine.one {
  top: -0.32em;
  transform: rotate(18deg);
}

.stag-glyph .sg-antler.l .sg-tine.two {
  top: 0.62em;
  transform: rotate(-28deg);
}

.stag-glyph .sg-antler.r .sg-tine.one {
  top: -0.32em;
  transform: rotate(-18deg);
}

.stag-glyph .sg-antler.r .sg-tine.two {
  top: 0.62em;
  transform: rotate(28deg);
}

/* ============ CENTERED STACK HERO ============ */

.center-stack-hero {
  background-color: #171310;
  padding: 92px 60px 70px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #C07A3E;
  color: #171310;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 999px;
}

.hero-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  line-height: 1.08;
  color: #F4EFE6;
  margin: 28px auto 22px;
  max-width: 740px;
}

.hero-title .copper {
  color: #C07A3E;
}

.hero-sub {
  font-size: 18px;
  color: #CFC5B4;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 32px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-copper {
  background-color: #C07A3E;
  color: #171310;
}

.btn-copper:hover {
  background-color: #D08B4A;
  color: #171310;
}

.btn-outline {
  border-color: #F4EFE6;
  color: #F4EFE6;
}

.btn-outline:hover {
  background-color: #F4EFE6;
  color: #171310;
}

/* ============ HERO GRAPHIC (campfire, stag, tent) ============ */

.hero-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  max-width: 640px;
  margin: 46px auto 40px;
  padding: 36px 46px;
  background-color: #211B14;
  border: 1px solid #33291D;
  border-radius: 12px;
}

.fire-glyph {
  position: relative;
  flex: none;
  width: 118px;
  height: 112px;
}

.cf-log {
  position: absolute;
  left: 53px;
  bottom: 6px;
  width: 12px;
  height: 94px;
  border-radius: 6px;
  background-color: #4A3B28;
  transform-origin: bottom center;
}

.cf-log.log-l {
  transform: rotate(38deg);
}

.cf-log.log-r {
  transform: rotate(-38deg);
}

.cf-flame {
  position: absolute;
  border-radius: 0 50% 50% 50%;
}

.cf-flame.f-outer {
  left: 43px;
  bottom: 46px;
  width: 32px;
  height: 32px;
  background-color: #C07A3E;
  transform: rotate(45deg);
}

.cf-flame.f-mid {
  left: 51px;
  bottom: 54px;
  width: 22px;
  height: 22px;
  background-color: #D08B4A;
  transform: rotate(45deg);
}

.cf-flame.f-inner {
  left: 57px;
  bottom: 62px;
  width: 13px;
  height: 13px;
  background-color: #F4EFE6;
  transform: rotate(45deg);
}

.cf-spark {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #F4EFE6;
}

.cf-spark.s1 {
  left: 86px;
  bottom: 92px;
}

.cf-spark.s2 {
  left: 30px;
  bottom: 78px;
  width: 4px;
  height: 4px;
}

.cf-spark.s3 {
  left: 78px;
  bottom: 56px;
  width: 3px;
  height: 3px;
}

.tent-glyph {
  position: relative;
  flex: none;
  width: 74px;
  height: 66px;
}

.tent-glyph::before {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 6px;
  width: 0;
  height: 0;
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  border-bottom: 46px solid #C07A3E;
}

.tent-glyph::after {
  content: "";
  position: absolute;
  left: 34px;
  bottom: 8px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 17px solid #171310;
}

/* ============ STAT LINE ============ */

.stat-line {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  padding: 0 36px;
  text-align: center;
}

.stat-item + .stat-item {
  border-left: 1px solid #C07A3E;
}

.stat-num {
  font-size: 30px;
  font-weight: 700;
  color: #F4EFE6;
}

.stat-label {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8F7E64;
}

/* ============ SECTION BASES ============ */

.section-pad {
  padding: 86px 60px;
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

/* ============ DUO-PANELS ============ */

.duo-panels {
  background-color: #171310;
}

.duo-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}

.duo-intro {
  position: sticky;
  top: 90px;
}

.duo-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #C07A3E;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.duo-eyebrow::before {
  content: "";
  flex: none;
  width: 10px;
  height: 10px;
  background-color: #C07A3E;
}

.duo-intro h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.16;
  color: #F4EFE6;
  margin: 20px 0 18px;
}

.duo-intro p {
  color: #CFC5B4;
  line-height: 1.75;
}

.duo-tags {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.duo-tags li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  color: #F4EFE6;
  font-size: 15px;
  border-bottom: 1px solid #33291D;
}

.duo-tags li::before {
  content: "";
  flex: none;
  width: 7px;
  height: 7px;
  background-color: #C07A3E;
}

.duo-blocks {
  display: flex;
  flex-direction: column;
}

.duo-block {
  padding: 34px 0;
  border-bottom: 1px solid #33291D;
}

.duo-block:first-child {
  padding-top: 0;
}

.duo-block-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.duo-block-head::before {
  content: "";
  flex: none;
  width: 12px;
  height: 12px;
  background-color: #C07A3E;
}

.duo-block-head::after {
  content: "";
  height: 1px;
  flex: 1;
  background-color: #4A3B28;
  margin-left: 8px;
}

.duo-block-head h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  color: #F4EFE6;
  white-space: nowrap;
}

.duo-block > p {
  color: #CFC5B4;
  line-height: 1.78;
}

.duo-mini {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
}

.duo-mini li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 14px;
  color: #F4EFE6;
  background-color: #211B14;
  border: 1px solid #33291D;
  border-radius: 999px;
}

.duo-mini li::before {
  content: "";
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #C07A3E;
}

/* ============ METRIC BAND ============ */

.metric-band {
  background-color: #C07A3E;
  padding: 58px 60px;
}

.metric-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric-item {
  padding: 10px 22px;
  text-align: center;
}

.metric-item + .metric-item {
  border-left: 1px solid #171310;
}

.metric-num {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 700;
  color: #171310;
  line-height: 1.1;
}

.metric-label {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4A3015;
}

/* ============ STATEMENT BAND ============ */

.statement-band {
  background-color: #211B14;
  padding: 74px 60px;
}

.statement-inner {
  max-width: 840px;
  margin: 0 auto;
  border-left: 4px solid #C07A3E;
  padding-left: 32px;
}

.statement-inner p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.55;
  color: #F4EFE6;
}

/* ============ CTA BAND ============ */

.cta-band {
  background-color: #171310;
  text-align: center;
  padding: 88px 60px;
}

.cta-band h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  color: #F4EFE6;
  margin: 0 0 16px;
}

.cta-band p {
  font-size: 17px;
  color: #CFC5B4;
  max-width: 580px;
  margin: 0 auto 30px;
}

/* ============ TWO-COLUMN WIDE FOOTER ============ */

.two-col-footer {
  background-color: #211B14;
  border-top: 1px solid #33291D;
  padding: 50px 60px 58px;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
}

.footer-wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  color: #F4EFE6;
}

.footer-wordmark::before {
  content: "";
  flex: none;
  width: 10px;
  height: 10px;
  background-color: #C07A3E;
}

.footer-blurb {
  color: #CFC5B4;
  line-height: 1.75;
  max-width: 480px;
  margin: 18px 0 20px;
}

.footer-legal {
  font-size: 13px;
  color: #8F7E64;
}

.footer-legal a {
  color: #CFC5B4;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #D08B4A;
}

.footer-contact h4 {
  color: #F4EFE6;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.footer-contact p {
  color: #CFC5B4;
  margin: 6px 0;
}

.footer-contact a {
  color: #CFC5B4;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #D08B4A;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 18px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid #33291D;
}

.footer-links a {
  color: #CFC5B4;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #D08B4A;
}

/* ============ SECONDARY PAGE HEADER ============ */

.page-hero {
  padding: 84px 60px 30px;
}

.page-eyebrow {
  color: #C07A3E;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1.12;
  color: #F4EFE6;
  margin: 16px 0 18px;
}

.page-hero .lead {
  font-size: 17px;
  color: #CFC5B4;
  line-height: 1.75;
  max-width: 760px;
}

/* ============ SERVICES PAGE ============ */

.services-list {
  padding: 20px 60px 10px;
}

.service-section {
  padding: 42px 0 10px;
  border-top: 1px solid #33291D;
}

.service-num {
  color: #C07A3E;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  color: #F4EFE6;
  margin: 10px 0 14px;
}

.service-section p {
  color: #CFC5B4;
  line-height: 1.78;
  max-width: 860px;
}

.service-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
}

.service-tags li {
  padding: 7px 14px;
  font-size: 13px;
  color: #F4EFE6;
  background-color: #211B14;
  border: 1px solid #33291D;
  border-radius: 999px;
}

.process-strip {
  margin: 56px 60px 20px;
  padding: 36px;
  background-color: #211B14;
  border: 1px solid #33291D;
  border-radius: 12px;
}

.process-strip > h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  color: #F4EFE6;
  margin: 0 0 28px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}

.process-step {
  counter-increment: step;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: inline-block;
  color: #C07A3E;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid #C07A3E;
}

.process-step h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  color: #F4EFE6;
  margin: 0 0 8px;
}

.process-step p {
  color: #CFC5B4;
  font-size: 15px;
}

/* ============ CONTACT PAGE ============ */

.contact-band {
  padding: 40px 60px 30px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-form {
  padding: 32px;
  background-color: #211B14;
  border: 1px solid #33291D;
  border-radius: 12px;
}

.contact-form h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  color: #F4EFE6;
  margin: 0 0 6px;
}

.contact-form > p {
  color: #CFC5B4;
  font-size: 15px;
  margin-bottom: 8px;
}

.contact-form label {
  display: block;
  margin: 18px 0 7px;
  color: #F4EFE6;
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 14px;
  background-color: #171310;
  border: 1px solid #4A3B28;
  border-radius: 6px;
  color: #F4EFE6;
  font-family: inherit;
  font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #C07A3E;
}

.contact-form .btn {
  margin-top: 20px;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 14px;
  background-color: #241D15;
  border: 1px solid #C07A3E;
  color: #F4EFE6;
}

.form-status.ok,
.form-status.error {
  display: block;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.info-card {
  padding: 26px;
  background-color: #211B14;
  border: 1px solid #33291D;
  border-radius: 12px;
}

.info-card h3 {
  color: #F4EFE6;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.info-card p {
  color: #CFC5B4;
  font-size: 15px;
  margin: 7px 0;
}

.info-card a {
  color: #CFC5B4;
  text-decoration: none;
}

.info-card a:hover {
  color: #D08B4A;
}

/* ============ FAQ ACCORDION ============ */

.faq-item {
  border-bottom: 1px solid #33291D;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: 0;
  text-align: left;
  color: #F4EFE6;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  flex: none;
  color: #C07A3E;
  font-size: 24px;
  line-height: 1;
}

.faq-item.open .faq-question::after {
  content: "–";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: #CFC5B4;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0 0 18px;
}

.faq-item.open .faq-answer {
  max-height: 320px;
}

/* ============ SCROLL REVEAL ============ */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============ RESPONSIVE ============ */

@media (max-width: 900px) {
  .side-nav {
    position: sticky;
    top: 0;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 14px 20px;
    border-right: none;
    border-bottom: 1px solid #33291D;
  }

  .nav-brand {
    margin-bottom: 0;
  }

  .nav-spacer {
    display: none;
  }

  .nav-contact {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 4px;
    padding: 16px 20px 22px;
    background-color: #211B14;
    border-bottom: 1px solid #33291D;
    visibility: hidden;
    transform: translateY(-10px);
    transition: transform 0.25s ease, visibility 0.25s ease;
  }

  .side-nav.open .nav-links {
    visibility: visible;
    transform: translateY(0);
  }

  .main-shell {
    margin-left: 0;
    padding-top: 76px;
  }

  .duo-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .duo-intro {
    position: static;
  }

  .metric-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 0;
  }

  .metric-item + .metric-item {
    border-left: none;
  }

  .metric-item:nth-child(even) {
    border-left: 1px solid #171310;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .center-stack-hero {
    padding: 56px 24px 50px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-graphic {
    flex-wrap: wrap;
    gap: 26px;
    padding: 28px 22px;
  }

  .stat-item {
    padding: 0 16px;
  }

  .stat-item + .stat-item {
    border-left: 1px solid #C07A3E;
  }

  .stat-num {
    font-size: 24px;
  }

  .section-pad {
    padding: 58px 24px;
  }

  .duo-intro h2 {
    font-size: 28px;
  }

  .duo-block-head h3 {
    white-space: normal;
  }

  .metric-band {
    padding: 42px 24px;
  }

  .metric-num {
    font-size: 36px;
  }

  .statement-band {
    padding: 50px 24px;
  }

  .statement-inner {
    padding-left: 22px;
  }

  .statement-inner p {
    font-size: 20px;
  }

  .cta-band {
    padding: 60px 24px;
  }

  .cta-band h2 {
    font-size: 32px;
  }

  .two-col-footer {
    padding: 42px 24px 48px;
  }

  .page-hero {
    padding: 58px 24px 24px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .services-list {
    padding: 12px 24px 8px;
  }

  .service-section h2 {
    font-size: 25px;
  }

  .process-strip {
    margin: 40px 24px 12px;
    padding: 26px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .contact-band {
    padding: 30px 24px 24px;
  }

  .contact-form {
    padding: 24px;
  }
}
