:root {
  --blue-gray: #292f42;
  --blue-gray-soft: #333b50;
  --silver-white: #e6ecef;
  --cool-gray: #66717b;
  --pale-gray: #f5f7fa;
  --orange: #d67a1f;
  --orange-dark: #b96313;
  --white: #ffffff;
  --ink: #20272d;
  --border: #dbe2e7;
  --shadow: 0 18px 45px rgba(31, 42, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 8px clamp(20px, 6vw, 96px);
  background: rgba(41, 47, 66, 0.98);
  border-bottom: 1px solid rgba(230, 236, 239, 0.12);
  backdrop-filter: blur(10px);
}

.brand img {
  width: clamp(160px, 16vw, 205px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 32px);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--silver-white);
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--orange);
}

.hero {
  min-height: auto;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(41, 47, 66, 0.98) 0%, rgba(41, 47, 66, 0.94) 54%, rgba(51, 59, 80, 0.88) 100%),
    radial-gradient(circle at 70% 15%, rgba(230, 236, 239, 0.16), transparent 30%),
    var(--blue-gray);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: clamp(24px, 4vw, 52px) clamp(34px, 6vw, 82px);
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 88px) 0 clamp(42px, 7vw, 72px);
}

.hero-heading {
  grid-column: 1 / -1;
  max-width: 1040px;
  min-width: 0;
}

.hero-copy {
  max-width: 650px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--blue-gray);
  font-family: Montserrat, Arial, sans-serif;
  line-height: 1.12;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(1.86rem, 3.64vw, 3.61rem);
  max-width: 1080px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
}

p {
  margin: 16px 0 0;
}

.lead {
  color: var(--silver-white);
  font-size: clamp(1.22rem, 1.9vw, 1.48rem);
  font-weight: 600;
}

.hero-copy p:not(.eyebrow):not(.lead) {
  color: rgba(255, 255, 255, 0.88);
  max-width: 680px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  color: var(--white);
  background: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--orange);
  background: transparent;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  margin-top: 26px;
}

.hero-actions p {
  margin: 0;
  font-size: 0.95rem;
}

.hero-portrait {
  align-self: end;
  overflow: hidden;
  max-width: 460px;
  border-radius: 6px;
  border: 1px solid rgba(230, 236, 239, 0.14);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.hero-portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
}

.credential-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  padding: 15px 24px;
  color: var(--blue-gray);
  background: var(--silver-white);
  font-size: 0.9rem;
  font-weight: 700;
}

.credential-strip span:not(:last-child)::after {
  content: "";
}

.section {
  padding: clamp(62px, 8vw, 96px) clamp(20px, 6vw, 96px);
}

.narrow {
  width: min(860px, 100%);
  margin: 0 auto;
  min-width: 0;
}

.narrow p,
.section-heading p {
  color: var(--cool-gray);
}

.intro-section {
  background: var(--white);
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.inline-list li {
  padding: 8px 13px;
  color: var(--blue-gray);
  background: var(--pale-gray);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-weight: 700;
}

.split-section,
.approach-section {
  background: var(--pale-gray);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 86px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.split > *,
.card,
.feature-panel,
.section-heading,
.cta-content > * {
  min-width: 0;
}

.split.reverse {
  grid-template-columns: minmax(300px, 1fr) minmax(0, 0.95fr);
}

.split p {
  color: var(--cool-gray);
}

.feature-panel {
  padding: clamp(28px, 4vw, 44px);
  background: var(--white);
  border-left: 5px solid var(--orange);
  box-shadow: var(--shadow);
}

.check-list,
.card ul {
  padding-left: 0;
  margin: 20px 0 0;
  list-style: none;
}

.check-list li,
.card li {
  position: relative;
  padding-left: 24px;
  margin: 12px 0;
  color: var(--cool-gray);
}

.check-list li::before,
.card li::before {
  position: absolute;
  left: 0;
  color: var(--orange);
  content: ">";
  font-weight: 800;
}

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

.section-heading {
  width: min(900px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.card-grid {
  display: grid;
  gap: 24px;
  width: min(1080px, 100%);
  margin: 0 auto;
}

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

.card {
  min-height: 100%;
  padding: clamp(26px, 4vw, 40px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(31, 42, 51, 0.08);
}

.card p {
  color: var(--cool-gray);
}

.dark-card {
  color: var(--white);
  background: var(--blue-gray);
  border-color: var(--blue-gray);
}

.dark-card h3,
.dark-card li {
  color: var(--white);
}

.quote-section {
  padding: clamp(58px, 8vw, 96px) clamp(20px, 6vw, 96px);
  background: var(--pale-gray);
  text-align: center;
}

blockquote {
  width: min(900px, 100%);
  margin: 0 auto;
}

blockquote p {
  margin: 0;
  color: var(--blue-gray);
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.18;
}

.about-section {
  background: var(--white);
}

.about-image {
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), var(--pale-gray));
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center 10%;
  margin: 0 auto;
}

.cta-section {
  padding: clamp(62px, 8vw, 96px) clamp(20px, 6vw, 96px);
  color: var(--white);
  background: var(--blue-gray);
}

.cta-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 380px);
  align-items: center;
  gap: clamp(30px, 6vw, 76px);
  width: min(1060px, 100%);
  margin: 0 auto;
}

.cta-section h2 {
  color: var(--white);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.84);
}

.contact-visual {
  display: grid;
  justify-items: end;
  align-items: center;
}

.contact-photo {
  width: min(100%, 320px);
  max-height: 500px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.18));
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(20px, 6vw, 96px);
  color: rgba(255, 255, 255, 0.84);
  background: #202638;
  font-size: 0.95rem;
}

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

.site-footer p {
  margin-top: 6px;
}

.footer-links {
  display: grid;
  gap: 6px;
  text-align: right;
}

.footer-links a {
  color: var(--white);
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
  }

  .hero-content,
  .split,
  .split.reverse,
  .card-grid.two,
  .cta-content {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 46px;
  }

  .hero-portrait {
    max-width: 400px;
  }

  .section-heading {
    text-align: left;
  }

  .cta-content {
    align-items: start;
  }

  .contact-visual {
    justify-items: start;
    min-height: auto;
  }

  .contact-photo {
    width: min(100%, 280px);
  }

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

  .footer-links {
    text-align: left;
  }
}

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

  .hero h1 {
    font-size: 1.3rem;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 1.75rem;
    overflow-wrap: anywhere;
  }

  h3 {
    overflow-wrap: anywhere;
  }

  .lead {
    font-size: 1.08rem;
    overflow-wrap: anywhere;
  }

  .site-header {
    min-height: auto;
  }

  .nav-links {
    gap: 10px 16px;
  }

  .hero-content,
  .section,
  .cta-section,
  .quote-section {
    width: 100%;
  }

  .hero-content {
    width: min(100% - 32px, 1180px);
  }

  .hero-heading,
  .hero-copy,
  .narrow,
  .section-heading,
  .split,
  .card-grid,
  .cta-content {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy p:not(.eyebrow):not(.lead),
  .lead,
  .narrow p,
  .split p,
  .card p,
  .cta-section p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .credential-strip {
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }

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

  .button {
    width: 100%;
  }
}
