:root {
  color-scheme: dark;
  --ink: #070b12;
  --navy: #0b1220;
  --panel: #101827;
  --panel-soft: #141d2d;
  --gold: #c89b3c;
  --gold-soft: #d7b15a;
  --gold-pale: #f0d68a;
  --paper: #f7f4ed;
  --text: #f7f4ed;
  --muted: #a7aab0;
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(240, 214, 138, 0.28);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --glow: 0 18px 54px rgba(200, 155, 60, 0.18);
  --radius: 8px;
  --container: 1180px;
  --color-navy: var(--navy);
  --color-navy-soft: var(--panel-soft);
  --color-gold: var(--gold);
  --color-gold-soft: var(--gold-pale);
  --color-bg: var(--ink);
  --color-surface: var(--panel);
  --color-text: var(--text);
  --color-muted: var(--muted);
  --color-border: var(--border);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  font-family: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(200, 155, 60, 0.14), transparent 32rem),
    linear-gradient(180deg, #070b12 0%, #0b1220 38%, #070b12 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(240, 214, 138, 0.8);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--gold-pale);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 850px;
}

.section {
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 11, 18, 0.86);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  gap: 28px;
}

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

.brand-logo {
  width: 212px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(247, 244, 237, 0.78);
  font-size: 0.92rem;
  font-weight: 750;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold-pale);
  background: rgba(255, 255, 255, 0.07);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--gold-pale);
}

.hero {
  position: relative;
  min-height: calc(100vh - 112px);
  padding: 104px 0 86px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 30%, rgba(200, 155, 60, 0.12), transparent 26rem),
    linear-gradient(90deg, rgba(7, 11, 18, 0.98) 0%, rgba(7, 11, 18, 0.9) 48%, rgba(7, 11, 18, 0.72) 100%),
    linear-gradient(180deg, transparent 66%, #070b12 100%);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(7, 11, 18, 0.88));
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  align-items: center;
  gap: 54px;
}

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

.hero h1 {
  margin: 0;
  max-width: 760px;
  color: var(--text);
  font-size: clamp(2.25rem, 4vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.page-hero h1 {
  margin: 0;
  max-width: 820px;
  color: var(--text);
  font-size: clamp(2rem, 3.25vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-subhead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(247, 244, 237, 0.78);
  font-size: 1.16rem;
}

.page-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(247, 244, 237, 0.78);
  font-size: 1.08rem;
}

.service-line {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(240, 214, 138, 0.82);
  font-size: 0.98rem;
  font-weight: 760;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.btn:hover {
  transform: translateY(-1px);
}

.button-primary,
.btn-primary {
  color: #0b1220;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold));
  box-shadow: var(--glow);
}

.button-primary:hover,
.btn-primary:hover {
  background: linear-gradient(135deg, #ffe49c, #d7a849);
}

.button-secondary,
.btn-secondary {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border);
}

.button-secondary:hover,
.btn-secondary:hover {
  color: var(--gold-pale);
  border-color: var(--border-strong);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.btn-link {
  min-height: auto;
  padding: 0;
  color: var(--gold-pale);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.trust-line {
  margin: 24px 0 0;
  color: rgba(247, 244, 237, 0.68);
  font-weight: 750;
}

.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-trust-list span,
.project-list span,
.outcome-list span,
.reassurance-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  color: rgba(247, 244, 237, 0.88);
  border: 1px solid rgba(240, 214, 138, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-media {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(240, 214, 138, 0.18);
  border-radius: var(--radius);
  aspect-ratio: 3 / 2;
  background: rgba(7, 11, 18, 0.72);
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 11, 18, 0.12), transparent 38%),
    linear-gradient(180deg, transparent 62%, rgba(7, 11, 18, 0.54));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  pointer-events: none;
}

.trust-bar {
  border-block: 1px solid var(--border);
  background: rgba(16, 24, 39, 0.94);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}

.trust-items span {
  padding: 22px 16px;
  color: rgba(247, 244, 237, 0.9);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.credibility-strip {
  padding: 74px 0;
  background:
    radial-gradient(circle at top right, rgba(200, 155, 60, 0.12), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018)),
    #080d17;
  border-bottom: 1px solid var(--border);
}

.credibility-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 44px;
  align-items: start;
}

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

.credibility-points article {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.credibility-points h3 {
  margin-bottom: 8px;
}

.credibility-points p {
  margin: 0;
}

.split,
.about-preview,
.contact-grid,
.cta-inner,
.audience-grid,
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.9rem, 4vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.surface-copy {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.surface-copy p:first-child {
  margin-top: 0;
}

.surface-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.section-intro {
  max-width: 760px;
  margin: -18px 0 34px;
  color: rgba(247, 244, 237, 0.74);
  font-size: 1.02rem;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

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

.card {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto auto;
  gap: 14px;
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(20, 29, 45, 0.96), rgba(11, 18, 32, 0.96));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.audience-card,
.offer-card,
.detail-aside,
.detail-section {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(20, 29, 45, 0.96), rgba(11, 18, 32, 0.96));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.audience-card {
  display: grid;
  gap: 14px;
  align-self: stretch;
}

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

.offer-card {
  display: grid;
  gap: 14px;
  align-content: start;
}

.offer-card p {
  margin: 0;
}

.offer-suggestion {
  color: rgba(240, 214, 138, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

.audience-card p,
.detail-section p {
  margin: 0;
}

.mini-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(247, 244, 237, 0.78);
  font-weight: 720;
}

.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
}

.card:hover {
  border-color: rgba(240, 214, 138, 0.24);
}

.card-media {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(240, 214, 138, 0.16);
  border-radius: 8px;
  background: rgba(7, 11, 18, 0.72);
}

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

.card p {
  margin: 0;
}

.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-list span {
  min-height: 28px;
  padding: 5px 8px;
  color: rgba(247, 244, 237, 0.74);
  font-size: 0.76rem;
}

.outcome-list {
  display: grid;
  gap: 8px;
}

.outcome-list span {
  justify-content: flex-start;
  min-height: 30px;
  width: fit-content;
  color: rgba(240, 214, 138, 0.9);
  background: rgba(200, 155, 60, 0.1);
}

.pathway-outcome {
  margin: 0;
  color: rgba(240, 214, 138, 0.82);
  font-size: 0.95rem;
  font-weight: 750;
}

.text-link {
  align-self: end;
  color: var(--gold-pale);
  font-weight: 850;
}

.text-link::after {
  content: " >";
  color: var(--gold);
}

.tinted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02)),
    var(--navy);
}

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

.feature-list div,
.process-step {
  padding: 22px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.055);
}

.feature-list p,
.process-step p {
  margin-bottom: 0;
}

.support-line {
  color: rgba(247, 244, 237, 0.72);
  font-size: 0.91rem;
}

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

.process-step span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold-pale);
  font-weight: 900;
}

.solutions {
  background:
    linear-gradient(135deg, rgba(200, 155, 60, 0.14), rgba(7, 11, 18, 0.12)),
    #0a101c;
}

.solutions h2,
.solutions .eyebrow {
  color: var(--paper);
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.solution-tags a {
  padding: 12px 14px;
  color: var(--paper);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
}

.solution-tags a:hover {
  color: var(--gold-pale);
  border-color: var(--border-strong);
}

.logo-panel {
  display: grid;
  place-items: center;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #080b10;
  box-shadow: var(--shadow);
}

.logo-panel img {
  width: min(92%, 620px);
  margin-inline: auto;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--gold-pale);
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.cta-band {
  background:
    linear-gradient(110deg, rgba(7, 11, 18, 0.96), rgba(16, 24, 39, 0.94)),
    var(--navy);
  border-block: 1px solid var(--border);
}

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

.cta-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.cta-band h2,
.cta-band .eyebrow {
  color: var(--paper);
}

.cta-band p {
  margin-bottom: 0;
}

.page-hero {
  background:
    radial-gradient(circle at top right, rgba(200, 155, 60, 0.16), transparent 32rem),
    linear-gradient(180deg, #0b1220 0%, #070b12 100%);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: rgba(247, 244, 237, 0.78);
  font-weight: 750;
}

.check-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.service-detail {
  background:
    radial-gradient(circle at top left, rgba(200, 155, 60, 0.1), transparent 30rem),
    #070b12;
}

.detail-main {
  display: grid;
  gap: 18px;
}

.detail-section h2,
.detail-aside h2 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.detail-aside {
  position: sticky;
  top: 132px;
  display: grid;
  gap: 18px;
}

.next-step-panel,
.fit-panel {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.next-step-panel h3,
.fit-panel h3 {
  margin-bottom: 14px;
}

.next-step-panel ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
}

.next-step-panel li {
  color: rgba(247, 244, 237, 0.76);
}

.next-step-panel strong,
.next-step-panel span {
  display: block;
}

.next-step-panel strong {
  color: var(--paper);
}

.fit-panel p {
  margin: 0;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(20, 29, 45, 0.98), rgba(11, 18, 32, 0.98));
  box-shadow: var(--shadow);
}

.reassurance-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.inline-link {
  color: var(--gold-pale);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(240, 214, 138, 0.55);
  text-underline-offset: 3px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.form-field,
.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label {
  color: var(--paper);
  font-weight: 800;
}

.optional-label {
  color: var(--muted);
  font-weight: 650;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--paper);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(7, 11, 18, 0.72);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(247, 244, 237, 0.42);
}

.contact-form textarea {
  resize: vertical;
}

.field-help {
  align-self: start;
  margin: -6px 0 0;
  color: rgba(247, 244, 237, 0.66);
  font-size: 0.88rem;
}

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

.muted,
.form-note {
  color: var(--muted);
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
}

.bot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-wrap {
  min-height: 65px;
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  color: var(--paper);
  border: 1px solid rgba(240, 214, 138, 0.45);
  border-radius: 8px;
  background: rgba(200, 155, 60, 0.14);
  font-weight: 750;
}

.form-status[data-tone="success"] {
  color: #dcfce7;
  border-color: rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.12);
}

.form-status[data-tone="error"] {
  color: #fee2e2;
  border-color: rgba(239, 68, 68, 0.42);
  background: rgba(239, 68, 68, 0.12);
}

.privacy-card {
  min-height: auto;
}

.privacy-card h2 {
  font-size: 1.15rem;
}

.site-footer {
  color: rgba(247, 244, 237, 0.78);
  background: #05070c;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding: 54px 0 34px;
}

.site-footer p,
.site-footer a {
  color: rgba(247, 244, 237, 0.72);
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

.site-footer a:hover {
  color: var(--gold-pale);
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-logo {
  width: 260px;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--paper);
  font-size: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(247, 244, 237, 0.58);
  font-size: 0.92rem;
}

.footer-bottom a {
  display: inline;
  margin: 0;
  color: var(--gold-pale);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(240, 214, 138, 0.42);
  text-underline-offset: 3px;
}

@media (max-width: 1024px) {
  .hero-grid,
  .credibility-grid,
  .split,
  .about-preview,
  .contact-grid,
  .cta-inner,
  .audience-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 78px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(7, 11, 18, 0.96), rgba(7, 11, 18, 0.64)),
      linear-gradient(180deg, transparent 68%, #070b12 100%),
      url("/assets/brand/NITS_website_hero_lakewood.jpg") center right / cover no-repeat;
  }

  .hero-media {
    min-height: auto;
    border-color: var(--border);
  }

  .hero-media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 2;
    pointer-events: auto;
  }

  .card-grid,
  .offer-grid,
  .feature-list,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .credibility-points {
    grid-template-columns: 1fr;
  }

  .detail-aside {
    position: static;
  }
}

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

  .site-nav {
    position: absolute;
    inset: 112px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(7, 11, 18, 0.98);
    box-shadow: var(--shadow);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .section {
    padding: 70px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 88px;
  }

  .brand-logo {
    width: 164px;
  }

  .site-nav {
    inset: 88px 14px auto 14px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(7, 11, 18, 0.9), rgba(7, 11, 18, 0.98) 64%),
      url("/assets/brand/NITS_website_hero_lakewood.jpg") center top / auto 46% no-repeat;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.28rem;
  }

  .hero-subhead,
  .page-hero p {
    font-size: 1rem;
  }

  .button-row,
  .button-row > .button {
    width: 100%;
  }

  .hero-trust-list span,
  .reassurance-list span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .cta-actions {
    justify-content: stretch;
  }

  .card-grid,
  .feature-list,
  .process-grid,
  .offer-grid,
  .trust-items,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .trust-items span {
    text-align: left;
  }

  .surface-copy,
  .card,
  .contact-form,
  .audience-card,
  .detail-aside,
  .detail-section {
    padding: 20px;
  }

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

@media (max-width: 380px) {
  .brand-logo {
    width: 148px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
