:root {
  color-scheme: light;
  --teal: #5A9DA8;
  --teal-deep: #477F88;
  --warm-white: #F6F5F2;
  --warm-white-2: #EEEDE8;
  --sage-gray: #95A0A0;
  --sage-pale: #DDE3E0;
  --charcoal-slate: #2F3437;
  --evergreen: #556A63;
  --evergreen-deep: #41534D;
  --white: #FFFFFF;
  --line: rgba(47, 52, 55, 0.13);
  --line-soft: rgba(47, 52, 55, 0.08);
  --shadow: 0 18px 42px rgba(47, 52, 55, 0.08);
  --radius: 10px;
  --max: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal-slate);
  background: var(--warm-white);
  font-family:
    "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

input,
textarea {
  min-width: 0;
}

section {
  scroll-margin-top: calc(var(--header-height) + 22px);
}

::selection {
  color: var(--white);
  background: var(--teal-deep);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 14px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--charcoal-slate);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 36px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  color: var(--charcoal-slate);
  background: rgba(246, 245, 242, 0.88);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, var(--max));
  min-height: var(--header-height);
  margin-inline: auto;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-size: 1.05rem;
  font-weight: 700;
}

.brand-text {
  display: grid;
  gap: 1px;
  line-height: 1.08;
}

.brand-text span:first-child {
  color: var(--charcoal-slate);
  font-size: 1rem;
  font-weight: 700;
}

.brand-text span:last-child {
  color: var(--evergreen);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 12px;
  color: rgba(47, 52, 55, 0.78);
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 650;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--charcoal-slate);
  background: rgba(90, 157, 168, 0.12);
}

.nav-links .nav-cta {
  margin-left: 8px;
  color: var(--white);
  background: var(--evergreen);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  color: var(--white);
  background: var(--charcoal-slate);
}

.menu-toggle {
  display: inline-grid;
  align-content: center;
  justify-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  color: var(--charcoal-slate);
  background: rgba(90, 157, 168, 0.1);
  border: 1px solid rgba(90, 157, 168, 0.28);
  border-radius: 999px;
  cursor: pointer;
}

.menu-toggle__line {
  width: 19px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links.is-open {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  display: grid;
  align-content: start;
  height: calc(100svh - var(--header-height));
  padding: 18px;
  background: rgba(246, 245, 242, 0.98);
  border-top: 1px solid var(--line-soft);
}

.nav-links.is-open a {
  padding: 16px 8px;
  color: var(--charcoal-slate);
  border-bottom: 1px solid var(--line-soft);
  border-radius: 0;
  font-size: 1.08rem;
}

.nav-links.is-open .nav-cta {
  margin: 18px 0 0;
  padding: 16px;
  color: var(--white);
  text-align: center;
  border-bottom: 0;
  border-radius: 999px;
}

.section {
  position: relative;
  padding: 84px 0;
}

.section-dark,
.section-warm,
.section-light {
  color: var(--charcoal-slate);
  background: var(--warm-white);
}

.section-charcoal {
  color: var(--charcoal-slate);
  background:
    linear-gradient(180deg, rgba(149, 160, 160, 0.18), rgba(149, 160, 160, 0.06)),
    var(--warm-white);
}

.section-apply {
  color: var(--charcoal-slate);
  background:
    linear-gradient(135deg, rgba(90, 157, 168, 0.12), rgba(85, 106, 99, 0.08)),
    var(--warm-white);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  padding: 48px 0 64px;
  background:
    linear-gradient(180deg, rgba(246, 245, 242, 0.96), rgba(246, 245, 242, 0.86)),
    var(--warm-white);
  isolation: isolate;
}

.hero-media {
  display: none;
}

.hero-overlay {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 26px;
}

.hero-copy {
  display: grid;
  gap: 0;
  max-width: 780px;
  padding-top: 26px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--evergreen);
  font-size: 0.74rem;
  font-weight: 750;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--charcoal-slate);
  font-family:
    "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  font-weight: 520;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.45rem, 9vw, 4.8rem);
}

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

h3 {
  font-size: 1.25rem;
}

.hero-subhead {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(47, 52, 55, 0.88);
  font-size: 1.08rem;
}

.hero-support {
  max-width: 690px;
  margin: 16px 0 0;
  color: rgba(47, 52, 55, 0.7);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 750;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--evergreen);
  border: 1px solid var(--evergreen);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--charcoal-slate);
  border-color: var(--charcoal-slate);
}

.button-ghost {
  color: var(--charcoal-slate);
  background: transparent;
  border: 1px solid rgba(47, 52, 55, 0.24);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--teal);
  background: rgba(90, 157, 168, 0.1);
}

.hero-card {
  display: grid;
  gap: 9px;
  padding: 22px;
  color: var(--charcoal-slate);
  background: rgba(255, 255, 255, 0.72);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
}

.hero-card span {
  color: rgba(47, 52, 55, 0.65);
  font-size: 0.91rem;
}

.hero-card strong {
  color: var(--charcoal-slate);
  font-size: 1.08rem;
  font-weight: 700;
}

.hero-project-panel {
  min-height: 285px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.section-intro {
  max-width: 680px;
}

.section-intro p:not(.eyebrow),
.section-kicker {
  margin: 16px 0 0;
  color: rgba(47, 52, 55, 0.72);
  font-size: 1rem;
}

.intro-wide {
  max-width: 840px;
}

.split-heading {
  display: grid;
  gap: 22px;
  margin-bottom: 38px;
}

.section-kicker {
  max-width: 600px;
}

.cards-four,
.project-grid,
.metrics-grid,
.roles-grid,
.fit-grid {
  display: grid;
  gap: 18px;
}

.cards-four {
  margin-top: 34px;
}

.signal-card,
.fit-card,
.metric-card,
.role-card,
.wage-step,
.application-form {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.signal-card {
  min-height: 204px;
  padding: 24px;
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.signal-card:hover {
  transform: translateY(-3px);
  background: var(--white);
}

.card-index {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--teal-deep);
  font-size: 0.82rem;
  font-weight: 750;
}

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

.signal-card p {
  margin: 0;
  color: rgba(47, 52, 55, 0.68);
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-item {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 18px;
  padding: 22px 0;
  color: var(--charcoal-slate);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-question span:first-child {
  font-size: 1.06rem;
  font-weight: 650;
}

.faq-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  flex: 0 0 auto;
  color: var(--teal-deep);
  border: 1px solid rgba(90, 157, 168, 0.38);
  border-radius: 50%;
  line-height: 1;
}

.faq-answer {
  display: none;
  padding: 0 42px 22px 0;
  color: rgba(47, 52, 55, 0.68);
}

.faq-answer p {
  margin: 0;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open .faq-icon {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.project-card {
  overflow: hidden;
  background: var(--white);
  border-radius: 14px;
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.project-card:hover {
  transform: translateY(-3px);
}

.project-visual {
  min-height: 230px;
}

.project-card__body {
  padding: 20px;
}

.project-card p {
  margin: 10px 0 0;
  color: rgba(47, 52, 55, 0.68);
}

.photo {
  position: relative;
  overflow: hidden;
  background: var(--sage-pale);
}

.photo::before,
.photo::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.photo::before {
  inset: 0;
}

.photo::after {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(246, 245, 242, 0.03), rgba(47, 52, 55, 0.12)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 38%, rgba(255, 255, 255, 0.08));
}

.photo-label {
  position: absolute;
  z-index: 1;
  right: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 7px 10px;
  color: var(--charcoal-slate);
  background: rgba(246, 245, 242, 0.82);
  border-radius: 999px;
  font-size: 0.69rem;
  font-weight: 750;
  text-transform: uppercase;
}

.photo--hero::before {
  background:
    radial-gradient(circle at 76% 20%, rgba(246, 245, 242, 0.82) 0 2px, rgba(246, 245, 242, 0.22) 3px 70px, transparent 71px),
    linear-gradient(120deg, rgba(85, 106, 99, 0.82) 0 34%, rgba(90, 157, 168, 0.58) 34% 50%, rgba(149, 160, 160, 0.72) 50% 100%),
    repeating-linear-gradient(18deg, rgba(246, 245, 242, 0.22) 0 1px, transparent 1px 38px);
}

.photo--hero-panel::before {
  background:
    radial-gradient(circle at 72% 26%, rgba(246, 245, 242, 0.9) 0 2px, rgba(246, 245, 242, 0.24) 3px 64px, transparent 65px),
    linear-gradient(145deg, rgba(85, 106, 99, 0.78), rgba(90, 157, 168, 0.62) 46%, rgba(149, 160, 160, 0.62)),
    repeating-linear-gradient(110deg, rgba(246, 245, 242, 0.2) 0 1px, transparent 1px 34px);
}

.photo--patios::before {
  background:
    linear-gradient(150deg, rgba(246, 245, 242, 0.18), transparent),
    repeating-linear-gradient(24deg, #8C9896 0 34px, #DDE3E0 34px 36px, #6F8586 36px 70px, #E8EAE5 70px 72px);
}

.photo--walls::before {
  background:
    linear-gradient(180deg, rgba(246, 245, 242, 0.1), rgba(47, 52, 55, 0.12)),
    repeating-linear-gradient(0deg, #9AA3A1 0 30px, #F6F5F2 30px 32px, #6F807B 32px 62px, #F6F5F2 62px 64px);
}

.photo--kitchens::before {
  background:
    radial-gradient(circle at 70% 42%, rgba(246, 245, 242, 0.82) 0 3px, rgba(246, 245, 242, 0.18) 4px 42px, transparent 43px),
    linear-gradient(90deg, #556A63 0 31%, #DDE3E0 31% 48%, #5A9DA8 48% 62%, #95A0A0 62% 100%);
}

.photo--pergolas::before {
  background:
    linear-gradient(90deg, transparent 0 17%, rgba(85, 106, 99, 0.72) 17% 20%, transparent 20% 43%, rgba(85, 106, 99, 0.72) 43% 46%, transparent 46% 72%, rgba(85, 106, 99, 0.72) 72% 75%, transparent 75% 100%),
    repeating-linear-gradient(0deg, rgba(85, 106, 99, 0.78) 0 7px, transparent 7px 42px),
    linear-gradient(160deg, #DDE3E0, #95A0A0 62%, #5A9DA8);
}

.photo--lighting::before {
  background:
    radial-gradient(circle at 28% 68%, rgba(246, 245, 242, 0.9) 0 4px, rgba(246, 245, 242, 0.25) 5px 42px, transparent 43px),
    radial-gradient(circle at 72% 46%, rgba(246, 245, 242, 0.72) 0 4px, rgba(246, 245, 242, 0.2) 5px 38px, transparent 39px),
    linear-gradient(155deg, #556A63, #5A9DA8 58%, #95A0A0);
}

.photo--turf::before {
  background:
    linear-gradient(145deg, rgba(246, 245, 242, 0.12), rgba(85, 106, 99, 0.12)),
    repeating-linear-gradient(98deg, #6B817A 0 3px, #95A0A0 3px 6px, #556A63 6px 9px);
}

.photo--drainage::before {
  background:
    linear-gradient(124deg, #DDE3E0 0 40%, #556A63 40% 46%, #95A0A0 46% 100%),
    repeating-linear-gradient(0deg, rgba(246, 245, 242, 0.2) 0 1px, transparent 1px 30px);
}

.photo--resin::before {
  background:
    radial-gradient(circle at 66% 42%, rgba(246, 245, 242, 0.3), transparent 24%),
    repeating-linear-gradient(35deg, #95A0A0 0 12px, #DDE3E0 12px 18px, #5A9DA8 18px 28px);
}

.dashboard-section {
  background:
    linear-gradient(180deg, rgba(90, 157, 168, 0.12), rgba(246, 245, 242, 0.98)),
    var(--warm-white);
}

.metrics-grid {
  align-items: stretch;
}

.metric-card {
  display: grid;
  min-height: 164px;
  padding: 20px;
}

.metric-card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.metric-card__label {
  color: rgba(47, 52, 55, 0.66);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.metric-card__status {
  padding: 4px 8px;
  color: var(--evergreen-deep);
  background: rgba(90, 157, 168, 0.13);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 750;
}

.metric-card__value {
  margin-top: 20px;
  color: var(--charcoal-slate);
  font-size: 2rem;
  font-weight: 560;
  line-height: 1;
}

.metric-card__note {
  margin: 9px 0 0;
  color: rgba(47, 52, 55, 0.64);
  font-size: 0.9rem;
}

.metric-bar {
  position: relative;
  align-self: end;
  height: 5px;
  margin-top: 22px;
  overflow: hidden;
  background: rgba(47, 52, 55, 0.08);
  border-radius: 999px;
}

.metric-bar::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--fill, 50%);
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--evergreen));
  border-radius: inherit;
}

.wage-ladder {
  display: grid;
  gap: 12px;
  counter-reset: ladder;
}

.wage-step {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 22px;
  counter-increment: ladder;
}

.wage-step::before {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  content: counter(ladder);
  font-size: 0.88rem;
  font-weight: 750;
}

.wage-step__main {
  display: grid;
  gap: 16px;
}

.wage-step__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 18px;
}

.wage-step__pay {
  color: var(--evergreen-deep);
  font-weight: 750;
}

.wage-step dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.wage-step dt,
.role-card dt {
  color: rgba(47, 52, 55, 0.58);
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
}

.wage-step dd,
.role-card dd {
  margin: 4px 0 0;
  color: rgba(47, 52, 55, 0.7);
}

.standards-section {
  color: var(--warm-white);
  background: var(--charcoal-slate);
}

.standards-section h2,
.standards-section h3 {
  color: var(--warm-white);
}

.standards-section .eyebrow {
  color: var(--sage-pale);
}

.standards-grid {
  display: grid;
  gap: 36px;
}

.standards-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(246, 245, 242, 0.78);
  font-size: 1.04rem;
}

.callout {
  margin-top: 28px;
  padding: 20px 0 0;
  color: var(--warm-white);
  border-top: 1px solid rgba(246, 245, 242, 0.22);
  font-weight: 620;
}

.standards-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid rgba(246, 245, 242, 0.2);
}

.standards-list li {
  position: relative;
  padding: 15px 0 15px 26px;
  color: rgba(246, 245, 242, 0.78);
  border-bottom: 1px solid rgba(246, 245, 242, 0.14);
}

.standards-list li::before {
  position: absolute;
  top: 24px;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--teal);
  border-radius: 50%;
  transform: translateY(-50%);
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 13px;
  width: 2px;
  content: "";
  background: rgba(90, 157, 168, 0.28);
}

.timeline-item {
  position: relative;
  display: grid;
  gap: 7px;
  padding: 0 0 26px 42px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  position: absolute;
  top: 8px;
  left: 4px;
  width: 20px;
  height: 20px;
  content: "";
  background: var(--warm-white);
  border: 5px solid var(--teal);
  border-radius: 50%;
}

.timeline-item time {
  color: var(--evergreen-deep);
  font-weight: 750;
}

.timeline-item p {
  margin: 0;
  color: rgba(47, 52, 55, 0.7);
}

.fit-card {
  padding: 24px;
}

.fit-card h3 {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}

.fit-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.fit-card li {
  position: relative;
  padding-left: 24px;
  color: rgba(47, 52, 55, 0.72);
}

.fit-card li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  transform: translateY(-50%);
}

.fit-card--good li::before {
  background: var(--teal);
}

.fit-card--bad li::before {
  background: var(--sage-gray);
}

.roles-grid {
  align-items: stretch;
}

.role-card {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 24px;
}

.role-card--featured {
  background:
    linear-gradient(135deg, rgba(90, 157, 168, 0.16), rgba(255, 255, 255, 0.72)),
    var(--white);
}

.role-card__header {
  display: grid;
  align-content: start;
  gap: 12px;
}

.role-card__tag {
  display: inline-flex;
  align-items: center;
  align-self: start;
  min-height: 26px;
  justify-self: start;
  padding: 5px 10px;
  color: var(--evergreen-deep);
  background: rgba(90, 157, 168, 0.17);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

.role-card p {
  margin: 0;
  color: rgba(47, 52, 55, 0.68);
}

.role-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.role-card .button {
  justify-self: start;
  margin-top: 4px;
}

.apply-grid {
  display: grid;
  gap: 34px;
}

.apply-copy {
  align-self: start;
}

.apply-copy p {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(47, 52, 55, 0.72);
  font-size: 1.04rem;
}

.apply-note {
  margin-top: 26px;
  padding: 20px 0 0;
  color: rgba(47, 52, 55, 0.76);
  border-top: 1px solid var(--line);
}

.application-form {
  display: grid;
  gap: 16px;
  padding: 20px;
  background: var(--white);
}

.form-row,
.form-row > div {
  display: grid;
  gap: 7px;
}

.two-col {
  grid-template-columns: 1fr;
  gap: 16px;
}

label {
  color: rgba(47, 52, 55, 0.72);
  font-size: 0.84rem;
  font-weight: 750;
}

input,
textarea {
  width: 100%;
  color: var(--charcoal-slate);
  background: var(--warm-white);
  border: 1px solid rgba(47, 52, 55, 0.18);
  border-radius: 8px;
  outline: 0;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

input {
  min-height: 46px;
  padding: 10px 12px;
}

textarea {
  min-height: 98px;
  padding: 12px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(90, 157, 168, 0.15);
}

input[type="file"] {
  padding: 11px;
  color: rgba(47, 52, 55, 0.72);
}

.field-error {
  min-height: 18px;
  color: #8A4B3F;
  font-size: 0.78rem;
}

.is-invalid {
  border-color: #8A4B3F;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--evergreen-deep);
  font-weight: 700;
}

.site-footer {
  padding: 42px 0;
  color: rgba(246, 245, 242, 0.78);
  background: var(--charcoal-slate);
}

.thank-you-section {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  place-items: center;
}

.thank-you-panel {
  max-width: 760px;
  padding: 72px 0;
}

.thank-you-panel p:not(.eyebrow) {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(47, 52, 55, 0.72);
  font-size: 1.08rem;
}

.thank-you-panel .button {
  margin-top: 32px;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-grid > div {
  display: grid;
  gap: 6px;
}

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

.footer-grid span {
  color: rgba(246, 245, 242, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  padding: 9px 12px;
  color: rgba(246, 245, 242, 0.72);
  background: rgba(246, 245, 242, 0.06);
  border-radius: 999px;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
  background: rgba(90, 157, 168, 0.24);
}

:focus-visible {
  outline: 3px solid rgba(90, 157, 168, 0.85);
  outline-offset: 3px;
}

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

  .cards-four,
  .project-grid,
  .metrics-grid,
  .roles-grid,
  .fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .wage-step {
    grid-template-columns: auto 1fr;
  }

  .wage-step dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .application-form {
    padding: 26px;
  }
}

@media (min-width: 860px) {
  :root {
    --header-height: 82px;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .section {
    padding: 112px 0;
  }

  .hero {
    display: grid;
    min-height: calc(100svh - var(--header-height));
    padding: 72px 0 78px;
  }

  .hero-media {
    position: absolute;
    z-index: 0;
    top: 58px;
    right: 0;
    bottom: 58px;
    display: block;
    width: min(46vw, 650px);
    border-radius: 22px 0 0 22px;
  }

  .hero-overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: block;
    background:
      linear-gradient(90deg, rgba(246, 245, 242, 1) 0%, rgba(246, 245, 242, 0.98) 45%, rgba(246, 245, 242, 0.56) 72%, rgba(246, 245, 242, 0.18) 100%);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(310px, 0.45fr);
    align-items: end;
    gap: 54px;
  }

  .hero-copy {
    grid-row: 1;
    grid-column: 1 / 2;
    max-width: 820px;
    padding-top: 0;
  }

  .hero-card {
    grid-row: 1;
    grid-column: 2;
    align-self: end;
    justify-self: start;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(8px);
  }

  .hero-project-panel {
    display: none;
  }

  h1 {
    font-size: clamp(3.8rem, 6.2vw, 5.6rem);
  }

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

  .hero-subhead {
    font-size: 1.16rem;
  }

  .split-heading {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
    align-items: end;
    gap: 64px;
    margin-bottom: 48px;
  }

  .cards-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .project-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .project-card:first-child,
  .project-card:nth-child(5) {
    grid-column: span 2;
  }

  .project-card:first-child .project-visual,
  .project-card:nth-child(5) .project-visual {
    min-height: 330px;
  }

  .metrics-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .wage-step__main {
    grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1fr);
    align-items: start;
  }

  .wage-step dl {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .standards-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }

  .standards-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 34px;
  }

  .timeline {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0;
  }

  .timeline::before {
    top: 14px;
    right: 8%;
    bottom: auto;
    left: 8%;
    width: auto;
    height: 2px;
  }

  .timeline-item {
    padding: 42px 14px 0 0;
  }

  .timeline-item::before {
    top: 4px;
    left: 0;
  }

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

  .role-card--featured {
    grid-row: span 2;
  }

  .apply-grid {
    grid-template-columns: minmax(0, 0.76fr) minmax(480px, 1fr);
    gap: 60px;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

@media (max-width: 420px) {
  .brand-text span:first-child {
    font-size: 0.94rem;
  }

  .brand-text span:last-child {
    font-size: 0.62rem;
  }

  .hero {
    padding: 34px 0 52px;
  }

  h1 {
    font-size: 2.3rem;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
