:root {
  --ink: #18303a;
  --muted: #5f727a;
  --paper: #f7fbfc;
  --white: #ffffff;
  --line: #d8e5e8;
  --teal: #1f7a83;
  --teal-dark: #11525b;
  --sky: #78b8e8;
  --coral: #cf6f5b;
  --mint: #dcefeb;
  --shadow: 0 18px 50px rgba(24, 48, 58, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(20px, 5vw, 70px);
  border-bottom: 1px solid rgba(216, 229, 232, 0.75);
  background: rgba(247, 251, 252, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  object-fit: cover;
  background: var(--white);
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: 1rem;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

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

.site-nav a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

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

.site-nav .nav-cta {
  min-height: 40px;
  border: 1px solid var(--teal);
  border-radius: 8px;
  color: var(--teal-dark);
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  min-height: calc(78vh - 76px);
  padding: clamp(30px, 5vw, 58px) clamp(20px, 6vw, 84px) clamp(20px, 3vw, 34px);
  background:
    linear-gradient(90deg, rgba(247, 251, 252, 0.96) 0%, rgba(247, 251, 252, 0.82) 58%, rgba(220, 239, 235, 0.9) 100%),
    var(--paper);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  max-width: 780px;
  font-size: clamp(3rem, 6vw, 5.55rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  color: #36515b;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  border: 1px solid var(--teal);
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(31, 122, 131, 0.2);
}

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

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 650px;
  margin: 30px 0 0;
}

.hero-facts div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero-facts dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 5px 0 0;
  font-size: 1.02rem;
  font-weight: 800;
}

.hero-media {
  align-self: stretch;
  margin: 0;
  min-height: 440px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.intro-band {
  padding: 0 clamp(20px, 6vw, 84px);
  background: var(--teal-dark);
  color: var(--white);
}

.intro-band div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  max-width: 1180px;
  margin: 0 auto;
}

.intro-band span {
  color: #bce4de;
  font-weight: 800;
}

.intro-band a {
  color: var(--white);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.section {
  padding: clamp(62px, 9vw, 120px) clamp(20px, 6vw, 84px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto 42px;
}

.section-heading.compact {
  display: block;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.profile-grid {
  display: grid;
  grid-template-columns: 0.46fr 0.74fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.profile-grid.profile-text-only {
  grid-template-columns: minmax(0, 1fr);
}

.profile-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.profile-image img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-copy {
  color: #36515b;
  font-size: 1.04rem;
}

.profile-text-only .profile-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px clamp(28px, 4vw, 54px);
  max-width: 980px;
  margin: 0 auto;
}

.profile-text-only .credential-list {
  grid-column: 1 / -1;
}

.credential-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.credential-list span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--teal-dark);
  font-weight: 800;
}

.services {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  display: grid;
  grid-template-rows: 210px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.service-card.featured {
  grid-column: span 2;
}

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

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

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

.service-card.text-only {
  display: block;
  background: #f6eee9;
}

.timeline {
  background: #ecf6f4;
}

.timeline-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.timeline-list article {
  padding: 20px;
  border-left: 4px solid var(--coral);
  border-radius: 8px;
  background: var(--white);
}

.timeline-list time {
  display: block;
  margin-bottom: 16px;
  color: var(--teal-dark);
  font-size: 1.35rem;
  font-weight: 900;
}

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

.blog {
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.blog-card {
  color: inherit;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.blog-card:hover,
.blog-card:focus-visible {
  border-color: rgba(31, 122, 131, 0.35);
  box-shadow: 0 14px 30px rgba(24, 48, 58, 0.1);
  transform: translateY(-2px);
}

.blog-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h3 {
  font-size: 1.12rem;
}

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

.article-nav {
  position: static;
  display: flex;
}

.article-page {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) clamp(20px, 6vw, 40px);
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.article-page h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 42px;
  color: var(--muted);
  font-weight: 800;
}

.article-body {
  color: #36515b;
  font-size: 1.08rem;
}

.article-body h2 {
  margin-top: 34px;
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.article-body p {
  margin-bottom: 20px;
}

.locations {
  background: var(--paper);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.location-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(24, 48, 58, 0.06);
}

.location-card span {
  color: var(--coral);
  font-weight: 900;
  text-transform: uppercase;
}

.location-card p {
  margin-bottom: 8px;
  color: var(--muted);
}

.location-card a {
  color: var(--teal-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.collaborations {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 36px;
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.collab-copy {
  max-width: 560px;
}

.collab-copy p:not(.eyebrow) {
  color: #c9d7db;
}

.collab-copy .eyebrow {
  color: #bce4de;
}

.collab-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.collab-logos span {
  min-height: 56px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #edf7f8;
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: 0.82fr 0.8fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(62px, 9vw, 120px) clamp(20px, 6vw, 84px);
  background: var(--white);
}

.contact-copy {
  max-width: 580px;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--teal-dark);
  font-size: 0.88rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(120, 184, 232, 0.28);
  border-color: var(--sky);
}

.contact-form button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(20px, 6vw, 84px);
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
}

.site-footer div {
  display: grid;
  gap: 2px;
}

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

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .article-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .article-nav a:not(.nav-cta) {
    display: none;
  }

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

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

  .menu-toggle {
    display: block;
  }

  .hero,
  .profile-grid,
  .collaborations,
  .contact {
    grid-template-columns: 1fr;
  }

  .profile-text-only .profile-copy {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 340px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

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

  .service-card.featured {
    grid-column: span 1;
  }

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

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

  .collab-logos {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand small {
    display: none;
  }

  h1 {
    margin-bottom: 14px;
    font-size: 2.75rem;
  }

  .hero,
  .section,
  .contact {
    padding-inline: 18px;
  }

  .hero {
    gap: 22px;
    padding-top: 24px;
    padding-bottom: 18px;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.45;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions .button {
    min-height: 44px;
    padding: 10px;
    font-size: 0.88rem;
    text-align: center;
  }

  .hero-facts,
  .service-grid,
  .location-grid,
  .timeline-list,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 26px;
  }

  .hero-facts div {
    padding-top: 12px;
  }

  .hero-facts dt {
    font-size: 0.68rem;
  }

  .hero-facts dd {
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .hero-media {
    min-height: 190px;
    max-height: 210px;
  }

  .intro-band div {
    justify-content: flex-start;
    padding-block: 18px;
  }

  .service-card {
    grid-template-rows: 190px 1fr;
  }

  .site-footer {
    display: grid;
  }
}
