:root {
  --ink: #161b18;
  --espresso: #202522;
  --forest: #23392f;
  --walnut: #23392f;
  --copper: #b46f3c;
  --brass: #d8b36b;
  --cream: #eef1eb;
  --paper: #fbfaf5;
  --sage: #798a72;
  --muted: #6d746d;
  --line: rgba(22, 27, 24, 0.12);
  --shadow: 0 28px 70px rgba(22, 27, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--copper), var(--sage));
  transform: scaleX(0);
  transform-origin: left;
}

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

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

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(35, 57, 47, 0.18), transparent 16%),
    repeating-linear-gradient(90deg, rgba(108, 74, 47, 0.18) 0 1px, transparent 1px 8px);
  mix-blend-mode: multiply;
  animation: grainShift 12s linear infinite;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(calc(100% - 32px), 1260px);
  min-height: 72px;
  padding: 12px 14px 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(22, 27, 24, 0.58);
  color: #fff;
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, box-shadow 0.25s ease, top 0.25s ease;
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(22, 27, 24, 0.94);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 170px;
  min-width: 170px;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(255, 250, 242, 0.94);
}

.brand img,
.site-footer img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  padding: 0 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  opacity: 0.86;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--brass);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--brass);
  color: var(--ink);
  font-weight: 800;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 20, 17, 0.92), rgba(22, 45, 36, 0.58) 48%, rgba(22, 27, 24, 0.3)),
    linear-gradient(0deg, rgba(15, 20, 17, 0.58), transparent 42%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 170px 0 180px;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-label {
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 880px;
  font-size: clamp(3.5rem, 8vw, 7.8rem);
}

.hero-copy {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.hero-actions,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--brass);
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(216, 179, 107, 0.28);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button:disabled {
  border-color: rgba(109, 116, 109, 0.24);
  background: rgba(109, 116, 109, 0.14);
  color: var(--muted);
  cursor: not-allowed;
  box-shadow: none;
}

.button:disabled:hover {
  transform: none;
}

.button.light {
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-proof {
  position: absolute;
  left: max(20px, calc((100% - 1180px) / 2));
  bottom: 32px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(760px, calc(100% - 40px));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(22, 27, 24, 0.66);
  backdrop-filter: blur(16px);
}

.hero-proof div {
  min-width: 0;
  padding: 14px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong {
  display: block;
  color: var(--brass);
  font-size: clamp(0.98rem, 1.45vw, 1.16rem);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.hero-proof span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.74rem;
  line-height: 1.25;
}

.section {
  padding: 110px max(20px, calc((100vw - 1180px) / 2));
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}

.video-feature {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 46px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(35, 57, 47, 0.96), rgba(22, 27, 24, 0.98)),
    var(--forest);
  color: #fff;
}

.video-copy h2 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(2.2rem, 4.2vw, 4.6rem);
}

.video-copy .lead {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
}

.video-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #0b0e0c;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
  aspect-ratio: 16 / 9;
}

.video-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-shell::before {
  position: absolute;
  inset: -1px;
  z-index: 1;
  border: 1px solid rgba(216, 179, 107, 0.28);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.metric {
  min-height: 230px;
  padding: 44px 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(238, 241, 235, 0.94)),
    var(--paper);
}

.metric strong {
  display: block;
  color: var(--forest);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.95;
}

.metric > span {
  display: block;
  max-width: 210px;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.intro {
  background: var(--paper);
}

.intro-grid,
.split-layout,
.company-grid,
.contact {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.intro h2,
.section-heading h2,
.split-layout h2,
.company-copy h2,
.contact-copy h2,
.careers h2 {
  font-size: clamp(2.3rem, 5vw, 5rem);
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.5vw, 1.24rem);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading .eyebrow,
.split-layout .eyebrow,
.company-copy .eyebrow,
.contact-copy .eyebrow,
.careers .eyebrow {
  margin: 0 0 14px;
}

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

.service-panel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--espresso);
  box-shadow: var(--shadow);
}

.service-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.7s ease, opacity 0.7s ease;
}

.service-panel:hover img {
  opacity: 0.88;
  transform: scale(1.06);
}

.service-panel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.16) 45%, transparent 70%);
  content: "";
  transform: translateX(-120%);
  transition: transform 0.75s ease;
}

.service-panel:hover::after {
  transform: translateX(120%);
}

.service-content {
  position: absolute;
  inset: auto 0 0;
  padding: 34px;
  color: #fff;
  background: linear-gradient(0deg, rgba(22, 27, 24, 0.94), rgba(22, 27, 24, 0));
}

.service-content span {
  color: var(--brass);
  font-weight: 900;
}

.service-content h3,
.step h3 {
  margin: 12px 0 10px;
  font-size: 1.5rem;
  line-height: 1.15;
}

.service-content p,
.step p,
.company-copy p,
.contact-copy p,
.careers p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.dark-band {
  position: relative;
  overflow: hidden;
  background: var(--espresso);
  color: #fff;
}

.dark-band::before {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(216, 179, 107, 0.3) 34% 35%, transparent 35% 100%),
    repeating-linear-gradient(0deg, transparent 0 22px, rgba(255, 255, 255, 0.08) 22px 23px);
  content: "";
}

.dark-band > * {
  position: relative;
  z-index: 1;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.process-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.process-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.24s ease, transform 0.45s ease;
}

.process-image img.is-swapping {
  opacity: 0.42;
}

.steps {
  display: grid;
  gap: 22px;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.step:hover,
.step:focus {
  outline: 0;
  border-color: rgba(216, 179, 107, 0.46);
  transform: translateX(8px);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(216, 179, 107, 0.5);
  border-radius: 50%;
  color: var(--brass);
  font-weight: 900;
  transition: background 0.28s ease, color 0.28s ease;
}

.step:hover span,
.step:focus span {
  background: var(--brass);
  color: var(--ink);
}

.sustainability {
  background: linear-gradient(180deg, var(--paper), var(--cream));
}

.split-layout p:not(.eyebrow) {
  margin-top: 22px;
}

.pill-row span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--walnut);
  font-weight: 800;
}

.sustainability-art {
  position: relative;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  grid-template-rows: repeat(2, minmax(238px, 1fr));
  gap: 18px;
  min-height: 610px;
  isolation: isolate;
}

.sustainability-art::before {
  position: absolute;
  inset: 8% 5% 3%;
  z-index: -2;
  border-radius: 40% 60% 48% 52%;
  background:
    radial-gradient(circle at 58% 44%, rgba(35, 92, 71, 0.34), transparent 54%),
    radial-gradient(circle at 38% 62%, rgba(216, 179, 107, 0.18), transparent 58%);
  content: "";
  filter: blur(8px);
  opacity: 0.86;
}

.responsible-option {
  position: relative;
  min-height: 238px;
  overflow: hidden;
  border: 1px solid rgba(35, 92, 71, 0.16);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 30px 70px rgba(22, 27, 24, 0.16);
  cursor: default;
  transform: translateY(16px);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.responsible-option::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(22, 27, 24, 0.04), rgba(22, 27, 24, 0.76)),
    radial-gradient(circle at 82% 14%, rgba(216, 179, 107, 0.28), transparent 34%);
  content: "";
  pointer-events: none;
}

.responsible-option::after {
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(251, 250, 245, 0.2);
  border-radius: 6px;
  content: "";
  opacity: 0.72;
  pointer-events: none;
  transition: border-color 0.35s ease, inset 0.35s ease;
}

.responsible-option:hover {
  box-shadow:
    0 34px 76px rgba(22, 27, 24, 0.2),
    0 0 0 1px rgba(216, 179, 107, 0.18);
  transform: translateY(-10px) scale(1.02);
}

.responsible-option:hover::after {
  inset: 10px;
  border-color: rgba(216, 179, 107, 0.62);
}

.responsible-option > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.04);
  transition: filter 0.45s ease, transform 0.65s ease;
}

.responsible-option:hover > img {
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.1);
}

.option-fsc {
  grid-row: 1 / -1;
  min-height: 100%;
}

.option-cutting,
.option-network {
  min-height: 296px;
}

.responsible-option-overlay {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  z-index: 3;
  display: grid;
  gap: 7px;
}

.responsible-option-overlay span {
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.65rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.96;
}

.responsible-option-overlay strong {
  width: fit-content;
  padding: 8px 10px;
  border: 1px solid rgba(216, 179, 107, 0.4);
  border-radius: 999px;
  background: rgba(22, 27, 24, 0.62);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.responsible-fsc-logo {
  position: absolute;
  top: -250px;
  right: -42px;
  width: min(220px, 42%);
  height: auto;
  filter:
    drop-shadow(0 18px 28px rgba(22, 27, 24, 0.32))
    drop-shadow(0 0 14px rgba(216, 179, 107, 0.54));
  transform: rotate(4deg);
  transition: filter 0.35s ease, transform 0.35s ease;
}

.option-fsc:hover .responsible-fsc-logo {
  filter:
    drop-shadow(0 18px 28px rgba(22, 27, 24, 0.32))
    drop-shadow(0 0 24px rgba(216, 179, 107, 0.9));
  transform: rotate(0deg) scale(1.05);
}

.responsible-route-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.responsible-route-lines i {
  position: absolute;
  left: 15%;
  width: 72%;
  height: 72%;
  border-top: 1px solid rgba(216, 179, 107, 0.76);
  border-radius: 50%;
  box-shadow: 0 -2px 18px rgba(216, 179, 107, 0.22);
  opacity: 0;
  transform: rotate(var(--route-rotate, 0deg)) translateY(16px);
  animation: routeSweep 4.8s ease-in-out infinite;
}

.responsible-route-lines i:nth-child(1) {
  top: 10%;
  --route-rotate: -10deg;
}

.responsible-route-lines i:nth-child(2) {
  top: 18%;
  --route-rotate: 13deg;
  animation-delay: 1s;
}

.responsible-route-lines i:nth-child(3) {
  top: 26%;
  --route-rotate: 33deg;
  animation-delay: 2s;
}

.sustainability-art.is-visible .responsible-option:nth-child(1) {
  animation: cardRise 0.85s ease forwards;
}

.sustainability-art.is-visible .responsible-option:nth-child(2) {
  animation: cardRise 0.85s 0.12s ease forwards;
}

.sustainability-art.is-visible .responsible-option:nth-child(3) {
  animation: cardRise 0.85s 0.24s ease forwards;
}

.company {
  background: #fff;
}

.company-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.company-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.company-media img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.company-copy p,
.contact-copy p {
  margin-top: 20px;
  color: var(--muted);
}

.careers {
  min-height: 500px;
  display: grid;
  place-items: center;
  text-align: center;
}

.careers-inner {
  max-width: 780px;
}

.careers p {
  margin: 22px auto 0;
  max-width: 680px;
}

.contact {
  align-items: start;
  background: var(--paper);
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  color: var(--walnut);
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--walnut);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(22, 27, 24, 0.18);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

input,
select {
  height: 50px;
  padding: 0 14px;
}

textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(216, 179, 107, 0.45);
  border-color: var(--brass);
}

input[name="_honey"] {
  position: absolute;
  left: -9999px;
}

.contact-form button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.jobs-hero {
  position: relative;
  min-height: 72svh;
  overflow: hidden;
  color: #fff;
}

.jobs-hero-media,
.jobs-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.jobs-hero-media img {
  object-fit: cover;
  transform: scale(1.05);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.jobs-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 72svh;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 170px 0 100px;
  flex-direction: column;
  justify-content: center;
}

.jobs-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.jobs-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(1180px, calc(100% - 40px));
  margin: 36px auto 0;
}

.filter-chip,
.text-button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.filter-chip {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--walnut);
  font-size: 0.82rem;
  font-weight: 800;
}

.filter-chip.is-active {
  border-color: var(--brass);
  background: var(--brass);
  color: var(--ink);
}

.jobs-grid {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: 28px auto 0;
  gap: 22px;
}

.job-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(22, 27, 24, 0.1);
}

.job-card.is-closed {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(238, 241, 235, 0.9)),
    var(--cream);
  box-shadow: none;
  opacity: 0.68;
}

.job-card-top,
.job-meta,
.application-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.job-card-top {
  justify-content: space-between;
  color: var(--walnut);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.job-status-group {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.job-status-group em {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--copper);
  color: #fff;
  font-style: normal;
  box-shadow: 0 10px 28px rgba(180, 111, 60, 0.28);
}

.job-card-top strong,
.job-meta span {
  border-radius: 999px;
  background: rgba(216, 179, 107, 0.18);
  color: var(--walnut);
}

.job-card.is-closed .job-card-top strong,
.job-card.is-closed .job-meta span {
  background: rgba(109, 116, 109, 0.14);
  color: var(--muted);
}

.job-card-top strong {
  padding: 6px 10px;
}

.job-card h3 {
  margin: 18px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.3vw, 3.1rem);
  line-height: 1;
}

.job-card p,
.application-copy p {
  max-width: 760px;
  color: var(--muted);
}

.job-meta {
  margin: 20px 0;
}

.job-meta span {
  padding: 7px 11px;
  font-size: 0.82rem;
  font-weight: 800;
}

.job-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 22px 0 26px;
}

.job-detail-grid h4 {
  margin: 0 0 8px;
  color: var(--walnut);
}

.job-detail-grid ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.application {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
  overflow: hidden;
}

.application-copy,
.application-form {
  position: relative;
  z-index: 1;
}

.application-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.application-form label {
  display: grid;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.application-form .full {
  grid-column: 1 / -1;
}

.application-form input,
.application-form textarea,
.application-form select {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.94);
}

.field-note {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.field-note.is-error {
  color: #f0ca80;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--copper);
  font-weight: 800;
}

.success-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding-top: 160px;
}

.success-card {
  width: min(760px, 100%);
}

.success-card h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 7vw, 5.7rem);
  line-height: 0.95;
}

.success-card p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  line-height: 1.8;
}

.success-card a:not(.button) {
  color: var(--brass);
  font-weight: 900;
}

.application .form-status,
.text-button.light {
  color: #f0ca80;
}

.text-button {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.team-hero {
  position: relative;
  min-height: 78svh;
  overflow: hidden;
  color: #fff;
}

.team-hero-media,
.team-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.team-hero-media img {
  object-fit: cover;
  transform: scale(1.06);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.team-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 78svh;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 176px 0 96px;
  flex-direction: column;
  justify-content: center;
}

.team-hero h1 {
  max-width: 880px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.4rem, 7vw, 7.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.team-overview {
  background:
    linear-gradient(180deg, rgba(238, 241, 235, 0.85), rgba(251, 250, 245, 0.98)),
    var(--paper);
}

.team-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.team-overview-card {
  position: relative;
  display: grid;
  min-height: 190px;
  padding: 26px;
  align-content: space-between;
  background: rgba(255, 255, 255, 0.9);
  transition: background 0.25s ease, transform 0.25s ease;
}

.team-overview-card::after {
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: var(--brass);
  content: ">";
  font-size: 1.8rem;
  line-height: 1;
  transform: translateX(-8px);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.team-overview-card:hover {
  background: #fff;
  transform: translateY(-4px);
}

.team-overview-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.team-overview-card span {
  color: var(--walnut);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
}

.team-overview-card strong {
  max-width: 230px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.team-section {
  position: relative;
  overflow: hidden;
}

.team-section-head {
  max-width: 850px;
  margin-bottom: 42px;
}

.team-section-head h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.8vw, 5rem);
  line-height: 1;
}

.team-section-head p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.dark-band .team-section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.team-grid.compact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(22, 27, 24, 0.1);
  isolation: isolate;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card.featured {
  grid-column: span 2;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(22, 27, 24, 0.18);
}

.team-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.96) contrast(1.03);
  transform: scale(1.01);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.team-card:hover img {
  filter: saturate(1.04) contrast(1.08);
  transform: scale(1.07);
}

.team-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(22, 27, 24, 0.04) 20%, rgba(22, 27, 24, 0.9) 100%);
  content: "";
}

.team-card > div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  color: #fff;
}

.team-card span {
  display: inline-flex;
  max-width: 100%;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(22, 27, 24, 0.54);
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.team-card h3 {
  margin: 12px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  line-height: 0.98;
}

.team-card p {
  max-width: 540px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.team-card a {
  display: inline-flex;
  margin-top: 10px;
  color: #fff;
  font-weight: 900;
}

.team-card.dark {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.procurement-band {
  background:
    radial-gradient(circle at 12% 12%, rgba(216, 179, 107, 0.14), transparent 28%),
    linear-gradient(180deg, #fff, var(--cream));
}

.team-contact {
  background: var(--forest);
  color: #fff;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  gap: 30px;
  align-items: center;
  padding: 34px max(20px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer > div {
  display: grid;
  grid-template-columns: 150px auto;
  gap: 18px;
  align-items: center;
}

.site-footer img {
  padding: 8px;
  border-radius: 6px;
  background: var(--paper);
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  color: #fff;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@keyframes grainShift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 80px 30px, 64px 0;
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.14) translate3d(2%, -1%, 0);
  }
}

@keyframes pulseRing {
  from {
    opacity: 0.72;
    transform: scale(0.88);
  }
  to {
    opacity: 0;
    transform: scale(1.28);
  }
}

@keyframes routeSweep {
  0%,
  100% {
    opacity: 0;
    transform: rotate(var(--route-rotate, 0deg)) translateY(20px) scaleX(0.74);
  }
  50% {
    opacity: 0.96;
    transform: rotate(var(--route-rotate, 0deg)) translateY(-4px) scaleX(1);
  }
}

@keyframes cardRise {
  to {
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    position: relative;
    z-index: 40;
    display: grid;
    gap: 7px;
    width: 46px;
    height: 46px;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  body.menu-open .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    padding: 140px 28px 40px;
    flex-direction: column;
    justify-content: start;
    gap: 26px;
    background: rgba(22, 27, 24, 0.98);
    font-size: 1.3rem;
  }

  .hero-inner {
    padding-top: 150px;
  }

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

  .hero-proof div {
    padding: 16px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-proof div:last-child {
    border-bottom: 0;
  }

  .intro-grid,
  .video-feature,
  .metrics,
  .split-layout,
  .company-grid,
  .contact,
  .team-overview-grid,
  .application,
  .job-detail-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

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

  .team-card.featured {
    grid-column: 1 / -1;
  }

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

  .service-panel {
    min-height: 460px;
  }

  .sustainability-art {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: auto;
  }

  .option-fsc,
  .option-cutting,
  .option-network {
    grid-row: auto;
    min-height: 320px;
  }

  .company-media img,
  .process-image img {
    height: 460px;
  }

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

@media (max-width: 620px) {
  .site-header {
    width: calc(100% - 20px);
    top: 10px;
  }

  .brand {
    width: 142px;
    min-width: 142px;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .hero-proof {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -144px auto 28px;
    transform: none;
  }

  .hero-inner {
    min-height: 92svh;
    padding-bottom: 190px;
  }

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

  .application-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .jobs-hero h1 {
    font-size: 3rem;
  }

  .team-hero h1 {
    font-size: 3.15rem;
  }

  .team-grid,
  .team-grid.compact-grid {
    grid-template-columns: 1fr;
  }

  .team-card,
  .team-card img {
    min-height: 390px;
  }

  .team-overview-card {
    min-height: 150px;
  }

  .jobs-toolbar,
  .job-card-top,
  .application-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-chip,
  .application-actions .button {
    width: 100%;
  }

  .metric {
    min-height: 180px;
    padding: 34px 22px;
  }

  .sustainability-art {
    display: grid;
    gap: 14px;
  }

  .option-fsc,
  .option-cutting,
  .option-network {
    min-height: 280px;
  }

  .responsible-option-overlay {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .responsible-option-overlay span {
    font-size: 1.55rem;
  }

  .responsible-fsc-logo {
    top: -180px;
    width: min(160px, 44%);
  }

  .responsible-option::after {
    inset: 10px;
  }

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