:root {
  --ink: #1f2428;
  --muted: #667077;
  --teal: #515b62;
  --teal-dark: #2d3338;
  --aqua: #8b949b;
  --gold: #d7dce0;
  --rust: #5f686f;
  --sage: #f0f2f3;
  --sky: #f5f6f7;
  --paper: #f7f8f9;
  --panel: #ffffff;
  --line: #dfe3e6;
  --shadow: 0 18px 44px rgba(31, 36, 40, 0.1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
}

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

a {
  color: inherit;
}

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

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

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: 64px;
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-size: 38px;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 800;
}

p {
  margin-bottom: 18px;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 20px;
  top: 12px;
  z-index: 30;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--teal-dark);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

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

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 146px;
  min-width: 146px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 146px;
  height: auto;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-nav a,
.footer-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: var(--sky);
  color: var(--teal-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

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

.hero {
  position: relative;
  height: min(560px, calc(100svh - 180px));
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--teal-dark);
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero-home .hero-media img {
  left: auto;
  right: 7vw;
  top: auto;
  bottom: 0;
  width: min(48vw, 540px);
  height: calc(100% - 28px);
  object-fit: contain;
  object-position: right bottom;
  opacity: 0.92;
}

.hero-about .hero-media img {
  object-position: center 42%;
}

.hero-services .hero-media img {
  object-position: center center;
}

.hero-contact .hero-media img {
  object-position: center 46%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(31, 36, 40, 0.94), rgba(61, 68, 73, 0.74) 54%, rgba(61, 68, 73, 0.2)),
    linear-gradient(0deg, rgba(31, 36, 40, 0.2), rgba(31, 36, 40, 0.2));
}

.hero-home .hero-overlay {
  background:
    linear-gradient(90deg, rgba(31, 36, 40, 0.96), rgba(58, 64, 69, 0.88) 58%, rgba(76, 84, 90, 0.52)),
    linear-gradient(0deg, rgba(31, 36, 40, 0.16), rgba(31, 36, 40, 0.16));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 78px 0 86px;
  color: #ffffff;
}

.hero-lede {
  max-width: 730px;
  margin-bottom: 30px;
  font-size: 22px;
  line-height: 1.5;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--rust);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-dark .eyebrow {
  color: #e7eaed;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
}

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

.button-primary:hover {
  background: #e9ecef;
  border-color: #e9ecef;
}

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

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

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--teal);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.section {
  padding: 88px 0;
  background: var(--panel);
}

.section-intro {
  padding-top: 76px;
}

.section-muted {
  background: var(--paper);
}

.section-sage {
  background: var(--sage);
}

.section-dark {
  background: var(--teal-dark);
  color: #ffffff;
}

.split,
.two-column,
.profile-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 62px;
  align-items: start;
}

.profile-grid {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
}

.contact-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.prose {
  max-width: 730px;
  color: var(--muted);
}

.prose strong {
  color: var(--ink);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.trust-strip div {
  min-height: 120px;
  padding: 26px;
  background: #ffffff;
}

.trust-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 15px;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 36px;
}

.section-heading p {
  color: var(--muted);
}

.process-grid,
.service-grid,
.audience-grid,
.faq-grid,
.principle-grid,
.topic-grid,
.contact-card-grid {
  display: grid;
  gap: 18px;
}

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

.service-grid-wide,
.audience-grid,
.faq-grid,
.principle-grid,
.topic-grid,
.contact-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.process-step,
.audience-card,
.contact-card,
.principle-card,
.topic-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.card,
.process-step,
.audience-card,
.contact-card,
.principle-card,
.topic-card {
  padding: 26px;
}

.process-step {
  min-height: 250px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--teal-dark);
  font-weight: 900;
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center center;
}

.service-card img.image-bottom {
  object-position: center 72%;
}

.service-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.service-card h3 {
  min-height: 46px;
}

.service-card p,
.audience-card p,
.process-step p,
.contact-card p,
.principle-card p,
.topic-card p,
.faq-item p,
.card p {
  color: var(--muted);
  font-size: 16px;
}

.media-copy {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 46px;
  align-items: center;
}

.media-frame,
.profile-photo {
  overflow: hidden;
  border-radius: 8px;
  background: var(--sky);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.profile-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.profile-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 24px;
}

.profile-contact a,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

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

.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 16px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aqua);
}

.contact-card address {
  color: var(--muted);
  font-style: normal;
}

.map-link {
  margin-top: 14px;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 20px 24px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.faq-item p {
  padding: 0 24px 24px;
}

.callout-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.callout-row > div {
  max-width: 760px;
}

.section-dark p {
  color: #e3e6e8;
}

.site-footer {
  padding: 48px 0 42px;
  background: #252a2e;
  color: #f2f4f5;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand {
  display: inline-block;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

.footer-grid p {
  max-width: 650px;
  color: #d5dadd;
  font-size: 15px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.footer-nav a {
  color: #f2f4f5;
}

.footer-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.disclosure {
  padding-top: 28px;
  color: #d5dadd;
  font-size: 12px;
  line-height: 1.55;
}

.disclosure p {
  margin-bottom: 12px;
}

.disclosure a {
  color: #ffffff;
}

@media (max-width: 980px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 34px;
  }

  .split,
  .two-column,
  .profile-grid,
  .contact-grid,
  .media-copy,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .process-grid,
  .service-grid,
  .service-grid-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-home .hero-media img {
    right: 1vw;
    width: min(56vw, 480px);
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(1140px, calc(100% - 28px));
  }

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

  .brand {
    width: 104px;
    min-width: 104px;
  }

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

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    justify-content: center;
  }

  .hero {
    height: min(520px, calc(100svh - 150px));
    min-height: 430px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(31, 36, 40, 0.94), rgba(61, 68, 73, 0.82)),
      linear-gradient(0deg, rgba(31, 36, 40, 0.24), rgba(31, 36, 40, 0.24));
  }

  .hero-content {
    padding: 44px 0 48px;
  }

  .hero-home .hero-media img {
    right: 0;
    width: 100%;
    height: 100%;
    object-position: 72% bottom;
    opacity: 0.24;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-lede {
    font-size: 19px;
  }

  .section {
    padding: 62px 0;
  }

  .trust-strip,
  .process-grid,
  .service-grid,
  .service-grid-wide,
  .audience-grid,
  .faq-grid,
  .principle-grid,
  .topic-grid,
  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .process-step,
  .audience-card,
  .contact-card,
  .principle-card,
  .topic-card {
    padding: 24px;
  }

  .service-card-content {
    padding: 24px;
  }

  .service-card img {
    height: 218px;
  }

  .service-card h3 {
    min-height: 0;
  }

  .media-frame img {
    min-height: 300px;
  }

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

@media (max-width: 430px) {
  .container {
    width: min(1140px, calc(100% - 24px));
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .button,
  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .profile-contact a,
  .pill {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}
