:root {
  --brand: #488e55;
  --brand-dark: #356e40;
  --ink: #111827;
  --muted: #5f6b63;
  --soft: #f4f7f6;
  --line: #dfe7e1;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: fade-in;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 28px);
  min-height: 100px;
  padding: 5px clamp(16px, 3.1vw, 44px);
  background: #fff;
  border-bottom: 1px solid #f1f3f2;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  height: 90px;
  max-width: none;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 44px);
  margin-left: auto;
  font-size: clamp(13px, 1.2vw, 17px);
  font-weight: 600;
}

.site-nav a {
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding: 4px 6px;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--brand);
  border-color: var(--brand);
}

.nav-toggle,
.nav-toggle-label {
  display: none;
}

.container {
  width: min(1536px, calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 650px;
  height: 650px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  background: var(--soft);
  border-bottom: 1px solid #e5e7eb;
}

.hero-large {
  min-height: 640px;
}

.hero>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .78);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 80px;
}

.eyebrow,
.card-kicker {
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0 0 18px;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(38px, 5vw, 60px);
}

h2 {
  font-size: clamp(30px, 3.8vw, 48px);
}

h3 {
  font-size: 22px;
}

h1 span,
h2 span {
  color: var(--brand);
}

p {
  margin: 0 0 20px;
  color: var(--muted);
}

.hero p {
  max-width: 780px;
  margin-inline: auto;
  font-size: clamp(18px, 2vw, 22px);
  color: #243027;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 6px 24px 6px 24px;
  border: 2px solid var(--brand);
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: var(--brand);
  color: #fff;
}

.button-light {
  background: #fff;
  color: var(--brand);
}

.button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  margin-left: 4px;
  transition: background 0.2s, transform 0.3s;
}

.button:hover span {
  transform: translateX(3px);
  background: #fff;
  color: var(--brand);
}

.home-hero {
  position: relative;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  text-align: center;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.home-hero-glow {
  display: none;
}

.home-hero-content {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 32px));
  margin-top: -60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-hero h1 {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 56px;
  line-height: 1.2;
  font-weight: 600;
  color: #111827;
  margin-bottom: 32px;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.home-ai-mark {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 16px;
  opacity: 1;
}

.home-ai-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-hero h2 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 600;
  color: #111827;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.original-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  padding: 5px 5px 5px 20px;
  border: 1px solid var(--brand);
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
  transition: all 0.3s ease;
}

.original-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.original-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
}

.original-pill span svg {
  transition: transform 0.3s ease;
}

.original-pill:hover span svg {
  transform: translateX(3px);
}

.section {
  padding: clamp(48px, 6vw, 80px) 0;
  background: #fff;
}

.section.soft,
.soft {
  background: var(--soft);
}

.section-head {
  margin-bottom: 36px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
}

.split.reverse .split-copy {
  order: 2;
}

.split-copy p {
  font-size: 17px;
  color: #27352c;
}

.image-panel {
  min-height: 450px;
  border-radius: 4px;
  overflow: hidden;
  background: #e8eee9;
  box-shadow: 0 18px 50px rgba(17, 24, 39, .12);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 1136px;
  margin-inline: auto;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin-inline: auto;
}

.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin-inline: auto;
}

.card {
  position: relative;
  background: var(--soft);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .04);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.card-content {
  padding: 24px;
  background: var(--soft);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-kicker {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #fff;
  color: var(--brand);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  margin: 0;
  z-index: 1;
}

.card-type {
  font-size: 11px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
  display: block;
}

.card h3 {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
  color: #333;
}

.card a {
  display: inline-block;
  margin-top: auto;
  padding-top: 16px;
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
}

.insight-card {
  background: #fff;
  border: 1px solid #c3d7c7;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.insight-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-bottom: 1px solid #c3d7c7;
}

.insight-card-content {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.insight-kicker {
  font-size: 12px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
  margin-top: 0;
}

.insight-card h3 {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
  color: #333;
}

.insight-card .view-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 16px;
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
}

.center {
  text-align: center;
  margin-top: 36px;
}

.career-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--brand);
  color: #fff;
  max-height: 480px;
  position: static;
  overflow: hidden;
}

.career-cta-content {
  padding: 48px 40px 48px max(20px, calc((100vw - 1280px) / 2 + 20px));
  position: relative;
  z-index: 1;
}

.career-cta-content .kicker {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}

.career-cta-content h2 {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.15;
  margin-bottom: 24px;
  color: #fff;
  font-weight: 800;
}

.career-cta-content p {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 460px;
}

.career-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #3b8842;
  padding: 10px 14px 10px 24px;
  border-radius: 99px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  border: none;
  transition: transform 0.2s;
}

.career-btn:hover {
  transform: translateY(-2px);
}

.career-btn .arrow-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #3b8842;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
}

.career-cta-image {
  height: 70%;
  position: relative;
  z-index: 1;
}

.career-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.transform-band {
  min-height: 280px;
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
}

.transform-band h2 {
  max-width: 760px;
  color: #fff;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: #e6f1e8;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
}

.insight-tabs {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: #fff;
  font-size: 15px;
  font-weight: 800;
}

.insight-tabs span {
  padding-bottom: 8px;
  color: #4b5563;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}

.insight-tabs span:hover {
  color: #111827;
}

.insight-tabs .active {
  color: #111827;
  font-weight: 800;
}

.insight-tabs .active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--brand);
}

.insight-tabs i {
  color: #9ca3af;
  font-style: normal;
  font-weight: 400;
}

.featured-insights {
  background: #fff;
  padding-bottom: 48px;
}

.featured-row {
  width: min(1400px, calc(100% - 88px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.featured-tile {
  position: relative;
  min-height: 300px;
  padding: 24px;
  overflow: hidden;
  background: #b6c7b9;
}

.featured-tile>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-tile>div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 252px;
}

.featured-tile p {
  margin: 0 0 42px;
  color: #111827;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .1em;
}

.featured-tile span {
  color: #374151;
  font-size: 13px;
  font-weight: 800;
  opacity: .8;
  margin-bottom: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.featured-tile a {
  color: #111827;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 6px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding-left: 22px;
  position: relative;
  font-weight: 700;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .75em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: start;
}

.impact-box {
  position: sticky;
  top: 116px;
  padding: 28px;
  border-radius: 10px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.impact-box ul {
  padding-left: 18px;
}

.article-body {
  max-width: 820px;
  margin-inline: auto;
}

.article-body p {
  font-size: 20px;
  color: #222;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.leadership-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 24px;
  /* for shadow space */
  padding-top: 10px;
  /* space for hover shadow */
}

.leadership-carousel::-webkit-scrollbar {
  display: none;
}

.leader-card {
  flex: 0 0 calc(20% - 18px);
  background: transparent;
  border-radius: 12px;
  box-shadow: none;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-5px);
}

.leader-card>div {
  position: relative;
  width: 100%;
  height: 100%;
}

.leader-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 12px;
}

.leader-card a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: block;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding-bottom: 8px;
}

.indicator-dash {
  width: 32px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.indicator-dash:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.indicator-dash.active {
  background-color: var(--brand);
  width: 48px;
}

@media (max-width: 900px) {
  .leader-card {
    flex: 0 0 calc(33.333% - 16px);
  }
}

@media (max-width: 600px) {
  .leader-card {
    flex: 0 0 calc(50% - 12px);
  }
}

.leader-img-box {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.leader-img-box img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;
}

.leader-info {
  padding: 24px 20px 60px 20px;
  flex-grow: 1;
  text-align: left;
}

.leader-info h3 {
  margin: 0 0 6px 0;
  font-size: 20px;
  color: var(--ink);
}

.leader-info p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.leader-in {
  position: absolute;
  bottom: 24px;
  right: 24px;
  color: var(--brand);
  width: 24px;
  height: 24px;
  display: flex;
  transition: all 0.3s;
}

.leader-in:hover {
  color: var(--heading);
  transform: translateY(-3px);
}

.contact-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(17, 24, 39, .12);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: block;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 800;
  color: #344039;
}

input,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  border: 1px solid #cfd8d2;
  border-radius: 6px;
  font: inherit;
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 600;
}

.checkbox input {
  width: auto;
  margin-top: 4px;
}

.site-footer {
  padding: 64px 0;
  border-top: 1px solid #edf1ee;
  background: #fff;
}

.footer-logo img {
  height: 90px;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.site-footer h3 {
  color: var(--brand);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-block strong {
  display: block;
  color: var(--brand);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.footer-block p {
  color: #a0aca4;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: var(--brand-dark);
}

.copyright {
  margin-top: 24px;
  border-top: 1px solid #edf1ee;
  padding-top: 16px;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 84px;
    padding: 16px 24px;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .brand img {
    width: auto;
    height: 52px;
  }

  .nav-toggle-label {
    display: inline-flex;
    width: 44px;
    height: 44px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #374151;
    cursor: pointer;
  }

  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    content: "";
    position: relative;
    transition: .2s ease;
  }

  .nav-toggle-label span::before {
    position: absolute;
    top: -7px;
  }

  .nav-toggle-label span::after {
    position: absolute;
    top: 7px;
  }

  .nav-toggle:checked+.nav-toggle-label span {
    background: transparent;
  }

  .nav-toggle:checked+.nav-toggle-label span::before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav-toggle:checked+.nav-toggle-label span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .site-nav {
    display: none;
    width: 100%;
    margin: 0;
    padding: 14px 0 8px;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid #f1f3f2;
  }

  .nav-toggle:checked~.site-nav {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
  }

  .site-nav a.active {
    background: #f8faf9;
    border-color: transparent;
  }

  .home-hero h1 {
    white-space: normal;
  }

  .split,
  .career-cta,
  .detail-layout,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-copy {
    order: initial;
  }

  .card-grid,
  .card-grid-3,
  .leadership-grid,
  .footer-grid,
  .featured-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .impact-box {
    position: static;
  }
}

@media (max-width: 500px) {
  .hero-home-features {
    flex-direction: column;
  }
}

.green-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.green-check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
}

.green-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23488e55"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>') no-repeat center center;
}

.numbered-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin-inline: auto;
}

.numbered-card {
  background: #fff;
  border: 1px solid #eef2ef;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.numbered-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.numbered-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 24px;
}

.numbered-card h3 {
  font-size: 24px;
  color: var(--brand);
  margin-bottom: 20px;
}

.role-transform-blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1200px;
  margin-inline: auto;
}

.rt-block {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1.25fr;
  gap: 24px;
  background: #fff;
  border: 1px solid #eef2ef;
  border-radius: 12px;
  padding: 20px 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  align-items: center;
}

.rt-icon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: none;
  padding-right: 24px;
}

.rt-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #fff;
}

.rt-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.rt-icon-col h3 {
  font-size: 20px;
  color: var(--brand);
  margin: 0;
}

.rt-list-col h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--ink);
}

.rt-block .green-check-list li {
  margin-bottom: 8px;
}

.practice-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(24px, 6vw, 80px);
  margin-top: 48px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.practice-item {
  text-align: center;
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.practice-item img {
  height: 48px;
  width: auto;
  margin-bottom: 20px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.practice-item:hover img {
  transform: scale(1.1);
}

.practice-item p {
  font-size: 16px;
  font-weight: 600;
  color: var(--brand);
  line-height: 1.4;
  margin: 0;
}

/* Cascading image gallery for What We Do */

.cascade-img {
  position: absolute;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.cascade-img:hover {
  transform: scale(1.04) translateY(-2px);
  z-index: 5;
}

.cascade-img.img-1 {
  top: 40px;
  left: 0;
  width: 270px;
  height: 180px;
  z-index: 1;
}

.cascade-img.img-2 {
  bottom: 10px;
  left: 200px;
  width: 185px;
  height: 225px;
  z-index: 3;
  border: 4px solid #fff;
}

.cascade-img.img-3 {
  top: 15px;
  right: 0;
  width: 180px;
  height: 270px;
  z-index: 2;
}

@media (max-width: 550px) {
  .cascade-panel {
    height: 300px;
    max-width: 100%;
  }

  .cascade-img.img-1 {
    width: 50%;
    height: 120px;
    top: 30px;
  }

  .cascade-img.img-2 {
    width: 40%;
    height: 160px;
    left: 35%;
    bottom: 5px;
  }

  .cascade-img.img-3 {
    width: 38%;
    height: 180px;
    top: 10px;
  }
}

.hero h1 span {
  color: var(--brand);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 1200px;
  margin-inline: auto;
}

.bento-grid .span-2 {
  grid-column: span 2;
}

.ai-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #488e55;
  color: #fff;
  min-height: 240px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.ai-card.light-card {
  background: #f0fdf4;
}

.ai-card.light-card h3,
.ai-card.light-card p {
  color: #111827;
}

.ai-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.ai-card>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  mix-blend-mode: overlay;
  transition: opacity 0.3s;
}

.ai-card:hover>img {
  opacity: 0.45;
}

.ai-card.light-card>img {
  mix-blend-mode: normal;
  opacity: 0.4;
}

.ai-card.light-card:hover>img {
  opacity: 0.6;
}

.ai-card-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ai-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin: 0;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  max-width: 1200px;
  margin-inline: auto;
  padding-top: 20px;
}

.logo-row img {
  max-height: 50px;
  object-fit: contain;
  max-width: 200px;
  opacity: 0.9;
}

@media (max-width: 980px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-grid .span-2 {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .rt-block {
    grid-template-columns: 1fr;
  }

  .rt-icon-col {
    border-right: none;
    border-bottom: 1px solid #eef2ef;
    padding-right: 0;
    padding-bottom: 24px;
  }
}

@media (max-width: 640px) {
  .site-nav {
    font-size: 14px;
  }

  .container {
    width: min(100% - 28px, 1200px);
  }

  .card-grid,
  .card-grid-3,
  .leadership-grid,
  .footer-grid,
  .form-row,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .featured-row {
    grid-template-columns: 1fr;
  }

  .insight-tabs {
    gap: 14px;
    flex-wrap: wrap;
    padding: 18px;
  }

  .hero {
    min-height: 500px;
    height: auto;
  }

  .home-hero {
    height: 550px;
  }

  .home-hero-content {
    margin-top: -40px;
  }

  .home-ai-mark {
    width: 150px;
    height: 150px;
  }

  .career-cta img {
    min-height: 260px;
  }
}

/* Masonry Layout for What We Do */
.masonry-panel {
  display: flex;
  gap: 16px;
  align-items: stretch;
  min-height: 400px;
}

.masonry-panel.reverse {
  flex-direction: row-reverse;
}

.masonry-img {
  border-radius: 4px;
  object-fit: cover;
  width: 100%;
}

.masonry-panel .main-img {
  flex: 1.5;
  object-fit: cover;
}

.masonry-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.masonry-panel .small-img {
  flex: 1;
  object-fit: cover;
  min-height: 192px;
}

@media (max-width: 768px) {
  .masonry-panel {
    flex-direction: column;
  }

  .masonry-panel.reverse {
    flex-direction: column;
  }

  .masonry-panel .main-img {
    height: 300px;
    flex: none;
  }

  .masonry-column {
    flex-direction: row;
  }

  .masonry-panel .small-img {
    height: 200px;
  }
}

/* Our Studio Styles */
.studio-feature-card {
  position: relative;
  border: 1px solid #eef2ef;
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.studio-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.studio-feature-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.studio-pill {
  position: absolute;
  top: 204px;
  left: 20px;
  background: #fff;
  border-radius: 999px;
  padding: 4px 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  border: 1px solid #eef2ef;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.studio-feature-card h3 {
  margin: 32px 20px 16px;
  font-size: 18px;
  color: var(--brand);
}

.studio-feature-card p {
  margin: 0 20px 24px;
  font-size: 13px;
  color: #6b7280;
}

.chevron-flow {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  margin-top: 48px;
  width: 100%;
}

.chevron-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 160px;
}

.chevron-shape {
  position: relative;
  width: 100%;
  height: 140px;
  background: #abc9b2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%, 15% 50%);
}

.chevron-step:first-child .chevron-shape {
  clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
  border-radius: 8px 0 0 8px;
}

.chevron-shape img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.chevron-step h4 {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

@media (max-width: 980px) {
  .chevron-flow {
    flex-wrap: wrap;
    gap: 24px;
  }

  .chevron-step {
    min-width: 200px;
  }
}

.success-story-card {
  position: relative;
  border: 1px solid #eef2ef;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.success-story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.success-story-card>img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  border-bottom: 1px solid #eef2ef;
}

.success-pill {
  position: absolute;
  top: 224px;
  left: 16px;
  background: #eaf3eb;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
}

.success-story-card h3 {
  margin: 32px 16px 12px;
  font-size: 20px;
  color: var(--brand);
}

.success-story-card p {
  margin: 0 16px 24px;
  font-size: 13px;
  color: #4b5563;
}

.case-study-card {
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-5px);
}

.case-study-img-wrap {
  position: relative;
}

.case-study-img-wrap img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.case-study-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #fff;
  color: var(--brand);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  border: 1px solid #eef2ef;
}

.case-study-content {
  background: #f1f7f2;
  margin: -40px 16px 16px 16px;
  padding: 20px;
  position: relative;
  z-index: 2;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  min-height: 120px;
}

.case-study-content .kicker {
  font-size: 12px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.case-study-content p {
  font-size: 13px;
  color: #4b5563;
  margin: 0;
  line-height: 1.5;
}

.studio-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #eaf1ec;
  min-height: 500px;
}

.studio-contact-left {
  background: var(--brand);
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.studio-contact-form {
  background: transparent;
  width: 100%;
  max-width: 500px;
  color: #fff;
}

.studio-contact-form label {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.studio-contact-form input,
.studio-contact-form textarea {
  background: #fff;
  border: none;
  border-radius: 4px;
  padding: 12px;
  margin-bottom: 16px;
  width: 100%;
  margin-top: 0;
}

.studio-contact-form .checkbox {
  color: #fff;
  font-size: 12px;
  align-items: center;
  margin-bottom: 24px;
}

.studio-contact-form .checkbox input {
  width: auto;
  margin-bottom: 0;
}

.studio-contact-form .button {
  background: #fff;
  color: var(--brand);
  border-radius: 999px;
  font-weight: 700;
  border: none;
  padding: 10px 32px;
}

.studio-contact-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px;
}

.studio-contact-right>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  mix-blend-mode: multiply;
}

.studio-contact-right-content {
  position: relative;
  z-index: 1;
  max-width: 400px;
}

.studio-contact-right h2 {
  font-size: 40px;
  color: #111827;
  margin-bottom: 16px;
}

.studio-contact-right h2 span {
  color: var(--brand);
}

.studio-contact-right p {
  font-size: 16px;
  color: #111827;
  font-weight: 600;
}

@media (max-width: 980px) {
  .studio-contact {
    grid-template-columns: 1fr;
  }

  .studio-contact-left {
    order: 2;
  }

  .studio-contact-right {
    order: 1;
  }
}

/* Careers Styles */
.ratings-band {
  background: #fff;
  padding: 48px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
  flex-wrap: wrap;
  border-bottom: 1px solid #eef2ef;
}

.ratings-band img {
  height: 56px;
  object-fit: contain;
}

.job-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 40px 24px;
  text-align: center;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.job-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: #c3d7c7;
  transform: translateY(-4px);
}

.job-kicker {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.job-card h3 {
  font-size: 20px;
  color: #111827;
  margin-bottom: 16px;
}

.job-card p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 32px;
}

.job-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--brand);
  padding: 10px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s;
}

.job-card a:hover {
  background: var(--brand-dark);
}

/* Contact Us Styles */
.contact-hero {
  background: var(--brand-dark);
  color: #fff;
  padding: 100px 0 160px;
  text-align: center;
}

.contact-hero h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 54px);
}

.contact-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-floating-container {
  width: min(1100px, calc(100% - 32px));
  margin: -100px auto 100px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .04);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  transition: all 0.3s ease;
}

.contact-floating-container:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-side {
  padding: clamp(40px, 6vw, 64px) clamp(24px, 5vw, 48px);
}

.contact-image-side {
  position: relative;
  background: #eaf1ec;
}

.contact-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-details-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
}

.contact-details-overlay h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 12px;
}

.contact-details-overlay p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 15px;
}

@media (max-width: 768px) {
  .contact-floating-container {
    grid-template-columns: 1fr;
  }

  .contact-image-side {
    min-height: 400px;
    order: -1;
  }
}

/* --- Added Hover States --- */
.insight-card:hover img {
  transform: scale(1.05);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--brand);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* --- Global Responsiveness --- */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .card-grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .career-cta {
    grid-template-columns: 1fr !important;
  }

  .career-cta-image {
    min-height: 350px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {

  .card-grid,
  .services-grid,
  .card-grid-4 {
    grid-template-columns: 1fr !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .nav-toggle-label {
    display: block !important;
    cursor: pointer;
    position: relative;
    z-index: 100;
  }

  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    display: block;
    background: var(--brand);
    height: 2px;
    width: 24px;
    border-radius: 2px;
    position: relative;
  }

  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    content: '';
    position: absolute;
  }

  .nav-toggle-label span::before {
    bottom: 7px;
  }

  .nav-toggle-label span::after {
    top: 7px;
  }

  .site-nav {
    display: none !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 99;
  }

  .nav-toggle:checked~.site-nav {
    display: flex !important;
  }

  .hero {
    min-height: auto !important;
    padding: 60px 0 !important;
  }

  .home-hero-content h1 {
    font-size: clamp(32px, 8vw, 40px) !important;
  }

  .section-head h2 {
    font-size: 32px !important;
  }
}

/* --- Added Layout Responsiveness --- */
@media (max-width: 1200px) {
  .nav-toggle-label {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    position: relative;
    z-index: 100;
  }

  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    display: block;
    background: var(--brand);
    height: 2px;
    width: 24px;
    border-radius: 2px;
    position: relative;
  }

  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    content: '';
    position: absolute;
  }

  .nav-toggle-label span::before {
    bottom: 7px;
  }

  .nav-toggle-label span::after {
    top: 7px;
  }

  .site-nav {
    display: none !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 99;
  }

  .nav-toggle:checked~.site-nav {
    display: flex !important;
  }
}

@media (max-width: 980px) {
  .split {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .split.reverse .split-copy {
    order: -1;
  }
  
  .detail-layout {
    grid-template-columns: 1fr !important;
  }
}

/* --- Custom Grids Extracted from Inline Styles --- */
.contact-wrap-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .contact-wrap-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
}

.careers-wrap-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 64px;
}

@media (max-width: 980px) {
  .careers-wrap-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
}

.studio-logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

@media (max-width: 768px) {
  .studio-logos-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .studio-logos-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.studio-features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

@media (max-width: 980px) {
  .studio-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 768px) {
  .studio-features-grid {
    grid-template-columns: 1fr !important;
  }
}