:root {
  --charcoal: #1d1b1c;
  --charcoal-2: #3d3935;
  --ink: #141414;
  --slate: #101820;
  --navy: #0c2340;
  --orange: #ff4d00;
  --orange-dark: #c23a00;
  --stone: #eeece9;
  --stone-2: #f4f3f1;
  --line: #d8d1ca;
  --muted: #716b64;
  --white: #fff;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 24px 60px rgba(17, 17, 17, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--stone-2);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
ul,
ol {
  margin-top: 0;
}

ul,
ol {
  padding-left: 1.15rem;
}

li + li {
  margin-top: 0.45rem;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--orange);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 209, 202, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 226px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.main-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 12px;
  border-bottom: 2px solid transparent;
  color: var(--charcoal);
  font-size: 0.94rem;
  font-weight: 760;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: var(--orange-dark);
  border-color: var(--orange);
}

.nav-item {
  position: relative;
}

.nav-item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-trigger {
  gap: 8px;
}

.nav-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.nav-item.active > .nav-trigger {
  color: var(--orange-dark);
  border-color: var(--orange);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 80;
  min-width: 310px;
  padding: 10px;
  border: 1px solid rgba(216, 209, 202, 0.95);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(29, 27, 28, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.keyboard-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-item:hover .nav-trigger::after,
.nav-item:focus-within .nav-trigger::after,
.nav-item.keyboard-open .nav-trigger::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.nav-dropdown a {
  display: flex;
  min-height: auto;
  padding: 10px 12px;
  border: 0;
  border-radius: 6px;
  color: var(--charcoal);
  font-size: 0.92rem;
  line-height: 1.25;
  white-space: normal;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: var(--stone-2);
  color: var(--orange-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--charcoal);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--white);
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--orange);
  color: var(--ink);
  transform: translateY(-1px);
}

.button.primary {
  background: var(--orange-dark);
  color: var(--white);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--orange);
}

.button.secondary {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--orange);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--orange);
}

.button.ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--line);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  border-color: var(--orange);
  background: var(--stone);
  color: var(--charcoal);
}

.hero {
  position: relative;
  min-height: min(680px, 72vh);
  color: var(--white);
  background: var(--charcoal);
  overflow: hidden;
}

.hero.compact {
  min-height: 430px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(29, 27, 28, 0.94) 0%, rgba(29, 27, 28, 0.78) 42%, rgba(29, 27, 28, 0.25) 100%);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 160px;
  background: var(--orange);
  z-index: 2;
  opacity: 0.92;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

@media (hover: hover) {
  .hero:hover .hero-image {
    transform: scale(1.015);
  }
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: var(--max);
  margin: 0 auto;
  padding: 108px 24px 54px;
  display: grid;
  align-content: end;
  min-height: inherit;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 42px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-weight: 430;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.55rem, 7vw, 4.8rem);
}

.compact h1 {
  font-size: clamp(2.35rem, 5.5vw, 4.35rem);
}

h1 strong,
h2 strong {
  font-weight: 900;
}

.hero-subheadline {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.55;
}

.supporting-line {
  margin: 18px 0 0;
  color: var(--white);
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.page-section {
  padding: clamp(64px, 8vw, 108px) 24px;
  background: var(--stone-2);
}

.page-section.white {
  background: var(--white);
}

.page-section.grid-surface {
  background:
    linear-gradient(90deg, rgba(216, 209, 202, 0.42) 1px, transparent 1px),
    linear-gradient(180deg, rgba(216, 209, 202, 0.34) 1px, transparent 1px),
    var(--stone-2);
  background-position: center top;
  background-size: 72px 72px;
}

.page-section.dark {
  background: var(--charcoal);
  color: var(--white);
}

.page-section.navy {
  background: linear-gradient(180deg, var(--navy), var(--slate));
  color: var(--white);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-header {
  max-width: 860px;
  margin-bottom: clamp(30px, 5vw, 54px);
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header.center .eyebrow {
  justify-content: center;
}

.section-header.center .eyebrow::before {
  display: none;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.85rem);
}

.lede {
  max-width: 820px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.dark .lede,
.navy .lede {
  color: rgba(255, 255, 255, 0.78);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.prose {
  max-width: 820px;
}

.prose section + section {
  margin-top: clamp(3.5rem, 6vw, 5.25rem);
}

.prose p {
  color: var(--muted);
  font-size: 1.02rem;
}

.dark .prose p,
.navy .prose p {
  color: rgba(255, 255, 255, 0.78);
}

.prose h2,
.prose h3 {
  margin-top: 0;
  margin-bottom: clamp(1.3rem, 2.3vw, 1.9rem);
}

.prose h2:first-child,
.prose h3:first-child {
  margin-top: 0;
}

.prose h2 + ul,
.prose h3 + ul,
.prose h2 + ol,
.prose h3 + ol {
  margin-top: 0.45rem;
}

.prose h2 + p,
.prose h3 + p {
  margin-top: 0;
}

.prose ul {
  margin-bottom: 1.8rem;
}

.prose li::marker,
.check-list li::marker {
  color: var(--orange);
}

.text-link {
  color: var(--orange-dark);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--orange);
}

.micro-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 8px;
}

.micro-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--stone-2);
}

.micro-card h3 {
  margin-bottom: 10px;
  color: var(--charcoal);
  font-size: 1.12rem;
  font-weight: 850;
  line-height: 1.16;
}

.micro-card p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.content-media {
  margin: clamp(2.6rem, 5vw, 4.75rem) 0;
}

.content-media picture {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(29, 27, 28, 0.14);
}

.content-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-media > img {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(29, 27, 28, 0.14);
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready a.card.reveal.is-visible:hover,
.motion-ready a.card.reveal.is-visible:focus-visible {
  transform: translateY(-3px);
}

.motion-ready .related-link.reveal.is-visible:hover,
.motion-ready .related-link.reveal.is-visible:focus-visible {
  transform: translateY(-2px);
}

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

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(216, 209, 202, 0.9);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  box-shadow: 0 1px 0 rgba(29, 27, 28, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

a.card:hover,
a.card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--orange);
  box-shadow: var(--shadow);
}

.card.dark-card {
  background: var(--charcoal-2);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
}

.card.blue-card {
  background: var(--navy);
  color: var(--white);
}

.card.orange-card {
  background: var(--orange-dark);
  color: var(--white);
}

.card h3 {
  margin-bottom: 14px;
  font-size: 1.42rem;
  font-weight: 850;
  line-height: 1.14;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.dark-card p,
.blue-card p,
.orange-card p {
  color: rgba(255, 255, 255, 0.78);
}

.card-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--orange-dark);
  font-weight: 850;
}

.dark-card .card-link,
.blue-card .card-link,
.orange-card .card-link {
  color: var(--white);
}

.feature-panel {
  padding: clamp(30px, 5vw, 46px);
  border-radius: var(--radius);
  background: var(--white);
  border-left: 5px solid var(--orange);
  box-shadow: 0 20px 60px rgba(29, 27, 28, 0.08);
}

.feature-panel p:last-child {
  margin-bottom: 0;
}

.dark .feature-panel,
.navy .feature-panel {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--orange);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  counter-increment: steps;
}

.step::before {
  content: counter(steps, decimal-leading-zero);
  display: block;
  margin-bottom: 34px;
  color: var(--orange-dark);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
}

.step h3 {
  margin-bottom: 12px;
  font-weight: 850;
  font-size: 1.35rem;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.proof {
  padding: 22px 0 22px 22px;
  border-left: 3px solid var(--orange);
}

.proof h3 {
  margin-bottom: 8px;
  font-size: 1.22rem;
  font-weight: 850;
}

.proof p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 7vw, 86px) 24px;
  color: var(--white);
  background: var(--charcoal);
}

.cta-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(24px, calc((100vw - var(--max)) / 2));
  width: 148px;
  height: 3px;
  background: var(--orange);
}

.cta-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.cta-band h2 {
  max-width: 780px;
}

.cta-band p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.related-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.related-link {
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 850;
  color: var(--charcoal);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.related-link:hover,
.related-link:focus-visible {
  border-color: var(--orange);
  transform: translateY(-2px);
}

.breadcrumb-nav {
  background: var(--stone-2);
  border-bottom: 1px solid rgba(216, 209, 202, 0.72);
}

.breadcrumb-nav ol {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 760;
  line-height: 1.25;
}

.breadcrumb-nav li {
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 1.25;
}

.breadcrumb-nav li + li {
  margin-top: 0;
  margin-left: 10px;
  padding-left: 14px;
}

.breadcrumb-nav li + li::before {
  content: "/";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #9b948d;
  line-height: 1.25;
}

.breadcrumb-nav a,
.breadcrumb-nav span {
  display: inline-flex;
  align-items: center;
  line-height: 1.25;
}

.breadcrumb-nav a {
  color: var(--charcoal);
  transition: color 0.2s ease;
}

.breadcrumb-nav a:hover,
.breadcrumb-nav a:focus-visible {
  color: var(--orange-dark);
}

.compact-section {
  padding-top: clamp(42px, 6vw, 70px);
  padding-bottom: clamp(42px, 6vw, 70px);
}

.answer-section,
.summary-section {
  padding-top: clamp(34px, 5vw, 54px);
  padding-bottom: clamp(34px, 5vw, 54px);
}

.answer-block,
.page-summary {
  max-width: 900px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(216, 209, 202, 0.9);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(29, 27, 28, 0.08);
}

.answer-block p:last-child,
.page-summary p:last-child {
  margin-bottom: 0;
  color: var(--charcoal);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
  line-height: 1.55;
}

.fit-grid,
.definition-grid {
  display: grid;
  gap: 18px;
}

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

.definition-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-list-grid {
  align-items: start;
}

.fit-card,
.definition-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(29, 27, 28, 0.04);
}

.fit-card,
.definition-card {
  padding: clamp(24px, 4vw, 32px);
}

.fit-card h2,
.definition-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  line-height: 1.12;
}

.fit-card p,
.definition-card p,
.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.brand-list-card h3 {
  margin-bottom: 16px;
  color: var(--charcoal);
  font-size: clamp(1.18rem, 2vw, 1.42rem);
  font-weight: 850;
  line-height: 1.16;
}

.brand-list-card .check-list {
  margin-bottom: 0;
}

.brand-disclaimer {
  max-width: 900px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.faq-item {
  padding: clamp(22px, 3vw, 28px);
}

.faq-item h3 {
  margin-bottom: 10px;
  color: var(--charcoal);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.form-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.intake-form {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field[hidden] {
  display: none;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 850;
}

.field.required label::after {
  content: " *";
  color: var(--orange-dark);
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #c9c2bb;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

textarea {
  min-height: 144px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(255, 77, 0, 0.18);
  border-color: var(--orange);
}

input:user-invalid,
select:user-invalid,
textarea:user-invalid {
  border-color: var(--orange-dark);
  box-shadow: 0 0 0 3px rgba(194, 58, 0, 0.12);
}

.form-note,
.form-alert,
.success-message {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-alert[hidden] {
  display: none;
}

.form-alert {
  padding: 12px 14px;
  border-left: 4px solid var(--orange-dark);
  border-radius: var(--radius);
  background: #fff5f0;
  color: var(--charcoal);
  font-weight: 760;
}

.form-alert:focus {
  outline: 3px solid rgba(255, 77, 0, 0.2);
  outline-offset: 3px;
}

.form-note {
  margin: 18px 0 20px;
  font-size: 0.86rem;
  line-height: 1.45;
}

.success-message {
  display: none;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--stone);
  color: var(--charcoal);
  font-weight: 760;
}

.intake-form.submitted .success-message {
  display: block;
}

.intake-form.is-sending .button {
  cursor: progress;
  opacity: 0.82;
}

.honeypot-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.article-body {
  max-width: 850px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) 24px;
  background: var(--stone-2);
}

.article-body .prose {
  max-width: none;
}

.article-body h2 {
  margin-top: 0;
  margin-bottom: clamp(1.25rem, 2.2vw, 1.75rem);
  font-size: clamp(1.7rem, 3.2vw, 2.55rem);
}

.article-body p:first-child {
  color: var(--charcoal);
  font-size: 1.16rem;
}

.site-footer {
  background: #151414;
  color: var(--white);
  padding: 58px 24px 30px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) repeat(3, minmax(0, 1fr));
  gap: 34px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand img {
  width: 230px;
  height: auto;
  padding: 8px;
  background: var(--white);
  border-radius: var(--radius);
}

.footer-brand p {
  margin: 20px 0 0;
  max-width: 340px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact {
  display: grid;
  gap: 4px;
}

.footer-contact span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-contact a {
  color: var(--white);
  font-weight: 850;
}

.contact-email-note {
  padding: 16px 18px;
  border-left: 3px solid var(--orange);
  background: var(--stone-2);
  color: var(--charcoal);
}

.footer-column h3 {
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.76);
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--orange);
}

.mini-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.mini-stat span {
  color: var(--orange);
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1;
}

.mini-stat p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 980px) {
  .header-inner {
    padding: 12px 18px;
  }

  .brand img {
    width: 198px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: fixed;
    inset: 69px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100dvh - 69px);
    overflow-y: auto;
    padding: 22px 24px 28px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .menu-open .main-nav {
    display: flex;
  }

  .main-nav a {
    min-height: 50px;
    padding: 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.1rem;
  }

  .nav-item {
    border-bottom: 1px solid var(--line);
  }

  .nav-item::after {
    display: none;
  }

  .nav-trigger {
    justify-content: space-between;
    border-bottom: 0;
  }

  .nav-trigger::after {
    transform: rotate(45deg);
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    padding: 0 0 12px 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown a {
    min-height: 38px;
    padding: 7px 0;
    border-bottom: 0;
    color: var(--muted);
    font-size: 0.98rem;
  }

  .nav-dropdown a:hover,
  .nav-dropdown a:focus-visible {
    background: transparent;
    color: var(--orange-dark);
  }

  .header-actions .button {
    display: none;
  }

  .two-column,
  .form-wrap,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .card-grid.two,
  .micro-card-grid,
  .definition-grid,
  .steps,
  .proof-grid,
  .related-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .hero,
  .hero.compact {
    min-height: 600px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(29, 27, 28, 0.9) 0%, rgba(29, 27, 28, 0.82) 62%, rgba(29, 27, 28, 0.72) 100%);
  }

  .hero::after {
    left: 28px;
    height: 96px;
  }

  .hero-inner {
    padding: 126px 20px 54px;
  }

  .page-section,
  .cta-band,
  .article-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-section.grid-surface {
    background-size: 56px 56px;
  }

  .card-grid,
  .card-grid.two,
  .micro-card-grid,
  .fit-grid,
  .definition-grid,
  .steps,
  .proof-grid,
  .related-list,
  .field-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .brand img {
    width: 178px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
  }

  .cta-inner {
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
