@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-400.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face { font-family: "Montserrat"; src: url("../fonts/montserrat-500.woff") format("woff"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Montserrat"; src: url("../fonts/montserrat-600.woff") format("woff"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Montserrat"; src: url("../fonts/montserrat-700.woff") format("woff"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Montserrat"; src: url("../fonts/montserrat-800.woff") format("woff"); font-style: normal; font-weight: 800; font-display: swap; }
@font-face { font-family: "Montserrat"; src: url("../fonts/montserrat-900.woff") format("woff"); font-style: normal; font-weight: 900; font-display: swap; }
@font-face { font-family: "Caveat"; src: url("../fonts/caveat-600.woff") format("woff"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Caveat"; src: url("../fonts/caveat-700.woff") format("woff"); font-style: normal; font-weight: 700; font-display: swap; }

:root {
  --navy: #07365a;
  --navy-deep: #042944;
  --green: #2f8435;
  --green-dark: #216c28;
  --pink: #c91660;
  --blue: #0b6fa9;
  --off-white: #f7f9f7;
  --white: #ffffff;
  --ink: #0a3151;
  --muted: #5e7181;
  --line: #dfe7ec;
  --shadow: 0 18px 46px rgba(7, 54, 90, 0.12);
  --shadow-soft: 0 10px 28px rgba(7, 54, 90, 0.08);
  --radius: 18px;
  --radius-sm: 11px;
  --container: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
  overflow-x: clip;
}

body {
  margin: 0;
  max-width: 100%;
  color: var(--ink);
  background: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(239, 39, 124, 0.45);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.matching-grid > *,
.opportunities-grid > *,
.eric-grid > *,
.region-content > *,
.business-grid > *,
.footer-grid > * {
  min-width: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section {
  padding-block: clamp(70px, 8vw, 112px);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.105em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #a4ea9f;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.08;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.15rem, 6.1vw, 5.9rem);
  font-weight: 900;
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 3.9vw, 3.65rem);
  font-weight: 900;
  letter-spacing: -0.045em;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #2f8435 0%, #216c28 100%);
  box-shadow: 0 10px 20px rgba(33, 108, 40, 0.24);
}

.button-primary:hover {
  background: linear-gradient(135deg, #27772e 0%, #195e21 100%);
  box-shadow: 0 14px 28px rgba(33, 108, 40, 0.3);
}

.button-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(7, 54, 90, 0.55);
}

.button-secondary:hover {
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hand-note {
  margin: 0;
  color: var(--pink);
  font-family: "Caveat", cursive;
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 0.98;
  transform: rotate(-4deg);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(7, 54, 90, 0.08);
  backdrop-filter: blur(16px);
  isolation: isolate;
}

body.menu-open .site-header {
  background: var(--white);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 30px;
}

.wordmark {
  display: block;
  width: 172px;
  min-width: 172px;
  flex: 0 0 auto;
}

.brand-logo {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 32px);
}

.desktop-nav a {
  position: relative;
  padding-block: 7px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta {
  min-height: 43px;
  padding-inline: 18px;
  font-size: 0.78rem;
}

.icon-button,
.menu-toggle {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.icon-button:hover,
.menu-toggle:hover {
  background: var(--off-white);
}

.icon-button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.menu-toggle {
  display: none;
  align-content: center;
  gap: 5px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 4px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  z-index: 1001;
  top: 100%;
  right: 0;
  left: 0;
  width: 100%;
  height: calc(100dvh - 78px);
  padding: 26px 24px 40px;
  background: var(--white);
  box-shadow: 0 24px 50px rgba(7, 54, 90, 0.16);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-nav:not([hidden]) {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav > a:not(.button) {
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.mobile-nav .button {
  margin-top: 20px;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 60px));
  isolation: isolate;
  overflow: hidden;
  background: #dce2e3;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.12) contrast(1.1);
}

.hero-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(242, 246, 244, 0.84) 0%, rgba(242, 246, 244, 0.52) 34%, rgba(242, 246, 244, 0.06) 58%, rgba(7, 54, 90, 0.02) 100%);
}

.hero-content {
  display: flex;
  min-height: min(720px, calc(100vh - 60px));
  flex-direction: column;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 92px;
}

.hero-content > * {
  max-width: 650px;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--navy);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 600;
  line-height: 1.48;
}

.search-wrap {
  position: relative;
  z-index: 5;
  margin-top: -64px;
}

.search-wrap::before {
  position: absolute;
  z-index: -1;
  top: 64px;
  right: 50%;
  bottom: 0;
  left: 50%;
  width: 100vw;
  background: linear-gradient(105deg, #fbfdfc 0%, #f1f7f3 100%);
  content: "";
  transform: translateX(-50%);
}

.search-card {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(390px, 1.85fr) minmax(250px, 1.2fr) auto;
  align-items: end;
  gap: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.search-field,
.interest-field {
  min-width: 0;
}

.search-field > span:first-child,
.interest-field legend {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
}

.interest-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.input-shell {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  background: #f9fbfc;
  border: 1px solid #dbe5eb;
  border-radius: 9px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.input-shell:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(73, 169, 66, 0.13);
}

.input-shell svg {
  width: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--navy);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.input-shell input {
  width: 100%;
  min-width: 0;
  color: var(--navy);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 0.76rem;
  font-weight: 600;
}

.input-shell input::placeholder {
  color: #8795a0;
}

.choice-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.choice,
.job-filters button {
  min-height: 50px;
  padding: 8px 10px;
  color: var(--navy);
  background: #f8fafb;
  border: 1px solid #dbe5eb;
  border-radius: 9px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 800;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.choice:hover,
.choice.active,
.job-filters button:hover,
.job-filters button.active {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.radius {
  flex: 0 0 auto;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
}

.search-button {
  min-height: 50px;
  padding-inline: 25px;
}

.search-feedback {
  min-height: 26px;
  margin: 8px 12px 0;
  color: var(--green-dark);
  font-size: 0.83rem;
  font-weight: 700;
}

.supporter-section {
  padding: 8px 0;
  background: linear-gradient(105deg, #eef7f0 0%, #e7f2eb 100%);
  border-top: 1px solid rgba(47, 132, 53, 0.14);
  border-bottom: 1px solid rgba(47, 132, 53, 0.14);
}

.supporter-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 96px;
  padding: 15px 4px;
  background: transparent;
  transition: transform 180ms ease;
}

.supporter-card:hover {
  transform: translateY(-2px);
}

.supporter-crest {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(47, 132, 53, 0.18);
  border-radius: 11px;
}

.supporter-crest img {
  width: 46px;
  height: 54px;
  object-fit: contain;
}

.supporter-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.28;
}

.supporter-kicker {
  margin-bottom: 2px;
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.supporter-copy strong {
  color: var(--navy);
  font-size: 1rem;
}

.supporter-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.75rem;
}

.supporter-link {
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
}

.supporter-link span {
  margin-left: 3px;
  color: var(--green);
}

.matching-section {
  padding-top: 58px;
  background: linear-gradient(105deg, #fbfdfc 0%, #f1f7f3 100%);
}

.matching-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(620px, 1.45fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.matching-copy p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 28px;
  color: var(--muted);
}

.matching-visual {
  position: relative;
}

.matching-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.matching-step {
  position: relative;
  width: 29%;
  text-align: center;
}

.matching-step:not(:last-child)::after {
  position: absolute;
  top: 39px;
  left: calc(100% + 1px);
  width: 43%;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 20'%3E%3Cpath d='M2 10h51m-7-7 8 7-8 7' fill='none' stroke='%2307365A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  content: "";
}

.matching-icon {
  display: grid;
  width: 82px;
  height: 82px;
  margin: 0 auto 16px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 25px rgba(7, 54, 90, 0.12);
}

.matching-step:nth-child(1) .matching-icon { background: var(--pink); }
.matching-step:nth-child(2) .matching-icon { background: var(--navy); }
.matching-step:nth-child(3) .matching-icon { background: var(--green); }

.matching-icon svg {
  width: 35px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.matching-step strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
  font-size: 0.86rem;
}

.matching-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.4;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.text-link {
  position: relative;
  flex: 0 0 auto;
  padding-bottom: 3px;
  color: var(--green-dark);
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 800;
}

.text-link:hover {
  color: var(--navy);
}

.profession-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.profession-card {
  display: flex;
  min-height: 148px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 10px;
  text-align: center;
  background: linear-gradient(145deg, #fbfcfd, #f3f6f8);
  border: 1px solid #eef2f4;
  border-radius: 13px;
  box-shadow: 0 5px 14px rgba(7, 54, 90, 0.03);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.profession-card:hover {
  border-color: rgba(73, 169, 66, 0.35);
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.profession-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
  place-items: center;
  color: var(--icon-color, var(--green));
}

.profession-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.profession-card strong {
  color: var(--navy);
  font-size: 0.75rem;
  hyphens: manual;
  line-height: 1.35;
}

.profession-card small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
}

.companies-section {
  padding-top: 38px;
  background: var(--white);
}

.company-carousel-shell {
  position: relative;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  scroll-behavior: smooth;
}

.company-card {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(7, 54, 90, 0.05);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.company-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.company-visual {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: linear-gradient(135deg, #dce6e9, #b6cad0);
}

.company-visual::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(7, 32, 51, 0.38));
  content: "";
}

.company-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.company-card:hover .company-photo {
  transform: scale(1.035);
}

.company-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(140deg, var(--navy), #0a5a86);
}

.company-placeholder svg {
  width: 62px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
}

.company-logo {
  position: absolute;
  z-index: 2;
  bottom: 12px;
  left: 14px;
  width: auto;
  max-width: 150px;
  height: 52px;
  padding: 7px 10px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(7, 54, 90, 0.15);
}

.image-credit {
  position: absolute;
  z-index: 3;
  right: 7px;
  bottom: 5px;
  max-width: 58%;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  line-height: 1.2;
  text-align: right;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.65);
}

.company-body {
  padding: 18px;
}

.company-body h3 {
  margin-bottom: 3px;
  font-size: 1.03rem;
  font-weight: 900;
}

.company-location {
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}

.tag {
  padding: 5px 8px;
  color: var(--navy);
  background: #f3f7f9;
  border: 1px solid #dbe5eb;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.company-description {
  min-height: 68px;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.46;
}

.company-link {
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

.company-link:hover {
  color: var(--navy);
}

.carousel-next {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: -22px;
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-dots {
  display: none;
  justify-content: center;
  gap: 7px;
  margin-top: 20px;
}

.carousel-dots span {
  width: 7px;
  height: 7px;
  background: #d5dfe4;
  border-radius: 50%;
}

.carousel-dots span.active {
  background: var(--green);
}

.opportunities-section {
  padding-top: 22px;
  background: linear-gradient(180deg, var(--white), var(--off-white));
}

.opportunities-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(34px, 5vw, 64px);
}

.practice-card {
  position: relative;
  min-height: 570px;
  color: var(--white);
  border-radius: var(--radius);
  isolation: isolate;
  overflow: hidden;
}

.practice-card > img,
.practice-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.practice-card > img {
  z-index: -2;
  object-fit: cover;
  object-position: 62% center;
}

.practice-overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(3, 24, 38, 0.92) 0%, rgba(3, 24, 38, 0.65) 52%, rgba(3, 24, 38, 0.16) 100%);
}

.practice-content {
  display: flex;
  height: 100%;
  max-width: 560px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(34px, 5vw, 62px);
}

.practice-content h2,
.region-content h2 {
  color: var(--white);
}

.practice-content p:not(.eyebrow) {
  margin-bottom: 27px;
  font-size: 0.95rem;
}

.practice-note {
  position: absolute;
  right: 32px;
  bottom: 30px;
  color: var(--white);
  font-size: 2.1rem;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
}

.jobs-panel {
  padding-block: 26px;
}

.opportunity-intro {
  margin: -5px 0 20px;
  color: var(--muted);
  font-size: 0.84rem;
}

.section-heading.compact {
  align-items: flex-start;
  margin-bottom: 22px;
}

.section-heading.compact h2 {
  max-width: 580px;
  font-size: clamp(1.85rem, 3vw, 2.75rem);
}

.job-filters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.job-filters button {
  min-height: 39px;
}

.job-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom: 0;
  transition: background 160ms ease, transform 160ms ease;
}

.job-card:first-child {
  border-radius: 11px 11px 0 0;
}

.job-card:last-child {
  border-bottom: 1px solid var(--line);
  border-radius: 0 0 11px 11px;
}

.job-card:only-child {
  border-radius: 11px;
}

.job-card:hover {
  z-index: 1;
  background: #f6faf7;
  transform: translateX(4px);
}

.job-card > div {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.job-card .job-type {
  color: var(--green-dark);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.3;
}

.job-card > div > strong {
  color: var(--navy);
  font-size: 0.92rem;
  hyphens: manual;
  line-height: 1.3;
}

.job-card > div > small {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.job-card > span[aria-hidden="true"] {
  justify-self: end;
  color: var(--green-dark);
  font-weight: 900;
}

.job-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--job-color, var(--navy));
  background: color-mix(in srgb, var(--job-color, var(--navy)) 12%, white);
  border-radius: 9px;
}

.job-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.job-card h3 {
  margin-bottom: 3px;
  font-size: 0.75rem;
  hyphens: manual;
  line-height: 1.35;
}

.job-meta,
.job-company {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.35;
}

.job-company {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-weight: 700;
}

.job-company img {
  width: auto;
  max-width: 56px;
  height: 24px;
  flex: 0 0 auto;
  object-fit: contain;
}

.job-company span {
  min-width: 0;
}

.job-arrow {
  color: var(--navy);
  font-size: 1.35rem;
}

.jobs-empty {
  padding: 30px;
  color: var(--muted);
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 11px;
  font-size: 0.82rem;
}

.eric-section {
  position: relative;
  overflow: hidden;
}

.eric-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 80% 50%, rgba(73, 169, 66, 0.12), transparent 34%), linear-gradient(105deg, var(--white), #f3f8f5);
  content: "";
}

.eric-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(480px, 1.15fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.eric-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
}

.eric-copy p:nth-last-of-type(1) {
  margin-bottom: 28px;
}

.eric-figure {
  position: relative;
  margin: 0;
}

.eric-figure > img {
  width: 100%;
  max-height: 580px;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
  object-position: 54% center;
  border: 9px solid var(--white);
  border-radius: 28px 8px 28px 8px;
  box-shadow: var(--shadow);
}

.eric-figure figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.93);
  border-radius: 8px;
  font-size: 0.75rem;
}

.eric-figure figcaption strong {
  font-size: 0.84rem;
}

.region-section {
  position: relative;
  min-height: 335px;
  color: var(--white);
  background: #bd145f;
  isolation: isolate;
  overflow: hidden;
}

.region-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(174, 12, 82, 0.96) 0%, rgba(204, 18, 101, 0.9) 56%, rgba(139, 8, 67, 0.78) 100%), url("../images/region-panorama.webp");
  background-position: center;
  background-size: cover;
}

.region-backdrop::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(239, 39, 124, 0.04), rgba(70, 0, 34, 0.22));
  content: "";
}

.region-section .eyebrow.light {
  color: rgba(255, 255, 255, 0.86);
}

.region-content {
  display: grid;
  min-height: 335px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-block: 70px;
}

.region-content h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4vw, 3.7rem);
}

.region-promises {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.region-promises > div {
  text-align: center;
}

.promise-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
  place-items: center;
  color: var(--pink);
  background: var(--white);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 900;
}

.region-promises p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.45;
}

.region-promises strong {
  font-size: 0.86rem;
}

.business-section {
  position: relative;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.business-section::before {
  position: absolute;
  top: -40%;
  right: -8%;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(73, 169, 66, 0.3), transparent 65%);
  content: "";
}

.business-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
}

.business-heading h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.2vw, 4rem);
}

.business-heading h2 span {
  color: #91dc8e;
}

.business-heading > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 30px;
  color: #d4e1e9;
  font-size: 1.05rem;
}

.business-benefits {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.business-benefits li {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.92rem;
  font-weight: 700;
}

.business-benefits span {
  color: #8bd78a;
  font-size: 0.75rem;
  font-weight: 800;
}

.site-footer {
  color: #d7e2e9;
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.85fr) 1fr;
  gap: 40px;
  padding-block: 70px 55px;
}

.footer-brand .wordmark {
  width: 180px;
  min-width: 180px;
  margin-bottom: 20px;
}

.footer-brand p {
  margin: 0;
  font-size: 0.83rem;
}

.footer-supporter {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  color: #d7e2e9;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.75rem;
  line-height: 1.35;
}

.footer-supporter img {
  width: 28px;
  height: 34px;
  object-fit: contain;
}

.footer-supporter strong {
  color: var(--white);
  font-size: 0.75rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column h3 {
  margin-bottom: 8px;
  color: #9adc98;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a,
.footer-bottom a {
  color: #d7e2e9;
  font-size: 0.75rem;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
}

.footer-social .hand-note {
  color: var(--white);
  font-size: 2rem;
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.75rem;
}

.footer-bottom nav {
  display: flex;
  gap: 22px;
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 0.75rem;
  }

  .search-card {
    grid-template-columns: 1fr 1.3fr;
  }

  .search-button {
    width: 100%;
  }

  .matching-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 55px;
  }

  .profession-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .company-grid {
    display: flex;
    padding: 2px 2px 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .company-grid::-webkit-scrollbar {
    display: none;
  }

  .company-card {
    min-width: calc(33.333% - 12px);
    scroll-snap-align: start;
  }

  .carousel-next,
  .carousel-dots {
    display: grid;
  }

  .carousel-dots {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1.25fr repeat(3, 1fr);
  }

  .footer-social {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-cta,
  .search-toggle {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    min-height: 680px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(242, 246, 244, 0.86), rgba(242, 246, 244, 0.5) 50%, rgba(242, 246, 244, 0.05));
  }

  .matching-grid,
  .eric-grid {
    grid-template-columns: 1fr;
  }

  .matching-copy {
    max-width: 620px;
  }

  .matching-visual {
    max-width: 760px;
  }

  .opportunities-grid {
    grid-template-columns: 1fr;
  }

  .practice-card {
    min-height: 500px;
  }

  .jobs-panel {
    padding-bottom: 0;
  }

  .eric-figure {
    max-width: 720px;
  }

  .region-content {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .business-grid {
    grid-template-columns: 1fr;
  }

  .business-benefits {
    grid-template-columns: 1fr 1fr;
  }

  .business-benefits li:nth-child(odd) {
    padding-right: 20px;
  }

  .business-benefits li:nth-child(even) {
    padding-left: 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand,
  .footer-social {
    grid-column: 1 / -1;
  }

  .footer-column:nth-of-type(3) {
    grid-column: auto;
  }
}

@media (max-width: 740px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding-block: 72px;
  }

  .header-inner {
    min-height: 68px;
    gap: 16px;
  }

  .wordmark {
    width: 142px;
    min-width: 142px;
  }

  .mobile-nav {
    height: calc(100dvh - 68px);
  }

  .hero {
    display: grid;
    min-height: 0;
    grid-template-rows: clamp(340px, 56svh, 480px) auto;
    background: var(--off-white);
  }

  .hero-image {
    position: relative;
    inset: auto;
    z-index: 0;
    width: 100%;
    height: 100%;
    grid-column: 1;
    grid-row: 1;
    object-position: 67% center;
  }

  .hero-shade {
    position: absolute;
    inset: 0 0 auto;
    z-index: 1;
    height: clamp(340px, 56svh, 480px);
    grid-row: 1;
    background: linear-gradient(180deg, transparent 48%, rgba(7, 54, 90, 0.26));
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    min-height: 0;
    grid-column: 1;
    grid-row: 2;
    padding-top: 34px;
    padding-bottom: 82px;
  }

  h1 {
    font-size: clamp(2.7rem, 12vw, 4.3rem);
    line-height: 1.03;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-content .button-row {
    align-items: stretch;
  }

  .hero-content .button {
    flex: 1 1 210px;
  }

  .search-wrap {
    margin-top: -52px;
  }

  .search-wrap::before {
    top: 52px;
  }

  .search-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  .choice-row {
    grid-template-columns: 1fr 1fr;
  }

  .choice {
    min-height: 44px;
  }

  .matching-section {
    padding-top: 48px;
  }

  .supporter-card {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    padding: 14px 16px;
  }

  .supporter-crest {
    width: 56px;
    height: 56px;
  }

  .supporter-crest img {
    width: 40px;
    height: 48px;
  }

  .supporter-link {
    grid-column: 2;
    margin-top: -4px;
  }

  .matching-visual {
    overflow: hidden;
  }

  .matching-steps {
    display: grid;
    gap: 22px;
  }

  .matching-step {
    display: grid;
    width: 100%;
    grid-template-columns: 66px 1fr;
    align-items: center;
    column-gap: 18px;
    text-align: left;
  }

  .matching-step:not(:last-child)::after {
    top: 65px;
    left: 31px;
    width: 2px;
    height: 25px;
    background: var(--navy);
    opacity: 0.35;
  }

  .matching-icon {
    width: 66px;
    height: 66px;
    grid-row: 1 / span 2;
    margin: 0;
  }

  .matching-step strong {
    align-self: end;
    font-size: 0.95rem;
  }

  .matching-step p {
    align-self: start;
    font-size: 0.78rem;
  }

  .section-heading {
    align-items: flex-start;
    margin-bottom: 24px;
  }

  .section-heading:not(.compact) {
    flex-direction: column;
    gap: 12px;
  }

  .profession-grid {
    grid-template-columns: 1fr 1fr;
  }

  .profession-card {
    min-height: 142px;
  }

  .company-card {
    min-width: min(84vw, 350px);
  }

  .carousel-next {
    right: 8px;
  }

  .practice-card {
    min-height: 610px;
  }

  .practice-card > img {
    object-position: 68% center;
  }

  .practice-overlay {
    background: linear-gradient(180deg, rgba(3, 24, 38, 0.2) 0%, rgba(3, 24, 38, 0.88) 62%, rgba(3, 24, 38, 0.96) 100%);
  }

  .practice-content {
    justify-content: flex-end;
    padding: 34px 26px 44px;
  }

  .practice-note {
    top: 28px;
    right: 24px;
    bottom: auto;
  }

  .section-heading.compact {
    display: block;
  }

  .section-heading.compact .text-link {
    display: inline-block;
    margin-top: 10px;
  }

  .job-filters {
    display: flex;
    padding-bottom: 4px;
    overflow-x: auto;
  }

  .opportunities-grid .jobs-panel {
    order: -1;
  }

  .job-filters button {
    min-width: 112px;
  }

  .job-card {
    grid-template-columns: minmax(0, 1fr) 16px;
    gap: 10px;
    padding-inline: 12px;
  }

  .job-icon {
    width: 36px;
    height: 36px;
  }

  .eric-grid {
    gap: 38px;
  }

  .eric-figure > img {
    min-height: 450px;
    aspect-ratio: auto;
    object-position: 48% center;
  }

  .region-content {
    padding-block: 64px;
  }

  .region-promises {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .region-promises > div {
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .promise-icon {
    margin: 0;
  }

  .business-benefits {
    grid-template-columns: 1fr;
  }

  .business-benefits li:nth-child(n) {
    padding-inline: 4px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 28px;
  }

  .footer-brand,
  .footer-social {
    grid-column: 1 / -1;
  }

  .footer-column:nth-of-type(3) {
    grid-column: auto;
  }

  .footer-social {
    justify-content: flex-start;
    gap: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 22px;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .section {
    padding-block: 60px;
  }

  .wordmark {
    width: 132px;
    min-width: 132px;
  }

  .button-row {
    flex-direction: column;
  }

  .hero-content .button {
    flex-basis: auto;
    width: 100%;
  }

  .section-heading h2 {
    font-size: 1.95rem;
  }

  .search-card {
    padding: 16px;
  }

  .supporter-copy small {
    display: none;
  }

  .supporter-link {
    font-size: 0.75rem;
  }

  .practice-card {
    min-height: 560px;
  }

  .practice-content {
    padding: 30px 20px 36px;
  }

  .practice-note {
    display: none;
  }

  .profession-card strong {
    font-size: 0.75rem;
  }

  .job-card h3 {
    font-size: 0.75rem;
  }

  .eric-figure > img {
    min-height: 340px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-social {
    grid-column: auto;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
