.container {
  width: min(var(--content-width), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(31, 26, 22, 0.08);
  backdrop-filter: blur(22px);
  background: rgba(248, 244, 237, 0.8);
}

.header-row,
.footer-row,
.main-nav,
.header-actions,
.brand,
.metrics-band,
.hero-actions,
.footer-links,
.footer-brand,
.check-list,
.cta-actions {
  display: flex;
  align-items: center;
}

.header-row,
.footer-row {
  justify-content: space-between;
  gap: 16px;
  min-height: 82px;
}

.main-nav,
.header-actions,
.hero-actions,
.footer-links,
.check-list,
.cta-actions {
  gap: 12px;
}

.brand {
  gap: 12px;
  min-width: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand-copy strong,
.footer-brand strong {
  font-size: 1.08rem;
  font-weight: 800;
}

.brand-copy small {
  color: var(--text-soft);
  font-size: 0.83rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(186, 93, 52, 0.16), rgba(68, 107, 97, 0.12));
  border: 1px solid var(--line);
}

.brand-mark img {
  width: 22px;
  height: 22px;
}

.footer-mark {
  width: 40px;
  height: 40px;
}

.main-nav {
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav a,
.footer-links a {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.main-nav a.is-current {
  color: var(--text);
  font-weight: 700;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

section {
  padding: 100px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2 {
  font-size: 3.1rem;
  line-height: 1.02;
}

.faq-grid,
.hero-grid,
.showcase-grid {
  display: grid;
  gap: 28px;
}

.hero-grid,
.showcase-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  align-items: center;
}

@media (max-width: 980px) {
  .hero-grid,
  .showcase-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-row,
  .footer-row {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
  }

  .header-row,
  .footer-row,
  .main-nav {
    flex-direction: column;
  }

  .header-actions,
  .hero-actions,
  .cta-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .header-actions .button,
  .hero-actions .button,
  .cta-actions .button {
    flex: 1 1 180px;
  }

  section {
    padding: 78px 0;
  }

  .section-head h2 {
    font-size: 2.3rem;
  }
}
