:root {
  --ink: #17211d;
  --muted: #63716b;
  --paper: #f6f3ed;
  --warm: #ebe4d8;
  --sage: #718b6b;
  --green: #217451;
  --deep: #10372f;
  --mint: #e1eee4;
  --white: #ffffff;
  --line: rgba(23, 33, 29, 0.14);
  --shadow: 0 22px 60px rgba(16, 55, 47, 0.16);
  --sans: "Inter", Arial, sans-serif;
  --serif: "Lora", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  align-items: center;
  gap: clamp(40px, 8vw, 140px);
  min-height: 122px;
  padding: 18px clamp(28px, 5vw, 88px);
  border-bottom: 1px solid var(--line);
  background: rgba(246, 243, 237, 0.9);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 222px;
}

.menu-button {
  display: none;
}

.nav-tagline {
  justify-self: center;
  max-width: 520px;
  margin: 0;
  border: 1px solid rgba(33, 116, 81, 0.18);
  border-radius: 22px;
  padding: 18px 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(225, 238, 228, 0.82)),
    url("images/17-shutterstock_2474099631.jpg") center / cover;
  background-blend-mode: screen;
  color: var(--green);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 12px 30px rgba(23, 33, 29, 0.08);
}

.nav-tagline span,
.nav-tagline small {
  display: block;
}

.nav-tagline span {
  font-size: 22px;
}

.nav-tagline small {
  margin-top: 4px;
  color: #315f48;
  font-size: 15px;
  font-weight: 750;
}

.nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(26px, 3.2vw, 52px);
  color: #26312d;
  font-size: 17px;
  font-weight: 750;
}

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

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

.hero {
  position: relative;
  min-height: auto;
  overflow: hidden;
  padding: 0;
  background: var(--deep);
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  min-height: clamp(610px, calc(100vh - 122px), 820px);
  padding: clamp(28px, 4vw, 64px) clamp(20px, 5vw, 88px) clamp(96px, 8vw, 128px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 23, 20, 0.9) 0%, rgba(12, 23, 20, 0.72) 34%, rgba(12, 23, 20, 0.22) 70%, rgba(12, 23, 20, 0.02) 100%),
    linear-gradient(0deg, rgba(12, 23, 20, 0.52) 0%, rgba(12, 23, 20, 0.14) 46%, rgba(12, 23, 20, 0.02) 100%);
}

.slide.active {
  position: relative;
  inset: auto;
  opacity: 1;
  pointer-events: auto;
}

.slide-content {
  position: relative;
  z-index: 3;
  width: min(760px, 52vw);
  max-width: 760px;
  color: var(--white);
}

.eyebrow,
.role {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.slide .eyebrow {
  color: #b8e9c0;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.04;
  font-weight: 800;
}

h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
  font-weight: 800;
}

h3 {
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.16;
}

.slide-content p:not(.eyebrow) {
  max-width: 610px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.35vw, 20px);
}

.slide-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

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

.button,
.plan-card a,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
}

.button.primary,
.contact-form button {
  margin-top: 30px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(33, 116, 81, 0.32);
}

.hero-controls {
  position: absolute;
  left: clamp(20px, 5vw, 88px);
  bottom: clamp(28px, 4vw, 48px);
  z-index: 4;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 660px;
  margin-top: 0;
}

.dot {
  width: auto;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  padding: 10px 14px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.dot.active {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.92);
  color: var(--deep);
}

.slide .button.primary {
  background: var(--white);
  color: var(--deep);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.intro-band,
.section,
.contact-section {
  padding: clamp(58px, 8vw, 118px) clamp(20px, 5vw, 88px);
}

.welcome-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding: clamp(48px, 6vw, 82px) clamp(20px, 5vw, 88px);
  background: var(--paper);
}

.welcome-copy {
  max-width: 980px;
}

.welcome-copy p {
  margin: 0;
  color: #26342f;
  font-size: clamp(24px, 2.8vw, 44px);
  font-weight: 750;
  line-height: 1.16;
}

.welcome-copy p + p {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 30px);
  font-weight: 600;
}

.welcome-copy strong {
  display: inline-block;
  margin-top: 28px;
  color: var(--green);
  font-size: clamp(18px, 1.5vw, 24px);
}

.welcome-band img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 0.9fr) minmax(340px, 0.85fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
  border-top: 1px solid var(--line);
  background: var(--warm);
}

.intro-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.intro-band h2 {
  max-width: 760px;
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1.08;
}

.intro-copy {
  color: #2d3935;
  font-size: clamp(18px, 1.35vw, 21px);
}

.intro-copy p:first-child {
  margin-top: 0;
}

.proof-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 clamp(20px, 5vw, 88px) clamp(58px, 8vw, 118px);
  background: var(--warm);
}

.proof-section article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px 20px;
  align-items: start;
  min-height: 178px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.principle-icon {
  display: grid;
  width: 56px;
  height: 56px;
  grid-row: 1 / 3;
  place-items: center;
  border-radius: 18px;
  background: var(--mint);
  color: var(--green);
}

.principle-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.proof-section h3,
.proof-section p {
  grid-column: 2;
}

.proof-section h3 {
  align-self: end;
  font-size: clamp(22px, 1.8vw, 27px);
}

.proof-section p {
  align-self: start;
  margin: 6px 0 0;
}

.proof-section p,
.section-heading p,
.visual-story p,
.provider-section p,
.contact-section p {
  color: var(--muted);
}

.plans-section {
  background: var(--warm);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(260px, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2 {
  font-family: var(--serif);
  font-weight: 600;
}

.section-heading p {
  margin: 0;
  font-size: 18px;
}

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

.plan-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(23, 33, 29, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 38px rgba(23, 33, 29, 0.07);
}

.plan-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.plan-card-body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 24px;
}

.plan-card-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  min-height: 82px;
}

.plan-card-heading h3 {
  font-size: clamp(23px, 2vw, 30px);
}

.plan-card-heading strong {
  border-radius: 999px;
  background: var(--mint);
  color: var(--green);
  padding: 8px 12px;
  font-size: 20px;
  line-height: 1;
}

.plan-card p {
  max-width: 38ch;
  margin: 0;
  color: var(--muted);
}

.plan-card a {
  align-self: end;
  width: 100%;
  background: var(--green);
  color: var(--white);
}

.visual-story {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
}

.story-copy p {
  max-width: 650px;
  font-size: 18px;
}

.image-mosaic {
  position: relative;
  min-height: 560px;
}

.image-mosaic img {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.mosaic-large {
  top: 0;
  right: 0;
  width: 62%;
  height: 100%;
  border-radius: 22px;
}

.mosaic-small.top {
  top: 48px;
  left: 0;
  width: 55%;
  height: 48%;
  border: 8px solid var(--paper);
  border-radius: 18px;
}

.mosaic-small.bottom {
  bottom: 40px;
  left: 10%;
  width: 58%;
  height: 34%;
  border: 8px solid var(--paper);
  border-radius: 18px;
}

.provider-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.6fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
  background: var(--deep);
  color: var(--white);
}

.provider-section img {
  border-radius: 18px;
  background: var(--white);
  padding: 20px;
}

.provider-section p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

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

.section-heading.compact {
  max-width: 980px;
}

.leader-carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 46px rgba(23, 33, 29, 0.08);
}

.leader-slide {
  display: none;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  min-height: 420px;
  padding: clamp(22px, 3vw, 34px) clamp(54px, 6vw, 74px);
}

.leader-slide.active {
  display: grid;
  animation: leaderFade 360ms ease;
}

.leader-slide img {
  width: 100%;
  height: min(36vw, 350px);
  min-height: 270px;
  border-radius: 18px;
  object-fit: cover;
}

.leader-slide div {
  max-width: 860px;
}

.leader-slide h3 {
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.02;
}

.leader-slide .role {
  margin: 18px 0 20px;
}

.leader-slide p:not(.role) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.58;
}

@keyframes leaderFade {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.leader-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green);
  cursor: pointer;
  font: 800 30px/1 var(--sans);
  transform: translateY(-50%);
  box-shadow: 0 12px 28px rgba(23, 33, 29, 0.1);
}

.leader-arrow.previous {
  left: 18px;
}

.leader-arrow.next {
  right: 18px;
}

.leader-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 clamp(22px, 3vw, 36px) clamp(22px, 3vw, 36px);
}

.leader-dot {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 15px;
}

.leader-dot.active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(360px, 1fr);
  gap: clamp(36px, 7vw, 92px);
  background: var(--green);
  color: var(--white);
}

.contact-section h2 {
  font-family: var(--serif);
  font-weight: 600;
}

.contact-section p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  font-weight: 750;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-self: start;
  border-radius: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.12);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 750;
}

.contact-form .wide {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

.contact-form button {
  justify-self: start;
  margin-top: 6px;
  background: var(--white);
  color: var(--green);
  box-shadow: none;
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(180px, 0.45fr) minmax(360px, 0.9fr);
  gap: clamp(34px, 6vw, 90px);
  padding: clamp(54px, 7vw, 88px) clamp(20px, 5vw, 88px) 28px;
  background:
    linear-gradient(135deg, rgba(16, 55, 47, 0.98), rgba(8, 31, 27, 0.98)),
    url("images/17-shutterstock_2474099631.jpg") center / cover;
  color: var(--white);
}

.footer-brand img {
  width: 260px;
  max-width: 100%;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 420px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 800;
  line-height: 1.12;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
  font-size: 18px;
  font-weight: 800;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
}

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

.footer-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-content: start;
}

.footer-info h2 {
  margin: 0 0 14px;
  color: #b8e9c0;
  font: 800 14px/1.2 var(--sans);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-info p,
.footer-info a {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  font-weight: 650;
}

.footer-info a + a {
  margin-top: 8px;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin: 40px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .brand img {
    width: 158px;
  }

  .nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .nav-tagline {
    justify-self: start;
    text-align: left;
  }

  .welcome-band,
  .section-heading,
  .slide,
  .visual-story,
  .provider-section,
  .contact-section,
  .footer,
  .footer-info {
    grid-template-columns: 1fr;
  }

  .intro-band {
    grid-template-columns: minmax(220px, 0.55fr) 1fr;
  }

  .intro-copy {
    grid-column: 1 / -1;
  }

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

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

  .leader-slide,
  .leader-slide.active {
    grid-template-columns: 1fr;
  }

  .leader-slide {
    min-height: auto;
    padding: 24px;
  }

  .leader-slide img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: relative;
    min-height: auto;
  }

  .nav {
    gap: 16px;
    font-size: 14px;
  }

  .hero,
  .slide {
    min-height: 680px;
  }

  .slide {
    align-items: center;
    padding: 40px 20px 92px;
  }

  .slide-content {
    width: 100%;
  }

  .slide::after {
    background:
      linear-gradient(0deg, rgba(12, 23, 20, 0.92) 0%, rgba(12, 23, 20, 0.72) 44%, rgba(12, 23, 20, 0.1) 100%),
      linear-gradient(90deg, rgba(12, 23, 20, 0.28), rgba(12, 23, 20, 0.04));
  }

  h1 {
    font-size: clamp(36px, 10.5vw, 46px);
  }

  h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .slide-content p:not(.eyebrow) {
    font-size: 17px;
  }

  .welcome-band img {
    aspect-ratio: 16 / 10;
  }

  .intro-band {
    grid-template-columns: 1fr;
  }

  .intro-media img {
    aspect-ratio: 16 / 10;
  }

  .hero-controls {
    left: 20px;
    right: 20px;
  }

  .proof-section {
    gap: 12px;
  }

  .proof-section article {
    grid-template-columns: 52px minmax(0, 1fr);
    padding: 16px;
  }

  .principle-icon {
    width: 52px;
    height: 52px;
  }

  .nav-tagline {
    font-size: 13px;
  }

  .image-mosaic {
    min-height: 460px;
  }

  .mosaic-large {
    width: 68%;
  }

  .mosaic-small.top {
    width: 62%;
  }

  .mosaic-small.bottom {
    width: 68%;
    left: 0;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }


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