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

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  background-color: #16100E;
  color: #F4EDE6;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 15px 32px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background-color: #C0392B;
  color: #F4EDE6;
}

.btn-primary:hover {
  background-color: #A93226;
}

.btn-outline {
  background-color: transparent;
  color: #F0C9B8;
  border-color: #F0C9B8;
}

.btn-outline:hover {
  background-color: #F0C9B8;
  color: #16100E;
}

/* ---------- Hero-embedded navigation ---------- */

.hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid #C0392B;
}

.hero-nav .wordmark {
  color: #F0C9B8;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 3px;
  text-decoration: none;
}

.hero-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-nav .nav-links a {
  color: #F4EDE6;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.hero-nav .nav-links a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #C0392B;
  margin-right: 8px;
  vertical-align: middle;
}

.hero-nav .nav-links a:hover {
  color: #F0C9B8;
}

.hero-nav .nav-links a.active {
  color: #F0C9B8;
  border-bottom: 3px solid #C0392B;
  padding-bottom: 1px;
}

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

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: #F4EDE6;
  margin: 5px 0;
  border-radius: 2px;
}

/* ---------- Hero ---------- */

.stat-hero {
  background-color: #16100E;
}

.stat-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 24px 0;
  text-align: left;
}

.eyebrow {
  display: inline-block;
  background-color: #C0392B;
  color: #F4EDE6;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 3px;
}

.stat-hero h1 {
  font-size: 56px;
  line-height: 1.12;
  color: #F4EDE6;
  font-weight: 800;
  max-width: 900px;
  margin: 32px 0 24px;
}

.stat-hero h1 span {
  display: block;
}

.hero-sub {
  max-width: 640px;
  font-size: 18px;
  color: #F4EDE6;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 72px;
}

.stat-strip {
  display: flex;
  border-top: 1px solid #C0392B;
  padding-top: 40px;
}

.stat-block {
  flex: 1;
}

.stat-block + .stat-block {
  border-left: 1px solid #C0392B;
  padding-left: 32px;
}

.stat-num {
  display: block;
  font-size: 44px;
  font-weight: 800;
  color: #F0C9B8;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: #F4EDE6;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ---------- Secondary page hero ---------- */

.page-hero {
  background-color: #16100E;
}

.page-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 24px 88px;
}

.page-hero-inner h1 {
  font-size: 48px;
  line-height: 1.15;
  color: #F4EDE6;
  font-weight: 800;
  margin: 28px 0 20px;
}

.page-hero-sub {
  max-width: 720px;
  font-size: 18px;
  color: #F4EDE6;
}

/* ---------- Long-form editorial ---------- */

.editorial {
  background-color: #16100E;
  padding: 96px 0;
}

.editorial-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.editorial-heading {
  font-size: 34px;
  line-height: 1.25;
  color: #F4EDE6;
  margin-bottom: 24px;
}

.editorial-lead {
  font-size: 18px;
  color: #F4EDE6;
  margin-bottom: 64px;
}

.editorial-block {
  padding: 48px 0 0;
}

.editorial-block + .editorial-block {
  border-top: 1px solid #C0392B;
  margin-top: 48px;
}

.editorial-block h3 {
  font-size: 28px;
  color: #F4EDE6;
  margin-bottom: 20px;
}

.editorial-block p {
  color: #F4EDE6;
  margin-bottom: 20px;
}

.editorial-close {
  border-top: 1px solid #C0392B;
  margin-top: 48px;
  padding-top: 48px;
  color: #F4EDE6;
  font-size: 18px;
}

/* ---------- Metric band ---------- */

.metric-band {
  background-color: #C0392B;
  padding: 72px 0;
}

.metric-head {
  text-align: center;
  color: #F4EDE6;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.metric-strip {
  display: flex;
}

.metric {
  flex: 1;
  text-align: center;
}

.metric + .metric {
  border-left: 1px solid #16100E;
}

.metric-num {
  display: block;
  font-size: 46px;
  font-weight: 800;
  color: #F4EDE6;
}

.metric-label {
  color: #16100E;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ---------- CTA band ---------- */

.cta-band {
  background-color: #F0C9B8;
  padding: 88px 0;
}

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

.cta-band h2 {
  color: #16100E;
  font-size: 36px;
  line-height: 1.25;
  margin-bottom: 16px;
}

.cta-band p {
  color: #16100E;
  font-size: 18px;
  margin-bottom: 32px;
}

/* ---------- Services page ---------- */

.services-list {
  background-color: #16100E;
  padding: 64px 0;
}

.service-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 24px 24px;
}

.service-section + .service-section {
  border-top: 1px solid #C0392B;
}

.service-section h2 {
  font-size: 30px;
  color: #F4EDE6;
  margin-bottom: 16px;
}

.service-section h2::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 20px;
  background-color: #C0392B;
  margin-right: 14px;
  vertical-align: -2px;
}

.service-section p {
  color: #F4EDE6;
  margin-bottom: 18px;
}

.process {
  background-color: #221512;
  padding: 80px 0;
}

.process-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.process h2 {
  color: #F4EDE6;
  font-size: 32px;
  text-align: center;
  margin-bottom: 12px;
}

.process-lead {
  color: #F0C9B8;
  text-align: center;
  margin-bottom: 48px;
}

.process-steps {
  display: flex;
}

.process-step {
  flex: 1;
  padding: 24px;
}

.process-step + .process-step {
  border-left: 1px solid #C0392B;
}

.process-step h3 {
  color: #F4EDE6;
  font-size: 20px;
  margin-bottom: 10px;
}

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

/* ---------- Contact page ---------- */

.contact-wrap {
  background-color: #16100E;
  padding: 72px 0;
}

.contact-grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.contact-form-col {
  flex: 1.2;
}

.contact-info-col {
  flex: 0.9;
}

.contact-grid h2 {
  color: #F4EDE6;
  font-size: 26px;
  margin-bottom: 24px;
}

.contact-intro {
  color: #F4EDE6;
  font-size: 16px;
  margin-bottom: 24px;
}

.contact-form .form-field {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  color: #F4EDE6;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #3A2A24;
  border-radius: 4px;
  background-color: #221512;
  color: #F4EDE6;
  font-size: 16px;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #C0392B;
  border-color: #C0392B;
}

.contact-form input.field-error,
.contact-form textarea.field-error {
  border-color: #C0392B;
}

.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 15px;
  border: 1px solid #C0392B;
  background-color: #221512;
  color: #F0C9B8;
}

.form-status:empty {
  display: none;
}

.form-status-ok {
  color: #F0C9B8;
}

.form-status-error {
  color: #F4EDE6;
}

.info-card {
  background-color: #221512;
  border: 1px solid #3A2A24;
  border-radius: 6px;
  padding: 24px;
  margin-bottom: 20px;
}

.info-card h3 {
  color: #F0C9B8;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.info-card p {
  color: #F4EDE6;
  font-size: 16px;
}

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

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

/* ---------- FAQ ---------- */

.faq {
  background-color: #16100E;
  padding: 72px 0 96px;
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq h2 {
  color: #F4EDE6;
  font-size: 30px;
  margin-bottom: 32px;
}

.faq-item {
  border: 1px solid #3A2A24;
  background-color: #221512;
  border-radius: 6px;
  margin-bottom: 16px;
}

.faq-question {
  width: 100%;
  background: none;
  border: 0;
  color: #F4EDE6;
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  padding: 18px 20px;
  cursor: pointer;
  font-family: inherit;
}

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

.faq-answer p {
  padding: 0 20px 20px;
  color: #F0C9B8;
  font-size: 15px;
}

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

/* ---------- Centered stack footer ---------- */

.stack-footer {
  background-color: #16100E;
  text-align: center;
  padding: 64px 24px 48px;
}

.stack-footer .wordmark {
  color: #F0C9B8;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 3px;
  text-decoration: none;
}

.footer-links {
  margin: 24px 0 20px;
}

.footer-links a {
  color: #F4EDE6;
  text-decoration: none;
  margin: 0 12px;
  font-size: 15px;
  font-weight: 600;
}

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

.legal-line {
  color: #F0C9B8;
  font-size: 14px;
}

.legal-line a {
  color: #F0C9B8;
}

/* ---------- 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: 860px) {
  .stat-hero h1 {
    font-size: 40px;
  }

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

  .metric-strip {
    flex-wrap: wrap;
  }

  .metric {
    flex: 1 1 50%;
    padding: 20px;
  }

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

  .process-steps {
    flex-wrap: wrap;
  }

  .process-step {
    flex: 1 1 50%;
  }

  .process-step + .process-step {
    border-left: 0;
  }

  .contact-grid {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .nav-toggle {
    display: block;
  }

  .hero-nav {
    flex-wrap: wrap;
  }

  .hero-nav .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-top: 12px;
  }

  .hero-nav.nav-open .nav-links {
    display: flex;
  }

  .hero-nav .nav-links a {
    display: block;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #3A2A24;
  }

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

  .stat-strip {
    flex-direction: column;
  }

  .stat-block + .stat-block {
    border-left: 0;
    border-top: 1px solid #C0392B;
    padding-top: 24px;
    margin-top: 24px;
  }

  .metric-strip {
    flex-direction: column;
  }

  .metric + .metric {
    border-top: 1px solid #16100E;
    padding-top: 20px;
  }

  .process-step {
    flex: 1 1 100%;
  }

  .process-step + .process-step {
    border-top: 1px solid #C0392B;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    text-align: center;
  }

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

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

  .page-hero-inner {
    padding-top: 64px;
  }
}
