:root {
  --navy: #10243f;
  --navy-2: #173255;
  --green: #214b3d;
  --green-2: #2f6654;
  --charcoal: #202734;
  --text: #334155;
  --muted: #657387;
  --cream: #f8f5ef;
  --sand: #ebe4d6;
  --white: #ffffff;
  --line: rgba(16, 36, 63, 0.13);
  --shadow: 0 24px 70px rgba(16, 36, 63, 0.15);
  --radius: 26px;
  --radius-sm: 16px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
}

img, svg {
  max-width: 100%;
}

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

p {
  margin: 0 0 1rem;
}

h1, h2, h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  max-width: 820px;
}

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

h3 {
  font-size: 1.35rem;
}

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

.section-padding {
  padding: 104px 0;
}

.section-padding-small {
  padding: 78px 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

.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: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--navy), var(--green));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: 0 14px 30px rgba(16, 36, 63, 0.2);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  color: var(--navy);
  font-size: 1rem;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--charcoal);
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  color: var(--green);
  border-color: var(--green);
}

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 11px 16px !important;
  border-radius: 999px;
  border: 0 !important;
}

.nav-cta:hover {
  background: var(--green);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 20% 20%, rgba(47, 102, 84, 0.14), transparent 30%), linear-gradient(135deg, #ffffff 0%, var(--cream) 100%);
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.32;
}

.hero-bg::before {
  width: 460px;
  height: 460px;
  background: var(--sand);
  right: -140px;
  top: -120px;
}

.hero-bg::after {
  width: 380px;
  height: 380px;
  background: rgba(16, 36, 63, 0.12);
  left: -160px;
  bottom: -160px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--green);
  font-size: 0.77rem;
  margin-bottom: 14px;
}

.hero-subhead {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--text);
  max-width: 760px;
  margin: 24px 0 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(16, 36, 63, 0.24);
}

.button.primary:hover {
  background: var(--green);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy);
  border-color: var(--line);
}

.button.full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  color: var(--navy);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.86rem;
}

.hero-card,
.detail-panel,
.about-card,
.values-panel,
.quote-card,
.contact-form {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 34px;
}

.portrait-placeholder {
  width: 140px;
  height: 140px;
  border-radius: 34px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--green));
  margin-bottom: 28px;
  color: var(--white);
  font-size: 3rem;
  font-weight: 800;
}

.hero-card h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}

.hero-card p {
  color: var(--text);
}

.check-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  color: var(--text);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.intro {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.86);
}

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

.intro .eyebrow {
  color: #c5d6ca;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.intro-grid p:last-child {
  font-size: 1.15rem;
  margin: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
  margin-top: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-number {
  color: var(--green);
  font-weight: 900;
  margin-bottom: 50px;
}

.service-card h3 {
  margin-bottom: 12px;
}

.promise {
  color: var(--green);
  font-weight: 800;
}

.service-card p:not(.promise) {
  color: var(--text);
}

.service-card a {
  margin-top: auto;
  color: var(--navy);
  font-weight: 900;
}

.detail-section {
  border-top: 1px solid var(--line);
}

.detail-section.alt {
  background: var(--cream);
}

.detail-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.detail-copy p:not(.eyebrow) {
  color: var(--text);
  font-size: 1.06rem;
}

.outcome {
  background: rgba(33, 75, 61, 0.08);
  border-left: 4px solid var(--green);
  padding: 18px 20px;
  border-radius: 0 18px 18px 0;
  margin-top: 24px;
}

.detail-panel {
  padding: 30px;
}

.detail-panel h3 {
  margin-bottom: 14px;
}

.two-column-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 22px;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--navy);
  font-weight: 900;
  border-bottom: 2px solid var(--green);
}

.about {
  background: linear-gradient(135deg, var(--navy), #183a30);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}

.about-card,
.values-panel {
  padding: 34px;
}

.about-card h2 {
  color: var(--navy);
  margin-bottom: 22px;
}

.about-card p:not(.eyebrow),
.values-panel span {
  color: var(--text);
}

.values-panel h3 {
  margin-bottom: 22px;
}

.value-list {
  display: grid;
  gap: 16px;
}

.value-list div {
  padding: 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.value-list strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}

.value-list span {
  display: block;
}

.speaking {
  background: var(--cream);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.split-grid p:not(.eyebrow) {
  color: var(--text);
  margin: 22px 0 26px;
}

.topic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.topic-grid div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px;
  color: var(--navy);
  font-weight: 800;
}

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

.resource-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--white);
}

.resource-grid span {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  font-size: 0.73rem;
}

.resource-grid h3 {
  margin: 16px 0 14px;
}

.resource-grid p {
  color: var(--text);
}

.testimonials {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
}

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

.testimonials .eyebrow {
  color: #c5d6ca;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr repeat(3, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.quote-card {
  padding: 26px;
  box-shadow: none;
}

.quote-card p {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 700;
}

.quote-card span {
  display: block;
  color: var(--green);
  font-weight: 900;
  margin-top: 20px;
}

.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.contact-grid p:not(.eyebrow) {
  color: var(--text);
  font-size: 1.08rem;
  margin-top: 20px;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  color: var(--text);
}

.contact-methods a {
  color: var(--navy);
  font-weight: 900;
}

.contact-form {
  padding: 30px;
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(47, 102, 84, 0.22);
  border-color: var(--green);
}

.form-note {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
}

.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.78);
  padding: 56px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: start;
}

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

.footer-brand .brand-text span {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer p {
  max-width: 560px;
  margin-top: 18px;
}

.footer-links {
  display: grid;
  gap: 10px;
  font-weight: 800;
}

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

.legal-row {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.88rem;
}

@media (max-width: 1020px) {
  .service-grid,
  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 18px;
  }

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

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

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .hero-grid,
  .intro-grid,
  .detail-grid,
  .about-grid,
  .split-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    order: -1;
  }

  .section-padding {
    padding: 76px 0;
  }

  .section-padding-small {
    padding: 62px 0;
  }
}

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

  .service-grid,
  .resource-grid,
  .topic-grid,
  .testimonial-grid,
  .two-column-list {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .brand-text span {
    display: none;
  }

  .portrait-placeholder {
    width: 110px;
    height: 110px;
    border-radius: 26px;
    font-size: 2.3rem;
  }
}
