@charset "UTF-8";
/* =========================
   VARIABLES
========================= */
/* =========================
   RESET
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

ul,
ol {
  padding: 0;
  list-style: none;
}

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

button,
input,
textarea {
  font: inherit;
}

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

/* =========================
   BASE
========================= */
body {
  font-family: Inter, Arial, sans-serif;
  background: #fffffc;
  color: #000000;
  line-height: 1.6;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}
.section--alt {
  background: #fffdf7;
}
.section--accent {
  background: linear-gradient(
    135deg,
    rgba(216, 153, 38, 0.12),
    rgba(221, 166, 64, 0.18)
  );
  border-top: 1px solid #e9dfc9;
  border-bottom: 1px solid #e9dfc9;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 2000;
  background: #d89926;
  color: #000000;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
}

/* =========================
   TYPOGRAPHY
========================= */
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d89926;
  margin-bottom: 0.75rem;
}

.section-heading {
  margin-bottom: 2rem;
}
.section-heading h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.15;
}

/* =========================
   HEADER / NAVBAR
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #000000;
  color: #fffffc;
  border-bottom: 2px solid #d89926;
}

.site-header .container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header__top {
  width: 100%;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  display: block;
  width: auto;
  height: auto;
  max-height: 60px;
}

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: inline-block;
  color: #fffffc;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 2px;
  background: #d89926;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"],
.site-nav a.active {
  color: #fffffc;
  opacity: 0.78;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 0.25rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fffffc;
  transition: all 0.3s ease;
}

/* =========================
   HERO
========================= */
.hero {
  padding: 6rem 0;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.hero__repeat {
  color: #4a4a4a;
  margin-bottom: 0.75rem;
}

.hero__tagline {
  color: #d89926;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero__lead {
  color: #4a4a4a;
  max-width: 760px;
  margin-bottom: 2rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hero__meta span {
  border: 1px solid #e9dfc9;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  background: #fff;
}

.hero__meta--inline {
  margin-bottom: 1rem;
  color: #000000;
  font-weight: 600;
}

.hero__actions {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__image {
  margin-top: 2rem;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero--split {
  padding: 4.5rem 0 5.5rem;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-split__content {
  display: flex;
  flex-direction: column;
}

.hero-brand-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hero-brand-card__logo {
  background: linear-gradient(180deg, #d89926, #dda640);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.hero-brand-card__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  background: #000;
}

.hero-brand-card__text h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.hero-split__image-frame {
  height: 100%;
  min-height: 460px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  background: #111;
}

.hero-split__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-brand-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-brand-card__logo {
    max-width: 240px;
  }

  .hero-split__image-frame {
    min-height: 300px;
  }
}
@media (max-width: 640px) {
  .hero--split {
    padding: 4rem 0 4.5rem;
  }

  .hero-brand-card__text h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
}
/* =========================
   BUTTONS
========================= */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
  background: #d89926;
  color: #000000;
}
.button:hover,
.button:focus-visible {
  background: #dda640;
  transform: translateY(-1px);
}

.button--secondary {
  background: transparent;
  border: 1px solid #d89926;
  color: #d89926;
}
.button--secondary:hover,
.button--secondary:focus-visible {
  background: rgba(216, 153, 38, 0.08);
  color: #d89926;
}

/* =========================
   CARDS
========================= */
.cards-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  border: 1px solid #e9dfc9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  background: #ffffff;
}
.service-card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}
.service-card h3 {
  padding: 1rem 1rem 0.5rem;
  line-height: 1.3;
}
.service-card p {
  padding: 0 1rem 1.2rem;
  color: #4a4a4a;
}

/* =========================
   MISSION / APPROACH
========================= */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.split-layout > article {
  max-width: 520px;
}
.split-layout > article h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.15;
}
.split-layout > article p {
  color: #4a4a4a;
}
.split-layout > article p + p {
  margin-top: 1rem;
}
.split-layout > article a {
  color: #d89926;
  font-weight: 700;
}

/* =========================
   SUPPORT LIST
========================= */
.support-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.support-list li {
  background: #ffffff;
  padding: 1rem;
  border-left: 4px solid #d89926;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* =========================
   CONSULTATION
========================= */
.consultation {
  text-align: center;
  max-width: 780px;
}

.consultation h2 {
  margin-bottom: 1rem;
}

.consultation p {
  color: #4a4a4a;
  margin-bottom: 1.25rem;
}

.consultation .eyebrow {
  color: #d89926;
}

/* =========================
   CONTACT
========================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
  justify-content: center;
}

.contact-grid > section,
.contact-grid > aside {
  max-width: 500px;
  width: 100%;
  align-self: start;
}

.contact-form {
  margin-top: 0.75rem;
}

.form-group {
  margin-bottom: 0.65rem;
}
.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border: 1px solid #e9dfc9;
  border-radius: 8px;
  background: #fffffc;
  color: #000000;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d89926;
  box-shadow: 0 0 0 4px rgba(216, 153, 38, 0.12);
}

textarea {
  min-height: 110px;
}

.form-note {
  color: #4a4a4a;
  font-size: 0.85rem;
  line-height: 1.45;
  margin-top: 0.75rem;
}
.form-note a {
  color: #d89926;
  font-weight: 600;
}

.contact-grid aside > p {
  margin-bottom: 0.35rem;
  color: #4a4a4a;
  line-height: 1.3;
}

.contact-grid aside > section + section {
  margin-top: 0.55rem;
}

.contact-grid aside h3 {
  color: #d89926;
  margin-bottom: 0.15rem;
  line-height: 1.2;
}

.contact-grid aside p,
.contact-grid aside address {
  color: #4a4a4a;
  font-style: normal;
  line-height: 1.3;
}

/* =========================
   HOURS
========================= */
.hours-status {
  margin-bottom: 0.6rem;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.35;
  background: rgba(216, 153, 38, 0.1);
  color: #000000;
}
.hours-status.is-open {
  background: rgba(216, 153, 38, 0.14);
  border: 1px solid rgba(216, 153, 38, 0.3);
}
.hours-status.is-closed {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.hours-list {
  display: grid;
  gap: 0.05rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.22rem 0;
  border-bottom: 1px solid #e9dfc9;
  color: #4a4a4a;
  font-size: 0.86rem;
  line-height: 1.2;
}
.hours-list li span:first-child {
  font-weight: 700;
  color: #000000;
}
.hours-list li span:last-child {
  text-align: right;
  white-space: nowrap;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #000000;
  color: #fffffc;
  padding: 3rem 0 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #d89926;
  z-index: 2;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    circle at center,
    rgba(216, 153, 38, 0.08),
    transparent 70%
  );
  pointer-events: none;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.logo--footer img {
  display: block;
  margin: 0 auto;
  max-height: 85px;
  filter: brightness(1.05) contrast(1.05);
}

.site-footer p,
.site-footer a {
  color: #fffffc;
}

.site-footer p {
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  opacity: 0.85;
}

/* =========================
   SERVICES PAGE
========================= */
.services-hero {
  padding-bottom: 2rem;
}
.services-hero h1 {
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  margin-bottom: 0.75rem;
}

.services-lead {
  max-width: 760px;
  color: #4a4a4a;
  font-size: 1.05rem;
  line-height: 1.6;
}

.services-stack {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.service-block {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1.5rem;
  align-items: start;
  border-top: 1px solid #e9dfc9;
  padding-top: 2rem;
}
.service-block:first-child {
  border-top: none;
  padding-top: 0;
}
.service-block h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.service-block h3 {
  margin-top: 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d89926;
}
.service-block p {
  color: #4a4a4a;
  line-height: 1.6;
}
.service-block ul {
  margin-top: 0.5rem;
  padding-left: 1rem;
}
.service-block ul li {
  margin-bottom: 0.4rem;
  color: #4a4a4a;
  line-height: 1.5;
  position: relative;
}
.service-block ul li::before {
  content: "•";
  color: #d89926;
  position: absolute;
  left: -1rem;
}

.service-block__content {
  max-width: 720px;
}

.service-block__image {
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.service-block__image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.service-number {
  font-weight: 800;
  font-size: 1rem;
  color: #d89926;
  margin-bottom: 0.5rem;
}

.naics {
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: #4a4a4a;
}

.compliance {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.compliance h2 {
  margin-bottom: 0.75rem;
  max-width: 720px;
}
.compliance p {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

.compliance-repeat {
  margin-top: 1rem;
  font-weight: 700;
  color: #d89926;
  font-size: 0.95rem;
}

.section-intro {
  max-width: 820px;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.services-alt-stack {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.service-row--image-right .service-row__media {
  order: 2;
}

.service-row--image-right .service-row__content {
  order: 1;
}

.service-row__media {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.service-row__media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.service-row__content {
  max-width: 520px;
}

.service-row__content h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.service-row__content h3 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d89926;
}

.service-row__content p {
  color: #4a4a4a;
  line-height: 1.6;
}

.service-row__content ul {
  margin-top: 0.25rem;
  padding-left: 1rem;
}

.service-row__content ul li {
  position: relative;
  margin-bottom: 0.4rem;
  color: #4a4a4a;
  line-height: 1.5;
}

.service-row__content ul li::before {
  content: "•";
  color: #d89926;
  position: absolute;
  left: -1rem;
}

.partnership-list {
  margin-top: 1rem;
  padding-left: 1rem;
}
.partnership-list li {
  position: relative;
  margin-bottom: 0.6rem;
  color: #4a4a4a;
  line-height: 1.55;
}
.partnership-list li::before {
  content: "•";
  color: #d89926;
  position: absolute;
  left: -1rem;
}

.partnership-cards {
  margin-top: 1.5rem;
}

.partnership-note {
  margin-top: 1.5rem;
  color: #4a4a4a;
  font-weight: 600;
}

.subsection-title {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: #d89926;
}

/* =========================
   CORE COMPETENCIES PAGE
========================= */
.competencies-hero {
  padding-bottom: 2rem;
}
.competencies-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.3rem);
  margin-bottom: 0.75rem;
}

.competencies-lead {
  max-width: 760px;
  color: #4a4a4a;
  line-height: 1.6;
}

.competencies-flow {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.competency-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1.5rem;
  align-items: start;
  border-top: 1px solid #e9dfc9;
  padding-top: 2rem;
}
.competency-item:first-of-type {
  border-top: none;
  padding-top: 0;
}
.competency-item h2 {
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.competency-item h3 {
  margin-top: 1rem;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d89926;
}
.competency-item section > p {
  color: #4a4a4a;
  line-height: 1.6;
}

.competency-number {
  font-weight: 800;
  font-size: 1.1rem;
  color: #d89926;
  padding-top: 0.2rem;
}

.competency-list {
  margin-top: 0.25rem;
  padding-left: 1rem;
}
.competency-list li {
  position: relative;
  margin-bottom: 0.4rem;
  color: #4a4a4a;
  line-height: 1.5;
}
.competency-list li::before {
  content: "•";
  color: #d89926;
  position: absolute;
  left: -1rem;
}

.competency-naics {
  margin-top: 1rem;
  font-weight: 600;
  color: #4a4a4a;
}

.capability-statement {
  text-align: center;
}
.capability-statement h2 {
  margin-bottom: 0.75rem;
}
.capability-statement p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: #4a4a4a;
  line-height: 1.6;
}

.capability-link-label {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #000000 !important;
}

/* =========================
   OUR FOUNDATION PAGE
========================= */
.foundation-hero__grid,
.foundation-two-col,
.foundation-feature__body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.foundation-two-col--reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.foundation-hero__lead,
.foundation-centered-lead,
.foundation-section p,
.foundation-feature__body p,
.quality-grid p {
  color: #4a4a4a;
  line-height: 1.6;
}

.foundation-hero__lead {
  max-width: 760px;
}

.foundation-hero__image,
.foundation-side-image,
.foundation-feature__image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.foundation-hero__image img,
.foundation-side-image img,
.foundation-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.foundation-hero__image img {
  min-height: 420px;
}

.foundation-side-image img,
.foundation-feature__image img {
  min-height: 360px;
}

.foundation-list {
  margin-top: 0.75rem;
  padding-left: 1rem;
}
.foundation-list li {
  position: relative;
  margin-bottom: 0.45rem;
  color: #4a4a4a;
  line-height: 1.5;
}
.foundation-list li::before {
  content: "•";
  color: #d89926;
  position: absolute;
  left: -1rem;
}

.foundation-feature__header {
  margin-bottom: 2rem;
}

.foundation-emphasis {
  margin-top: 1rem;
  font-weight: 700;
  color: #000000 !important;
}

.foundation-quote {
  font-size: 1.15rem;
  font-weight: 700;
  color: #d89926 !important;
}

.foundation-timeline {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.foundation-timeline__item {
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid #e9dfc9;
}
.foundation-timeline__item h2 {
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.foundation-callout {
  margin: 1rem 0;
  font-weight: 700;
  color: #000000 !important;
}

.foundation-centered-header {
  text-align: center;
}

.foundation-centered-lead {
  max-width: 820px;
  margin: 0 auto;
}

.foundation-centered-lead--narrow {
  max-width: 680px;
  margin-top: 1rem;
}

.pdca-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.pdca-step {
  padding: 1.5rem 1rem;
  border-top: 3px solid #d89926;
  background: rgba(255, 255, 255, 0.55);
}
.pdca-step h3 {
  margin-bottom: 0.5rem;
}
.pdca-step p {
  color: #4a4a4a;
  line-height: 1.55;
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.quality-grid h3 {
  margin-bottom: 0.75rem;
}
.quality-grid h4 {
  margin-top: 1rem;
  margin-bottom: 0.35rem;
  color: #d89926;
}

.quality-grid__wide {
  grid-column: 1 / -1;
}

.foundation-certification {
  font-size: 1.05rem;
  font-weight: 700;
  color: #000000 !important;
  margin-bottom: 1.25rem;
}

/* =========================
   LEGAL & QUALITY PAGE
========================= */
.legal-hero__content {
  max-width: 860px;
}

.legal-hero__lead {
  color: #4a4a4a;
  line-height: 1.6;
  max-width: 760px;
}

.legal-doc {
  max-width: 900px;
}

.legal-tagline,
.legal-meta,
.legal-callout {
  color: #4a4a4a;
  font-weight: 600;
  margin-bottom: 1rem;
}

.legal-doc > h2,
.legal-doc > p,
.legal-subsection {
  max-width: 860px;
}

.legal-doc h2 {
  margin-bottom: 0.75rem;
}

.legal-doc h3 {
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
  line-height: 1.3;
}

.legal-subsection h4 {
  margin-top: 1rem;
  margin-bottom: 0.35rem;
  color: #d89926;
  font-size: 0.98rem;
}

.legal-doc p,
.legal-subsection p {
  color: #4a4a4a;
  line-height: 1.7;
}

.legal-list {
  margin-top: 0.65rem;
  padding-left: 1rem;
}
.legal-list li {
  position: relative;
  margin-bottom: 0.55rem;
  color: #4a4a4a;
  line-height: 1.6;
}
.legal-list li::before {
  content: "•";
  color: #d89926;
  position: absolute;
  left: -1rem;
}

.legal-downloads {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 760px;
  margin: 2rem auto 0;
}

.legal-download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9dfc9;
}
.legal-download-item p {
  margin: 0;
}

/* =========================
   UTILITIES
========================= */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .cards-grid,
  .split-layout,
  .contact-grid,
  .support-list,
  .foundation-hero__grid,
  .foundation-two-col,
  .foundation-feature__body,
  .foundation-two-col--reverse,
  .quality-grid,
  .pdca-grid {
    grid-template-columns: 1fr;
  }

  .site-header__top {
    min-height: 80px;
    padding: 0.75rem 0;
    position: relative;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-left: 0;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.5rem 1.25rem;
  }
  .site-nav.is-open,
  .site-nav.open {
    max-height: 500px;
  }

  .site-nav a::after {
    transform-origin: left;
  }

  .hero__image {
    height: 320px;
  }

  .contact-grid {
    justify-items: center;
  }

  .contact-grid > section,
  .contact-grid > aside,
  .split-layout > article,
  .service-block__content,
  .service-row__content {
    max-width: 100%;
  }

  .service-block,
  .competency-item,
  .service-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-number,
  .competency-number {
    margin-bottom: 0.5rem;
  }

  .foundation-hero__image img,
  .foundation-side-image img,
  .foundation-feature__image img {
    min-height: 280px;
  }

  .service-row--image-right .service-row__media,
  .service-row--image-right .service-row__content {
    order: initial;
  }

  .service-row__media img {
    height: 280px;
  }
}
@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  .hero {
    padding: 5rem 0;
  }

  .hero__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hours-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .hours-list li span:last-child {
    text-align: left;
    white-space: normal;
  }

  .legal-download-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* MISSION IMAGE */
.mission-split {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.mission-split__content {
  max-width: 560px;
}

.mission-split__media {
  overflow: visible;
  display: block;
}

.mission-split__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  border: 3px solid #000000;
}

@media (max-width: 900px) {
  .mission-split {
    grid-template-columns: 1fr;
  }

  .mission-split__content {
    max-width: 100%;
  }

  .mission-split__media img {
    width: 100%;
    height: auto;
  }
}
.consultation .hero__actions {
  justify-content: center;
}

/*# sourceMappingURL=main.css.map */
