:root {
  --ink: #17201c;
  --text: #303832;
  --muted: #667168;
  --line: #ded8ca;
  --paper: #fffdf7;
  --ground: #f5f3ed;
  --mist: #e9efe5;
  --sage: #53664e;
  --sage-dark: #2d3f36;
  --copper: #b8673f;
  --copper-dark: #8e472d;
  --amber: #dda35f;
  --shadow: 0 18px 50px rgba(23, 32, 28, 0.12);
  --soft-shadow: 0 14px 34px rgba(23, 32, 28, 0.09);
  --radius: 8px;
  --container: min(1160px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--ground);
  line-height: 1.55;
  letter-spacing: 0;
}

body::selection {
  color: var(--paper);
  background: var(--copper);
}

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

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

button,
input {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 14px;
  left: 50%;
  width: min(1180px, calc(100vw - 48px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px;
  color: var(--paper);
  background: rgba(23, 32, 28, 0.66);
  border: 1px solid rgba(255, 253, 247, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
}

.site-header--static {
  position: sticky;
  top: 18px;
  left: auto;
  transform: none;
  width: var(--container);
  margin: 18px auto 0;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.92);
  border: 1px solid rgba(23, 32, 28, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  border-color: rgba(23, 32, 28, 0.1);
  box-shadow: var(--soft-shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  font-weight: 750;
}

.site-header--static .brand {
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

.brand__logo {
  width: 166px;
  height: 48px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  padding: 0;
  color: rgba(255, 253, 247, 0.86);
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  font-size: 14px;
}

.site-header--static .site-nav {
  color: var(--muted);
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

.site-nav a,
.site-footer a {
  transition: color 0.2s ease;
}

.site-nav a {
  padding: 10px 0;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--amber);
}

.site-nav a:hover {
  background: transparent;
}

.header-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  color: var(--paper);
  background: var(--copper);
  border-radius: 6px;
  font-weight: 750;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: var(--copper-dark);
  box-shadow: 0 10px 22px rgba(142, 71, 45, 0.22);
}

.hero {
  --hero-shift: 0px;
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  color: var(--paper);
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -7% 0;
  background: url("assets/images/hero-port.jpg") center / cover no-repeat;
  transform: translate3d(0, var(--hero-shift), 0) scale(1.05);
  transition: transform 0.16s linear;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 15, 13, 0.76) 0%, rgba(10, 15, 13, 0.48) 48%, rgba(10, 15, 13, 0.18) 100%),
    linear-gradient(180deg, rgba(10, 15, 13, 0.18) 0%, rgba(10, 15, 13, 0.68) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 160px 0 82px;
}

.hero__panel {
  width: min(720px, 100%);
  padding: clamp(26px, 4vw, 48px);
  background: rgba(23, 32, 28, 0.7);
  border: 1px solid rgba(255, 253, 247, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: #f1bd78;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.04;
}

.hero h1,
.final-cta h2,
.thanks-hero h1 {
  color: var(--paper);
}

h1 {
  margin-bottom: 18px;
  font-size: 88px;
  font-weight: 820;
}

h2 {
  margin-bottom: 18px;
  font-size: 56px;
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 29px;
  font-weight: 780;
}

.hero__lead {
  max-width: 600px;
  margin-bottom: 26px;
  color: rgba(255, 253, 247, 0.9);
  font-size: 28px;
  line-height: 1.22;
}

.hero__bullets {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  color: rgba(255, 253, 247, 0.92);
  font-size: 17px;
}

.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__bullets img {
  width: 20px;
  height: 20px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.button--primary {
  color: var(--paper);
  background: linear-gradient(135deg, var(--copper), #cf8148);
  box-shadow: 0 14px 34px rgba(184, 103, 63, 0.28);
}

.button--primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--copper-dark), var(--copper));
  box-shadow: 0 18px 40px rgba(142, 71, 45, 0.32);
}

.button--secondary {
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.button--secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 103, 63, 0.4);
  color: var(--copper-dark);
}

.microcopy {
  display: grid;
  gap: 3px;
  color: rgba(255, 253, 247, 0.72);
  font-size: 14px;
}

.microcopy--light {
  margin: 18px 0 0;
  color: rgba(255, 253, 247, 0.78);
}

.section {
  padding: clamp(76px, 9vw, 124px) 0;
}

.section--company,
.section--directions,
.section--legal {
  background: var(--paper);
}

.section--included {
  background:
    linear-gradient(180deg, rgba(233, 239, 229, 0.72), rgba(245, 243, 237, 0.96));
}

.section--quiz {
  background: var(--sage-dark);
  color: var(--paper);
}

.section--quiz h2,
.section--quiz h3,
.section--quiz .section-head p {
  color: var(--paper);
}

.section--process {
  background: var(--mist);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.split--process {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
}

.media-frame,
.support-photo {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--paper);
}

.media-frame img,
.support-photo img,
.vacancy-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.media-frame {
  aspect-ratio: 4 / 5;
}

.media-frame--tall {
  aspect-ratio: 4 / 5.4;
}

.media-frame:hover img,
.support-photo:hover img,
.vacancy-card:hover img {
  transform: scale(1.045) translateY(-2px);
}

.section-copy .body-large {
  margin: 24px 0 0;
}

.body-large {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.proof-item {
  min-height: 132px;
  padding: 18px;
  background: var(--ground);
  border: 1px solid rgba(23, 32, 28, 0.08);
  border-radius: var(--radius);
}

.proof-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--copper-dark);
  font-size: 34px;
  line-height: 1;
}

.proof-item span {
  color: var(--muted);
  font-size: 14px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head--wide {
  max-width: 900px;
}

.section-head p {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
}

.included-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.86fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: stretch;
}

.included-list {
  display: grid;
  gap: 14px;
}

.included-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 86px;
  padding: 18px;
  background: rgba(255, 253, 247, 0.9);
  border: 1px solid rgba(23, 32, 28, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(23, 32, 28, 0.05);
}

.included-item span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--paper);
  background: var(--sage);
  border-radius: 7px;
  font-weight: 800;
}

.included-item p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 680;
}

.support-photo {
  position: relative;
  min-height: 520px;
}

.support-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 18px;
  color: var(--paper);
  background: rgba(23, 32, 28, 0.78);
  border-radius: 7px;
  backdrop-filter: blur(10px);
}

.vacancy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.vacancy-card {
  overflow: hidden;
  min-height: 430px;
  background: var(--paper);
  border: 1px solid rgba(23, 32, 28, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.vacancy-card:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 103, 63, 0.26);
  box-shadow: 0 22px 54px rgba(23, 32, 28, 0.16);
}

.vacancy-card img {
  height: 225px;
}

.vacancy-card__body {
  padding: 22px;
}

.vacancy-card h3 {
  margin-bottom: 18px;
  font-size: 23px;
  line-height: 1.12;
}

.vacancy-card p {
  margin-bottom: 14px;
  color: var(--copper-dark);
  font-weight: 800;
}

.vacancy-card span {
  display: inline-flex;
  padding: 7px 10px;
  color: var(--sage-dark);
  background: var(--mist);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 740;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.quiz-container {
  max-width: 880px;
}

.quiz {
  padding: clamp(24px, 5vw, 42px);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.quiz h3 {
  color: var(--ink);
}

.quiz__top {
  margin-bottom: 28px;
}

.quiz__step-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.quiz__progress {
  overflow: hidden;
  height: 8px;
  background: #e8e2d5;
  border-radius: 999px;
}

.quiz__progress span {
  display: block;
  width: 10%;
  height: 100%;
  background: linear-gradient(90deg, var(--sage), var(--copper));
  border-radius: inherit;
  transition: width 0.38s ease;
}

.quiz-step {
  animation: stepIn 0.28s ease both;
}

.quiz-step h3 {
  margin-bottom: 22px;
}

.quiz-options {
  display: grid;
  gap: 12px;
}

.quiz-options button {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  color: var(--ink);
  text-align: left;
  background: #faf7ef;
  border: 1px solid #ded7c7;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 760;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.quiz-options button:hover,
.quiz-options button.is-selected {
  transform: translateX(4px);
  border-color: rgba(184, 103, 63, 0.58);
  background: #fffaf0;
  box-shadow: 0 10px 24px rgba(184, 103, 63, 0.12);
}

.quiz-options button.is-selected {
  color: var(--copper-dark);
}

.quiz-back {
  margin-top: 18px;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 760;
}

.quiz-back:hover {
  color: var(--copper-dark);
}

.quiz-summary {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
}

.quiz-summary div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.quiz-summary dt {
  color: var(--muted);
  font-size: 14px;
}

.quiz-summary dd {
  margin: 0;
  color: var(--ink);
  font-weight: 790;
}

.lead-form {
  display: grid;
  gap: 16px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.lead-form input[type="text"] {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  color: var(--ink);
  background: #fffaf0;
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lead-form input[type="text"]:focus {
  background: var(--paper);
  border-color: var(--copper);
  box-shadow: 0 0 0 4px rgba(184, 103, 63, 0.12);
}

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

.process-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 68px;
  padding: 14px 18px;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.78);
  border: 1px solid rgba(23, 32, 28, 0.08);
  border-radius: var(--radius);
  font-weight: 760;
}

.process-list span {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--paper);
  background: var(--copper);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 820;
}

.final-cta {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: grid;
  align-items: center;
  color: var(--paper);
  background: var(--ink);
}

.final-cta__image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 24, 21, 0.82), rgba(16, 24, 21, 0.42)),
    url("assets/images/final-road.jpg") center / cover no-repeat;
  transform: scale(1.03);
}

.final-cta__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 92px 0;
}

.final-cta h2 {
  margin-bottom: 18px;
}

.final-cta p {
  max-width: 620px;
  color: rgba(255, 253, 247, 0.84);
  font-size: 20px;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.84fr);
  gap: clamp(28px, 5vw, 62px);
}

.section--legal p {
  color: var(--muted);
}

.legal-card {
  padding: 24px;
  background: var(--ground);
  border: 1px solid rgba(23, 32, 28, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.legal-card h3,
.legal-card h2 {
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-card p {
  margin-bottom: 10px;
}

.site-footer {
  padding: 38px 0;
  color: rgba(255, 253, 247, 0.72);
  background: #151c19;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.site-footer .brand {
  margin-bottom: 16px;
  color: var(--paper);
}

.site-footer p {
  max-width: 620px;
  margin-bottom: 10px;
  font-size: 14px;
}

.site-footer a {
  color: var(--paper);
  font-weight: 760;
}

.simple-page {
  min-height: 100vh;
  background: var(--ground);
}

.thanks-hero {
  min-height: 78vh;
  display: grid;
  align-items: center;
  padding: 96px 0;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(16, 24, 21, 0.86), rgba(16, 24, 21, 0.5)),
    url("assets/images/thanks-worker.jpg") center / cover no-repeat;
}

.thanks-card {
  max-width: 760px;
  padding: clamp(28px, 5vw, 52px);
  background: rgba(23, 32, 28, 0.72);
  border: 1px solid rgba(255, 253, 247, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.thanks-card p {
  color: rgba(255, 253, 247, 0.84);
  font-size: 19px;
}

.legal-page {
  padding: 118px 0 80px;
}

.legal-document {
  max-width: 900px;
  padding: clamp(28px, 5vw, 54px);
  background: var(--paper);
  border: 1px solid rgba(23, 32, 28, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.legal-document h1 {
  color: var(--ink);
  font-size: 64px;
}

.legal-document h2 {
  margin-top: 34px;
  font-size: 26px;
}

.legal-document p {
  color: var(--muted);
}

.legal-card--document {
  margin: 32px 0;
  box-shadow: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.64s ease, transform 0.64s ease;
  transition-delay: var(--delay, 0ms);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@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;
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(100vw - 28px, 760px);
  }

  .site-nav {
    display: none;
  }

  .split,
  .split--process,
  .included-layout,
  .legal-grid {
    grid-template-columns: 1fr;
  }

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

  .media-frame,
  .media-frame--tall {
    aspect-ratio: 16 / 10;
  }

  .support-photo {
    min-height: 430px;
  }

  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 44px;
  }

  h3 {
    font-size: 26px;
  }

  .hero__lead {
    font-size: 24px;
  }

  .legal-document h1 {
    font-size: 52px;
  }
}

@media (max-width: 680px) {
  :root {
    --container: calc(100vw - 24px);
  }

  .site-header {
    top: 10px;
    width: calc(100vw - 24px);
    gap: 12px;
    padding: 8px;
  }

  .brand {
    min-height: 0;
    padding: 0;
  }

  .brand__logo {
    width: 48px;
    height: 48px;
    object-fit: cover;
    object-position: left center;
  }

  .header-cta {
    min-height: 48px;
    padding: 10px 12px;
    font-size: 14px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero__inner {
    padding: 118px 0 34px;
  }

  .hero__panel {
    padding: 24px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 24px;
  }

  .hero__lead {
    font-size: 20px;
  }

  .legal-document h1 {
    font-size: 40px;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

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

  .proof-item {
    min-height: auto;
  }

  .included-item {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    padding: 15px;
  }

  .support-photo {
    min-height: 360px;
  }

  .vacancy-card {
    min-height: auto;
  }

  .vacancy-card img {
    height: 220px;
  }

  .quiz {
    padding: 22px;
  }

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

  .final-cta {
    min-height: 500px;
  }

  .legal-page {
    padding-top: 92px;
  }
}
