:root {
  --ink: #2B2416;
  --bg: #FDFAF2;
  --honey: #E8B53D;
  --cream: #F6EEDC;
  --brown: #7A7057;
  --hairline: #EADFC2;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 16px;
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", system-ui, sans-serif;
  line-height: 1.7;
  background-color: #FDFAF2;
  color: #2B2416;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
  line-height: 1.2;
  color: #2B2416;
}

a {
  color: #E8B53D;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ CENTERED WORDMARK NAV ============ */
.center-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #FDFAF2;
  border-bottom: 1px solid #EADFC2;
}

.nav-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 6px;
  color: #2B2416;
  text-decoration: none;
  white-space: nowrap;
}

.nav-left,
.nav-right {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-left a,
.nav-right a {
  position: relative;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #7A7057;
  text-decoration: none;
  padding-bottom: 6px;
}

.nav-left a.active,
.nav-right a.active {
  color: #2B2416;
}

.nav-left a.active::after,
.nav-right a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #E8B53D;
}

.nav-left a:hover::before,
.nav-right a:hover::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #E8B53D;
}

.nav-right-wrap {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #2B2416;
  margin: 5px 0;
}

.nav-mobile {
  display: none;
}

.nav-mobile a {
  display: block;
  padding: 13px 4px;
  font-size: 15px;
  color: #2B2416;
  text-decoration: none;
  border-bottom: 1px solid #EADFC2;
}

.nav-mobile a.active {
  color: #2B2416;
  font-weight: 700;
  border-left: 4px solid #E8B53D;
  padding-left: 8px;
}

.nav-mobile.open {
  display: block;
  padding: 8px 24px 16px;
}

/* ============ SHARED ELEMENTS ============ */
.eyebrow {
  display: inline-block;
  background-color: #E8B53D;
  color: #2B2416;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7A7057;
  border-left: 3px solid #E8B53D;
  padding-left: 12px;
  margin-bottom: 20px;
}

.section-label--ink {
  color: #2B2416;
}

h2 {
  font-size: 38px;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  border: 0;
  text-align: center;
}

.btn-primary {
  background-color: #E8B53D;
  color: #2B2416;
}

.btn-outline {
  border: 1px solid #E8B53D;
  color: #E8B53D;
  background-color: transparent;
}

.btn-dark {
  background-color: #2B2416;
  color: #FDFAF2;
}

/* ============ TEXT-ONLY STAT HERO ============ */
.stat-hero {
  background-color: #FDFAF2;
  padding: 96px 0 0;
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.stat-hero h1 {
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: -1px;
  max-width: 830px;
  margin-bottom: 26px;
}

.lead {
  font-size: 18px;
  line-height: 1.75;
  color: #7A7057;
  max-width: 690px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 84px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #EADFC2;
}

.stat-cell {
  text-align: center;
  padding: 38px 24px;
}

.stat-cell + .stat-cell {
  border-left: 1px solid #EADFC2;
}

.stat-num {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #E8B53D;
  line-height: 1.1;
}

.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #7A7057;
}

/* ============ INTRO BAND ============ */
.intro-band {
  background-color: #FDFAF2;
  padding: 96px 0;
}

.intro-band h2 {
  max-width: 720px;
}

.intro-band p {
  font-size: 17px;
  line-height: 1.85;
  color: #7A7057;
  max-width: 800px;
  margin-bottom: 22px;
}

/* ============ STATEMENT BAND ============ */
.statement-band {
  background-color: #F6EEDC;
  border-top: 1px solid #EADFC2;
  border-bottom: 1px solid #EADFC2;
  padding: 92px 0;
}

.statement-band--plain {
  background-color: #FDFAF2;
  border-top: 0;
}

.statement {
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  color: #2B2416;
  max-width: 780px;
  margin-bottom: 22px;
}

.statement-copy {
  font-size: 16px;
  line-height: 1.85;
  color: #7A7057;
  max-width: 780px;
  margin-bottom: 16px;
}

/* ============ STEP PROGRESSION ============ */
.step-section {
  background-color: #FDFAF2;
  padding: 100px 0;
}

.step-section .section-intro {
  font-size: 17px;
  line-height: 1.8;
  color: #7A7057;
  max-width: 760px;
  margin-bottom: 48px;
}

.step-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 44px;
  padding: 44px 0;
  border-top: 1px solid #EADFC2;
}

.step-num {
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  color: #E8B53D;
}

.step-body h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.step-body p {
  font-size: 16px;
  line-height: 1.8;
  color: #7A7057;
  max-width: 780px;
  margin-bottom: 20px;
}

.step-progress {
  display: block;
  width: 160px;
  height: 2px;
  background-color: #EADFC2;
}

.step-progress-fill {
  display: block;
  height: 2px;
  background-color: #E8B53D;
}

/* ============ METRIC BAND ============ */
.metric-band {
  background-color: #E8B53D;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric-cell {
  text-align: center;
  padding: 58px 24px;
}

.metric-cell + .metric-cell {
  border-left: 1px solid #FDFAF2;
}

.metric-num {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #2B2416;
  line-height: 1.1;
}

.metric-label {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2B2416;
}

/* ============ CTA BAND ============ */
.cta-band {
  background-color: #E8B53D;
  padding: 100px 0;
}

.cta-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.cta-band h2 {
  font-size: 40px;
  color: #2B2416;
  max-width: 700px;
  margin: 0 auto 16px;
}

.cta-band p {
  font-size: 17px;
  color: #2B2416;
  max-width: 620px;
  margin: 0 auto 34px;
}

/* ============ CENTERED STACK FOOTER ============ */
.stack-footer {
  background-color: #FDFAF2;
  text-align: center;
  padding: 76px 24px 42px;
  border-top: 1px solid #EADFC2;
}

.footer-brand {
  display: inline-block;
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 7px;
  color: #E8B53D;
  text-decoration: none;
}

.footer-tag {
  font-size: 15px;
  color: #7A7057;
  margin: 18px 0 30px;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

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

.link-dot {
  color: #EADFC2;
}

.footer-legal {
  font-size: 13px;
  color: #7A7057;
}

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

.footer-copy {
  font-size: 13px;
  color: #7A7057;
  margin-top: 10px;
}

/* ============ PAGE HERO (SECONDARY PAGES) ============ */
.page-hero {
  background-color: #FDFAF2;
  padding: 92px 0 72px;
  border-bottom: 1px solid #EADFC2;
}

.page-hero h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
  max-width: 800px;
  margin-bottom: 22px;
}

.page-hero .lead {
  max-width: 760px;
}

/* ============ SERVICES GRID ============ */
.services-grid {
  background-color: #FDFAF2;
  padding: 84px 0;
}

.services-grid-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.service-block {
  background-color: #F6EEDC;
  border: 1px solid #EADFC2;
  padding: 38px 34px;
}

.service-index {
  display: inline-block;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: #E8B53D;
  margin-bottom: 18px;
}

.service-block h2 {
  font-size: 26px;
  margin-bottom: 14px;
}

.service-block p {
  font-size: 15px;
  line-height: 1.8;
  color: #7A7057;
  margin-bottom: 14px;
}

.service-block p:last-child {
  margin-bottom: 0;
}

/* ============ PROCESS OVERVIEW ============ */
.process-overview {
  background-color: #F6EEDC;
  border-top: 1px solid #EADFC2;
  border-bottom: 1px solid #EADFC2;
  padding: 90px 0;
}

.process-overview h2 {
  margin-bottom: 48px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

.process-step {
  border-top: 3px solid #E8B53D;
  padding-top: 22px;
}

.process-num {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: #2B2416;
  background-color: #E8B53D;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  margin-bottom: 16px;
}

.process-step h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  line-height: 1.75;
  color: #7A7057;
}

/* ============ CONTACT PAGE ============ */
.contact-section {
  background-color: #FDFAF2;
  padding: 92px 0;
}

.contact-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}

.contact-info h2,
.contact-form-wrap h2 {
  font-size: 30px;
  margin-bottom: 18px;
}

.contact-info > p {
  font-size: 16px;
  line-height: 1.8;
  color: #7A7057;
  margin-bottom: 26px;
  max-width: 520px;
}

.contact-card {
  background-color: #F6EEDC;
  border: 1px solid #EADFC2;
  padding: 24px 26px;
  margin-bottom: 18px;
}

.contact-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-line {
  font-size: 15px;
  line-height: 1.75;
  color: #7A7057;
}

.contact-line a {
  color: #2B2416;
  text-decoration: none;
  border-bottom: 2px solid #E8B53D;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #2B2416;
}

.form-field input,
.form-field textarea {
  font-size: 15px;
  font-family: inherit;
  color: #2B2416;
  background-color: #FDFAF2;
  border: 1px solid #EADFC2;
  border-radius: 4px;
  padding: 13px 15px;
}

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

.form-field textarea {
  resize: vertical;
}

.form-status {
  font-size: 14px;
  color: #2B2416;
  min-height: 20px;
}

.form-status--ok {
  color: #2B2416;
  font-weight: 700;
}

.form-status--error {
  color: #2B2416;
  font-weight: 700;
}

/* ============ FAQ ACCORDION ============ */
.faq-section {
  background-color: #F6EEDC;
  border-top: 1px solid #EADFC2;
  border-bottom: 1px solid #EADFC2;
  padding: 90px 0;
}

.faq-list {
  max-width: 820px;
  margin-top: 40px;
}

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  padding: 22px 4px;
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 20px;
  font-weight: 700;
  color: #2B2416;
}

.faq-icon {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background-color: #E8B53D;
}

.faq-icon::before {
  left: 0;
  top: 10px;
  width: 22px;
  height: 2px;
}

.faq-icon::after {
  left: 10px;
  top: 0;
  width: 2px;
  height: 22px;
  transition: transform 0.25s ease;
}

.faq-item.faq-open .faq-icon::after {
  transform: rotate(90deg);
}

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

.faq-answer p {
  font-size: 15px;
  line-height: 1.8;
  color: #7A7057;
  padding: 0 4px 24px;
  max-width: 720px;
}

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

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-right-wrap {
    width: 100%;
    justify-content: flex-end;
  }

  .stat-hero h1 {
    font-size: 42px;
  }

  .statement {
    font-size: 26px;
  }

  .step-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .step-num {
    font-size: 54px;
  }

  .services-grid-inner {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .stat-strip,
  .metric-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-cell + .stat-cell {
    border-left: 0;
  }

  .stat-cell:nth-child(odd) + .stat-cell {
    border-left: 1px solid #EADFC2;
  }

  .stat-cell:nth-child(n + 3) {
    border-top: 1px solid #EADFC2;
  }

  .metric-cell + .metric-cell {
    border-left: 0;
  }

  .metric-cell:nth-child(odd) + .metric-cell {
    border-left: 1px solid #FDFAF2;
  }

  .metric-cell:nth-child(n + 3) {
    border-top: 1px solid #FDFAF2;
  }

  .stat-hero {
    padding-top: 64px;
  }

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

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 60px;
  }

  h2 {
    font-size: 30px;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-links {
    gap: 10px;
  }
}
