:root {
  --ink: #152422;
  --ink-soft: #31413e;
  --surface: #f7fbf8;
  --surface-strong: #ffffff;
  --teal: #075e58;
  --teal-dark: #073d3a;
  --gold: #b98219;
  --line: #cbd8d5;
  --focus: #f4c542;
  --shadow: 0 24px 70px rgba(12, 44, 41, 0.18);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.6;
}

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

a {
  color: var(--teal);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--teal-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 16ch;
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: clamp(2.35rem, 5.1vw, 4.05rem);
}

.section-page-title {
  max-width: 760px;
  color: var(--ink);
}

h2 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.2rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 5;
  padding: 0.75rem 1rem;
  background: #ffffff;
  color: var(--ink);
  border: 2px solid var(--ink);
  transform: translateY(-140%);
}

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

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  background: rgba(247, 251, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.75rem;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.35rem;
  flex: 0 0 auto;
}

.site-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(0.75rem, 2vw, 1.5rem);
}

.site-nav a {
  color: var(--ink);
  font-weight: 700;
  text-decoration-thickness: 0.08em;
}

.site-nav a[aria-current="page"] {
  color: var(--teal);
  text-decoration-thickness: 0.16em;
}

#top,
#services,
#credibility,
#resources,
#contact {
  scroll-margin-top: 88px;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: calc(100svh - 72px);
  padding: clamp(2rem, 6vw, 5rem);
  overflow: hidden;
  background: var(--teal-dark);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 30, 28, 0.94) 0%, rgba(4, 30, 28, 0.82) 38%, rgba(4, 30, 28, 0.36) 72%),
    linear-gradient(180deg, rgba(4, 30, 28, 0.18), rgba(4, 30, 28, 0.82));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/images/media-accessibility-video-player.png");
  background-position: center right;
  background-size: cover;
}

.hero-content {
  width: min(900px, 100%);
  padding-top: 6vh;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 1.7rem;
  color: #eef8f5;
  font-size: clamp(1.08rem, 1.7vw, 1.24rem);
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f5c35b;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.05rem;
  border: 2px solid transparent;
  border-radius: 0.35rem;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--gold);
  color: #16140d;
}

.button-primary:hover {
  background: #d49a28;
  color: #16140d;
}

.button-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.8);
}

.button-secondary:hover {
  background: #ffffff;
  color: var(--teal-dark);
}

.section {
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
}

.page-hero {
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 4vw, 3rem);
  background:
    linear-gradient(90deg, rgba(4, 30, 28, 0.96), rgba(4, 30, 28, 0.82)),
    url("assets/images/media-accessibility-video-player.png") center right / cover;
  color: #ffffff;
}

.page-hero > * {
  width: min(960px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.page-hero h1 {
  max-width: 13ch;
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  color: #eef8f5;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}

.section-grid,
.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 5rem);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-heading {
  width: min(1180px, 100%);
  margin: 0 auto 2rem;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
}

.intro {
  background: var(--surface-strong);
}

.lede {
  color: var(--ink-soft);
  font-size: 1.2rem;
}

.service-list,
.package-list,
.resource-list {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 1rem;
}

.service-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-item,
.package,
.resource-card {
  min-height: 100%;
  padding: 1.25rem;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
}

.service-item {
  border-top: 5px solid var(--teal);
}

.service-item p,
.package p,
.resource-card p,
.proof-list {
  color: var(--ink-soft);
}

.credibility {
  background: #e9f1ee;
}

.proof-list ul {
  display: grid;
  gap: 0.6rem;
  padding-left: 1.25rem;
}

.packages {
  background: var(--surface-strong);
}

.package-list,
.resource-list,
.testimonial-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package {
  box-shadow: 0 8px 30px rgba(12, 44, 41, 0.08);
}

.resources {
  background: var(--surface);
}

.testimonials {
  background: var(--surface-strong);
}

.testimonial-list {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 1rem;
}

.testimonial {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 1.5rem;
  background: #e9f1ee;
  border-left: 5px solid var(--teal);
  border-radius: 0.5rem;
}

.testimonial blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.5;
}

.testimonial figcaption {
  color: var(--ink-soft);
  font-weight: 800;
}

.resource-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.resource-type {
  align-self: flex-start;
  padding: 0.2rem 0.55rem;
  background: #e4f1ef;
  color: var(--teal-dark);
  border-radius: 0.25rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.resource-card a {
  margin-top: auto;
  font-weight: 850;
}

.article-page {
  width: min(860px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}

.article-page h1 {
  max-width: 900px;
  color: var(--ink);
}

.article-page h2,
.article-page h3 {
  max-width: 760px;
  margin-top: 2rem;
}

.article-content {
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.article-content ul {
  padding-left: 1.25rem;
}

.article-date {
  color: var(--ink-soft);
  font-weight: 800;
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  background: #0f1c1a;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.muted {
  color: var(--ink-soft);
}

.contact {
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
  background: var(--teal-dark);
  color: #ffffff;
}

.contact h2 {
  max-width: 11ch;
  color: #ffffff;
}

.contact p:not(.eyebrow) {
  max-width: 620px;
  color: #edf7f5;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
  background: #ffffff;
  color: var(--ink);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 0.35rem;
}

label {
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  padding: 0.82rem 0.9rem;
  color: var(--ink);
  background: #ffffff;
  border: 2px solid #92a7a2;
  border-radius: 0.35rem;
  font: inherit;
}

textarea {
  resize: vertical;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.service-cta .contact-inner {
  grid-template-columns: 1fr;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem clamp(1rem, 4vw, 3rem);
  background: #0f1c1a;
  color: #ffffff;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #ffffff;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-list,
  .resource-list,
  .testimonial-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: calc(100svh - 130px);
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(4, 30, 28, 0.94), rgba(4, 30, 28, 0.82)),
      linear-gradient(180deg, rgba(4, 30, 28, 0.4), rgba(4, 30, 28, 0.9));
  }

  .hero-media {
    background-position: center;
  }

  .section-grid,
  .contact-inner,
  .service-list,
  .package-list,
  .resource-list,
  .testimonial-list {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 10ch;
  }

  h2,
  .contact h2 {
    max-width: 100%;
  }

  #top,
  #services,
  #credibility,
  #resources,
  #contact {
    scroll-margin-top: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
