:root {
  --paper: #f4f2ec;
  --paper-2: #ebe8df;
  --white: #ffffff;
  --ink: #182019;
  --ink-soft: #4d544d;
  --ink-faint: #878e85;
  --pine: #0d4a36;
  --pine-deep: #08301f;
  --pine-black: #041d13;
  --amber: #c8892a;
  --amber-bright: #e2a745;
  --line: #dcd8cc;
  --line-dark: #beb9aa;
  --max: 1220px;
  --serif: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --shadow: 0 18px 45px -18px rgba(9, 33, 23, .28);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
  background: transparent;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  gap: 24px;
  transition: height .3s ease;
}

.brand {
  display: flex;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 40px;
  width: auto;
  transition: opacity .3s ease, height .3s ease;
}

.brand-logo-dark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
}

.site-header.scrolled .brand-logo { height: 34px; }
.site-header.scrolled .brand-logo-light { opacity: 0; }
.site-header.scrolled .brand-logo-dark { opacity: 1; }

.site-nav { display: flex; align-items: center; gap: 2px; }

.site-nav a {
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: 9px 14px;
  transition: color .2s;
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 3px;
  height: 2px;
  background: var(--amber-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after { transform: scaleX(1); }

.site-nav a:hover { color: #fff; }
.site-nav a.active { color: #fff; }

.site-nav a.nav-cta {
  margin-left: 14px;
  background: var(--amber);
  color: var(--pine-black);
  font-weight: 600;
  padding: 12px 22px;
}

.site-nav a.nav-cta:hover { background: var(--amber-bright); }

.site-header.scrolled {
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 24px rgba(10, 30, 20, .12);
}

.site-header.scrolled .wrap { height: 70px; }
.site-header.scrolled .site-nav a { color: var(--ink-soft); }
.site-header.scrolled .site-nav a:hover,
.site-header.scrolled .site-nav a.active { color: var(--pine); }
.site-header.scrolled .site-nav a.nav-cta { background: var(--pine); color: #fff; }
.site-header.scrolled .site-nav a.nav-cta:hover { background: var(--pine-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 10px 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: background .3s, transform .25s, opacity .25s;
}

.site-header.scrolled .nav-toggle span { background: var(--ink); }

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--pine-black);
}

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

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(4, 24, 15, .92) 0%, rgba(4, 24, 15, .35) 45%, rgba(4, 24, 15, .55) 100%),
    linear-gradient(105deg, rgba(4, 29, 19, .82) 0%, rgba(4, 29, 19, .35) 55%, rgba(4, 29, 19, .12) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: auto 0;
  padding-top: 100px;
  padding-bottom: 56px;
}

.hero-inner .wrap { padding-bottom: 0; }

.eyebrow {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--amber);
  margin-bottom: 18px;
}

.hero .eyebrow, .svc-band .eyebrow, .cta-photo .eyebrow, .quote-band .eyebrow { color: var(--amber-bright); }

.hero h1 {
  font-family: var(--sans);
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 24ch;
  margin-bottom: 24px;
}

.hero p.lede {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,.82);
  max-width: 56ch;
  margin-bottom: 34px;
}

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.btn {
  display: inline-block;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 16px 32px;
  border: 1px solid transparent;
  transition: background .2s, color .2s, border-color .2s;
  cursor: pointer;
}

.btn-solid { background: var(--amber); color: var(--pine-black); border-color: var(--amber); }
.btn-solid:hover { background: var(--amber-bright); border-color: var(--amber-bright); }

.btn-line { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-line:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-pine { background: var(--pine); color: #fff; border-color: var(--pine); }
.btn-pine:hover { background: var(--pine-deep); border-color: var(--pine-deep); }

.btn-ghost { border-color: var(--pine); color: var(--pine); }
.btn-ghost:hover { background: var(--pine); color: #fff; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 80px;
  align-items: center;
}

.hero-side {
  padding-left: 44px;
}

.hfact { padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.hfact:first-child { padding-top: 4px; }
.hfact:last-child { border-bottom: none; padding-bottom: 4px; }

.hfact .num {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
}

.hfact .num::after {
  content: "";
  display: block;
  width: 26px;
  height: 3px;
  background: var(--amber);
  margin: 10px 0 8px;
}

.hfact .lbl {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,.72);
  max-width: 26ch;
}

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

.tint { background: var(--paper-2); }
.white-bg { background: var(--white); }

.section-head { margin-bottom: 54px; }

.section-head.row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-family: var(--sans);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.02em;
  max-width: 24ch;
}

.section-head .side-note {
  font-size: 15.5px;
  color: var(--ink-soft);
  max-width: 44ch;
  padding-bottom: 8px;
}

.side-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--pine);
  text-decoration: none;
  border-bottom: 2px solid var(--amber);
  padding-bottom: 4px;
  white-space: nowrap;
  transition: color .2s;
}

.side-link:hover { color: var(--amber); }

html.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

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

.tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: block;
  text-decoration: none;
  background: var(--pine-black);
}

.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.6,.2,1), opacity .4s;
}

.tile:hover img { transform: scale(1.06); }

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 20, 13, .88) 0%, rgba(3, 20, 13, .18) 55%, rgba(3, 20, 13, .05) 100%);
  transition: background .3s;
}

.tile .tile-idx {
  position: absolute;
  top: 18px; left: 20px;
  z-index: 2;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  color: rgba(255,255,255,.85);
  background: rgba(4, 26, 17, .55);
  padding: 4px 10px;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.tile .tile-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 22px 24px;
  color: #fff;
}

.tile h3 { font-size: 19px; font-weight: 600; margin-bottom: 5px; }

.tile p {
  font-size: 13.5px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .4s ease, opacity .4s ease;
}

.tile:hover p { max-height: 80px; opacity: 1; }

.tile .tile-cta {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--amber-bright);
}

.tile-wide { aspect-ratio: auto; grid-row: span 2; }

.svc-band {
  position: relative;
  color: #e6ede7;
  overflow: hidden;
  background: var(--pine-deep);
}

.svc-band .band-media {
  position: absolute;
  inset: 0;
}

.svc-band .band-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .22;
}

.svc-band .band-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(6, 38, 25, .96) 20%, rgba(6, 38, 25, .78) 100%);
}

.svc-band .wrap { position: relative; z-index: 2; }

.svc-band h2 { color: #fff; }
.svc-band .section-head .side-note { color: rgba(230, 237, 231, .72); }

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

.svc-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255,255,255,.13);
  padding: 34px 30px 38px;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  transition: background .3s, border-color .3s, transform .3s;
}

.svc-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.28);
  transform: translateY(-4px);
}

.svc-card .idx {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--amber-bright);
  margin-bottom: 18px;
}

.svc-card h3 {
  font-family: var(--sans);
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 13px;
}

.svc-card p { font-size: 14.5px; color: rgba(230,237,231,.72); margin-bottom: 18px; }

.svc-card a {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--amber-bright);
  text-decoration: none;
}

.svc-card a:hover { color: #fff; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.split .body p { margin-bottom: 18px; color: var(--ink-soft); font-size: 16px; }
.split .body p strong { color: var(--ink); font-weight: 600; }

.split h2 {
  font-family: var(--sans);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.photo-frame { position: relative; }

.photo-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.photo-frame::before {
  content: "";
  position: absolute;
  top: -18px; left: -18px;
  width: 120px; height: 120px;
  border-top: 3px solid var(--amber);
  border-left: 3px solid var(--amber);
}

.photo-frame::after {
  content: "";
  position: absolute;
  bottom: -18px; right: -18px;
  width: 120px; height: 120px;
  border-bottom: 3px solid var(--pine);
  border-right: 3px solid var(--pine);
}

.photo-frame .caption {
  position: absolute;
  left: 0; bottom: 0;
  background: rgba(4, 26, 17, .82);
  color: #fff;
  font-size: 12.5px;
  letter-spacing: .06em;
  padding: 10px 18px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.cta-photo {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: var(--pine-black);
}

.cta-photo .band-media { position: absolute; inset: 0; }
.cta-photo .band-media img { width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.cta-photo .band-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(4, 26, 17, .92) 10%, rgba(4, 26, 17, .55) 100%);
}

.cta-photo .wrap {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  padding-bottom: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-photo h2 {
  font-family: var(--sans);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 26ch;
}

.cta-photo p.sub { margin-top: 12px; color: rgba(255,255,255,.72); max-width: 52ch; }

.page-banner {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--pine-black);
}

.page-banner .band-media { position: absolute; inset: 0; }
.page-banner .band-media img { width: 100%; height: 100%; object-fit: cover; }
.page-banner .band-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(4, 24, 15, .62) 0, rgba(4, 24, 15, .28) 120px, rgba(4, 24, 15, 0) 240px),
    linear-gradient(to top, rgba(4, 24, 15, .92) 0%, rgba(4, 24, 15, .36) 55%, rgba(4, 24, 15, .58) 100%);
}

.page-banner .wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 150px;
  padding-bottom: 54px;
}

.page-banner .crumb {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  margin-bottom: 14px;
}

.page-banner .crumb a { color: rgba(255,255,255,.6); text-decoration: none; }
.page-banner .crumb a:hover { color: #fff; }

.page-banner h1 {
  font-family: var(--sans);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 20ch;
}

.page-banner p.lede {
  margin-top: 16px;
  font-size: 17.5px;
  color: rgba(255,255,255,.78);
  max-width: 60ch;
}

.page-banner.short { min-height: 320px; }

.feat {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  padding: 64px 0;
}

.feat + .feat { border-top: 1px solid var(--line); }

.feat .media { position: relative; }

.feat .media img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feat .media .num-chip {
  position: absolute;
  top: -16px; left: -16px;
  background: var(--amber);
  color: var(--pine-black);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 17px;
  padding: 10px 16px;
  box-shadow: 0 8px 20px rgba(9,33,23,.25);
}

.feat.flip .media { order: 2; }
.feat.flip .content { order: 1; }

.feat h3 {
  font-family: var(--sans);
  font-size: clamp(22px, 2.4vw, 29px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}

.feat .content p { color: var(--ink-soft); margin-bottom: 14px; }

.feat ul { list-style: none; margin-top: 18px; }

.feat ul li {
  padding: 10px 0 10px 26px;
  position: relative;
  font-size: 14.5px;
  color: var(--ink-soft);
}

.feat ul li + li { border-top: 1px solid var(--line); }

.feat ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 19px;
  width: 12px; height: 2px;
  background: var(--amber);
}

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

.step-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--pine);
  padding: 32px 30px 36px;
  position: relative;
  transition: box-shadow .3s, transform .3s;
}

.step-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.step-card .idx {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 16px;
}

.step-card h3 { font-family: var(--sans); font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.step-card p { font-size: 14.5px; color: var(--ink-soft); }

.pcard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.pcard {
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 240px 1fr;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .3s, transform .3s, border-color .3s;
}

.pcard:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--line-dark); }

.pcard .media { position: relative; overflow: hidden; }

.pcard .media img {
  width: 100%; height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.6,.2,1);
}

.pcard:hover .media img { transform: scale(1.06); }

.pcard .media .idx {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12.5px;
  color: #fff;
  background: rgba(4, 26, 17, .6);
  padding: 3px 9px;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.pcard .body { padding: 24px 26px 26px; display: flex; flex-direction: column; }

.pcard h3 { font-size: 17.5px; font-weight: 600; margin-bottom: 8px; }

.pcard p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; flex: 1; }

.pcard .tag {
  margin-top: 16px;
  align-self: flex-start;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--pine);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 4px 10px;
}

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

.val-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 34px 30px 38px;
  position: relative;
  transition: box-shadow .3s, transform .3s;
}

.val-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 52px; height: 3px;
  background: var(--amber);
  transition: width .35s ease;
}

.val-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.val-card:hover::before { width: 100%; }

.val-card .k {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--amber);
  margin-bottom: 14px;
}

.val-card h3 { font-family: var(--sans); font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.val-card p { font-size: 14.5px; color: var(--ink-soft); }

.quote-band { position: relative; overflow: hidden; background: var(--pine-deep); color: #fff; }
.quote-band .band-media { position: absolute; inset: 0; }
.quote-band .band-media img { width: 100%; height: 100%; object-fit: cover; opacity: .18; }
.quote-band .band-media::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(6, 38, 25, .6), rgba(6, 38, 25, .95));
}

.quote-band .wrap { position: relative; z-index: 2; padding-top: 100px; padding-bottom: 100px; max-width: 900px; }

.quote-band blockquote {
  font-family: var(--sans);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: .005em;
  color: #f2f6f2;
  border-left: 3px solid var(--amber);
  padding-left: 28px;
}

.quote-band figcaption { margin-top: 30px; font-size: 15px; color: rgba(255,255,255,.75); }
.quote-band figcaption strong { color: #fff; display: block; font-size: 16px; letter-spacing: .02em; }

.def-table { border-top: 1px solid var(--line-dark); width: 100%; }

.def-row {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.def-row dt {
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: .01em;
  color: var(--ink-faint);
  padding-top: 2px;
}

.def-row dd { color: var(--ink); }
.def-row dd a { color: var(--pine); }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 60px;
  align-items: start;
}

.contact-intro p { color: var(--ink-soft); margin-bottom: 26px; }

.contact-list { border-top: 1px solid var(--line-dark); }

.contact-item { padding: 22px 0; border-bottom: 1px solid var(--line); display: flex; gap: 18px; }

.contact-item .ico {
  flex: 0 0 34px;
  height: 34px;
  background: transparent;
  border: none;
  color: var(--pine);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 2px;
}

.contact-item .ico svg { width: 22px; height: 22px; }

.contact-item .lbl {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--ink-faint);
  margin-bottom: 5px;
}

.contact-item .val { font-size: 15.5px; line-height: 1.55; }
.contact-item .val a { color: var(--pine); text-decoration: none; border-bottom: 1px solid var(--line-dark); }
.contact-item .val a:hover { border-bottom-color: var(--amber); }
.contact-item .val small { display: block; color: var(--ink-faint); font-size: 13px; margin-top: 2px; }

form.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--pine);
  padding: 42px 40px 46px;
  box-shadow: var(--shadow);
}

form.contact-form h3 { font-family: var(--sans); font-size: 22px; font-weight: 700; margin-bottom: 8px; }
form.contact-form > p.sub { font-size: 14px; color: var(--ink-faint); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.field { margin-bottom: 20px; }

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-dark);
  padding: 13px 15px;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .2s, background .2s;
}

.field select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%234d544d'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 38px;
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--pine);
  background: #fff;
}

.field textarea { min-height: 140px; resize: vertical; }

.form-note { font-size: 13px; color: var(--ink-faint); margin-top: 18px; }

.map-frame { border: 1px solid var(--line-dark); margin-top: 72px; box-shadow: var(--shadow); }
.map-frame iframe { display: block; width: 100%; height: 420px; border: 0; filter: grayscale(30%); }

.legal { max-width: 800px; }

.legal .updated { font-size: 13.5px; color: var(--ink-faint); margin-bottom: 38px; }

.legal h2 {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 700;
  margin: 44px 0 14px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }

.legal p, .legal li { color: var(--ink-soft); margin-bottom: 14px; font-size: 15.5px; }
.legal ul { padding-left: 22px; margin-bottom: 16px; }
.legal ul li { margin-bottom: 8px; }
.legal a { color: var(--pine); }

.site-footer {
  background: var(--pine-black);
  color: #a9bcae;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--amber), var(--pine));
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 3.1fr) minmax(0, 1.8fr) minmax(0, 3.7fr) minmax(0, 2.6fr);
  gap: 40px;
  padding: 66px 0 48px;
  align-items: start;
}

.site-footer .f-brand {
  display: inline-block;
  margin-bottom: 20px;
}

.site-footer .f-logo {
  display: block;
  height: 44px;
  width: auto;
}

.site-footer p { max-width: 42ch; line-height: 1.7; }

.site-footer h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  color: #8fa695;
  margin-bottom: 18px;
}

.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }

.f-prod {
  columns: 2;
  column-gap: 26px;
}

.f-prod li { break-inside: avoid; margin-bottom: 11px; }

.site-footer h4.f-sub { margin-top: 28px; }

.f-cta {
  display: inline-block;
  margin-top: 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--amber-bright);
  text-decoration: none;
}

.f-cta:hover { color: #fff; }

.f-contact li { margin-bottom: 15px; }
.f-contact li:last-child { margin-bottom: 0; }

.fc-lbl {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: #6d8375;
  margin-bottom: 2px;
}

.fc-val { display: block; line-height: 1.55; color: #cdd9cf; }
.fc-val a { border-bottom: 1px solid rgba(255,255,255,.2); }
.fc-val a:hover { border-bottom-color: var(--amber-bright); }

.site-footer a { color: #cdd9cf; text-decoration: none; transition: color .2s; }
.site-footer a:hover { color: var(--amber-bright); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #6d8375;
}

.footer-bottom a { color: #8fa695; }

.fb-legal { display: flex; flex-wrap: wrap; align-items: center; gap: 0 22px; }

.fb-legal a { position: relative; }

.fb-legal a + a::before {
  content: "";
  position: absolute;
  left: -12px; top: 50%;
  width: 3px; height: 3px;
  background: #4d6355;
  transform: translateY(-50%);
}

@media (max-width: 1020px) {
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-cards { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .photo-frame img { height: 380px; }
  .feat { grid-template-columns: 1fr; gap: 34px; padding: 48px 0; }
  .feat.flip .media { order: 0; }
  .feat.flip .content { order: 1; }
  .pcard-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .val-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .section { padding: 76px 0; }
  .hero-scroll { display: none; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--pine-black);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 28px 26px;
    gap: 0;
    box-shadow: 0 24px 40px rgba(0,0,0,.35);
  }

  .site-nav.open { display: flex; }

  .site-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-size: 16px;
    color: rgba(255,255,255,.85);
  }

  .site-header.scrolled .site-nav a { color: rgba(255,255,255,.85); }
  .site-header.scrolled .site-nav a:hover, .site-header.scrolled .site-nav a.active { color: #fff; }
  .site-nav a:not(.nav-cta)::after { display: none; }
  .site-nav a.nav-cta { margin: 20px 0 0; text-align: center; }
  .site-header.scrolled .site-nav a.nav-cta { background: var(--amber); color: var(--pine-black); }

  .hero h1 { font-size: clamp(36px, 10vw, 46px); }
  .hero-inner { padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-side {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,.2);
    padding-left: 0;
    margin-top: 40px;
    padding-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 0 44px;
  }
  .hfact { border-bottom: none; padding: 16px 0 0; }
  .hfact .num { font-size: 26px; }
  .hfact .num::after { margin: 7px 0 5px; }

  .tile-grid { grid-template-columns: 1fr; }
  .tile p { max-height: none; opacity: 1; }

  .page-banner { min-height: 360px; }
  .page-banner .wrap { padding-top: 130px; }

  .pcard { grid-template-columns: 1fr; }
  .pcard .media img { height: 190px; min-height: 0; }

  .def-row { grid-template-columns: 1fr; gap: 4px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; padding: 52px 0 40px; }
  form.contact-form { padding: 30px 24px 34px; }
  .feat .media img { height: 260px; }
  .photo-frame::before, .photo-frame::after { display: none; }
}

.testi-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 64px;
  align-items: center;
}

.testi-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.testi-quote blockquote {
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: .005em;
  color: var(--ink);
  border-left: 3px solid var(--amber);
  padding-left: 26px;
}

.testi-quote figcaption {
  margin-top: 26px;
  padding-left: 29px;
  font-size: 14.5px;
  color: var(--ink-faint);
}

.testi-quote figcaption strong {
  display: block;
  font-size: 16px;
  color: var(--ink);
}

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

.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}

.team-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.team-card .photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-2);
}

.team-card .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.team-card .tb { padding: 22px 24px 26px; }

.team-card h3 { font-size: 17.5px; font-weight: 700; margin-bottom: 3px; }

.team-card .role {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--pine);
  margin-bottom: 10px;
}

.team-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

.cp-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}

.cp-grid { display: grid; grid-template-columns: 1fr 1fr; }

.cp-cell { padding: 30px 40px; border-top: 1px solid var(--line); }
.cp-cell:nth-child(-n+2) { border-top: none; }
.cp-cell:nth-child(2n) { border-left: 1px solid var(--line); }
.cp-cell.full { grid-column: 1 / -1; border-left: none; }

.cp-lbl {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  color: var(--pine);
  margin-bottom: 9px;
}

.cp-lbl::before {
  content: "";
  width: 14px;
  height: 3px;
  background: var(--amber);
  flex: 0 0 auto;
}

.cp-val { font-size: 16px; font-weight: 500; line-height: 1.65; color: var(--ink); }
.cp-val a { color: var(--pine); text-decoration: none; border-bottom: 1px solid var(--line-dark); }
.cp-val a:hover { border-bottom-color: var(--amber); }

.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 14px; }

.chip {
  font-size: 13px;
  font-weight: 500;
  color: var(--pine);
  background: var(--paper);
  border: 1px solid var(--line-dark);
  padding: 7px 15px;
  transition: border-color .2s, background .2s, color .2s;
}

.chip:hover { border-color: var(--pine); background: #fff; }

.lang-switch { position: relative; margin-left: 12px; }

.lang-switch svg { width: 18px; height: 12px; display: block; flex: 0 0 auto; }

.lang-current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.9);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 11px;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}

.lang-current:hover { border-color: rgba(255,255,255,.65); }

.lang-current .lc { display: none; align-items: center; gap: 8px; }
html[lang="en"] .lang-current .lc[data-lc="en"] { display: inline-flex; }
html[lang="id"] .lang-current .lc[data-lc="id"] { display: inline-flex; }

.lang-current .caret { width: 8px; height: 5px; opacity: .65; transition: transform .2s; }
.lang-switch.open .lang-current .caret { transform: rotate(180deg); }

.site-header.scrolled .lang-current { border-color: var(--line-dark); color: var(--ink-soft); }
.site-header.scrolled .lang-current:hover { border-color: var(--pine); color: var(--pine); }

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 190px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
  padding: 6px 0;
  z-index: 130;
}

.lang-switch.open .lang-menu { display: block; }

.lang-menu button {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  padding: 10px 16px;
  cursor: pointer;
  text-align: left;
}

.lang-menu button:hover { background: var(--paper); }

html[lang="en"] .lang-menu button[data-lang="en"],
html[lang="id"] .lang-menu button[data-lang="id"] { color: var(--pine); font-weight: 600; }

.btn .spin {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  margin-right: 9px;
  vertical-align: -2px;
  animation: spin .8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.btn[disabled] { opacity: .75; cursor: default; }

.form-success { display: none; padding: 26px 0 8px; }
.form-success.show { display: block; }

.form-success .fs-icon {
  width: 54px; height: 54px;
  border: 2px solid var(--pine);
  color: var(--pine);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.form-success .fs-icon svg { width: 26px; height: 26px; }

.form-success h4 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.form-success p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 20px; }

.form-success .fs-again {
  font-size: 14px;
  font-weight: 600;
  color: var(--pine);
  background: none;
  border: none;
  border-bottom: 2px solid var(--amber);
  padding: 0 0 3px;
  cursor: pointer;
  font-family: var(--sans);
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(4, 29, 19, .6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s;
}

.cookie-overlay.show { opacity: 1; visibility: visible; }

.cookie-modal {
  background: var(--white);
  border-top: 3px solid var(--amber);
  box-shadow: 0 40px 90px rgba(0, 0, 0, .45);
  max-width: 540px;
  width: 100%;
  padding: 38px 40px 40px;
  transform: translateY(14px);
  transition: transform .35s ease;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

.cookie-overlay.show .cookie-modal { transform: none; }

.cookie-modal h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

.cookie-modal .ck-intro {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.ck-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.ck-name { font-size: 15px; font-weight: 600; margin-bottom: 3px; }
.ck-desc { font-size: 13px; color: var(--ink-faint); line-height: 1.55; }

.ck-switch { position: relative; flex: 0 0 auto; cursor: pointer; display: block; }
.ck-switch.locked { cursor: default; }

.ck-switch input {
  position: absolute;
  opacity: 0;
  width: 100%; height: 100%;
  margin: 0;
  cursor: inherit;
}

.ck-switch .track {
  display: block;
  width: 44px;
  height: 24px;
  background: var(--line-dark);
  border-radius: 2px;
  position: relative;
  transition: background .25s;
}

.ck-switch .track::after {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 1px;
  box-shadow: 0 1px 3px rgba(0,0,0,.3);
  transition: transform .25s;
}

.ck-switch input:checked + .track { background: var(--pine); }
.ck-switch input:checked + .track::after { transform: translateX(20px); }
.ck-switch.locked .track { background: var(--pine); opacity: .55; }

.ck-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.ck-actions .btn { padding: 13px 26px; font-size: 13.5px; }

@media (max-width: 560px) {
  .cookie-modal { padding: 28px 24px 30px; }
  .ck-actions .btn { flex: 1 1 auto; text-align: center; }
}

@media (max-width: 1020px) {
  .testi-grid { grid-template-columns: 1fr; gap: 36px; }
  .testi-photo img { height: 360px; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .cp-grid { grid-template-columns: 1fr; }
  .cp-cell { border-top: 1px solid var(--line); padding: 22px 26px; }
  .cp-cell:nth-child(-n+2) { border-top: 1px solid var(--line); }
  .cp-cell:first-child { border-top: none; }
  .cp-cell:nth-child(2n) { border-left: none; }
  .cookie-bar { left: 14px; right: 14px; bottom: 14px; max-width: none; }

  .lang-switch { margin: 18px 0 0; }
  .lang-menu {
    position: static;
    min-width: 0;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: none;
    margin-top: 10px;
  }
  .lang-menu button { color: rgba(255,255,255,.88); }
  .lang-menu button:hover { background: rgba(255,255,255,.08); }
  html[lang="en"] .lang-menu button[data-lang="en"],
  html[lang="id"] .lang-menu button[data-lang="id"] { color: var(--amber-bright); }
}

.page-banner .div-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--amber-bright);
  margin-bottom: 10px;
}

.supply-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}

.supply-list li {
  position: relative;
  padding: 17px 0 17px 30px;
  font-size: 15.5px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}

.supply-list li:nth-last-child(-n+2) { border-bottom: none; }

.supply-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 27px;
  width: 14px; height: 2px;
  background: var(--amber);
}

.div-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.div-link {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 20px 22px;
  text-decoration: none;
  background: var(--white);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: background .2s, color .2s;
}

.div-link:hover { background: var(--pine); }
.div-link:hover .dl-name { color: #fff; }
.div-link:hover .dl-num { color: var(--amber-bright); }

.dl-num { font-size: 12.5px; font-weight: 700; color: var(--amber); flex: 0 0 auto; }
.dl-name { font-size: 15px; font-weight: 600; color: var(--ink); }

.pcard-cta {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pine);
}

.pcard-cta::after { content: " \2192"; }
.pcard:hover .pcard-cta { color: var(--amber); }

@media (max-width: 1020px) {
  .supply-list { grid-template-columns: 1fr; gap: 0; }
  .supply-list li:nth-last-child(2) { border-bottom: 1px solid var(--line); }
  .div-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .div-links { grid-template-columns: 1fr; }
}

.proc {
  position: relative;
  overflow: hidden;
  background: var(--pine-black);
  color: #dfe8e1;
  padding: 128px 0 118px;
}

.proc .band-media { position: absolute; inset: 0; }

.proc .band-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .16;
}

.proc .band-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(4, 29, 19, .95) 30%, rgba(4, 29, 19, .78) 100%);
}

.proc .wrap { position: relative; z-index: 2; }

.proc-head { max-width: 780px; margin-bottom: 84px; }

.proc-head h2 {
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 20px;
}

.proc-head p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(223, 232, 225, .72);
  max-width: 62ch;
}

.proc-track {
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, .12);
  margin-bottom: 46px;
}

.proc-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--amber), var(--amber-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.9s cubic-bezier(.22, .61, .36, 1);
}

.proc.run .proc-fill { transform: scaleX(1); }

.proc-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 34px;
}

.proc-step {
  position: relative;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.22, .61, .36, 1);
}

.proc.run .proc-step { opacity: 1; transform: none; }

.proc.run .proc-step:nth-child(1) { transition-delay: .30s; }
.proc.run .proc-step:nth-child(2) { transition-delay: .55s; }
.proc.run .proc-step:nth-child(3) { transition-delay: .80s; }
.proc.run .proc-step:nth-child(4) { transition-delay: 1.05s; }
.proc.run .proc-step:nth-child(5) { transition-delay: 1.30s; }

.proc-dot {
  position: absolute;
  top: -52px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--pine-black);
  border: 2px solid var(--amber);
  transition: background .3s, border-color .3s, transform .3s;
}

.proc-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--amber-bright);
  margin-bottom: 14px;
}

.proc-step h3 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 12px;
}

.proc-step p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(223, 232, 225, .68);
}

.proc-step:hover .proc-dot { background: var(--amber); transform: scale(1.25); }
.proc-step:hover h3 { color: var(--amber-bright); }

.proc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 76px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.proc-foot p { font-size: 16px; color: rgba(223, 232, 225, .72); }

@media (prefers-reduced-motion: reduce) {
  .proc-fill { transition: none; }
  .proc-step { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 1020px) {
  .proc { padding: 84px 0 78px; }
  .proc-head { margin-bottom: 48px; }
  .proc-track { display: none; }

  .proc-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .proc-step {
    padding: 0 0 34px 30px;
    border-left: 2px solid rgba(255, 255, 255, .12);
  }

  .proc-step:last-child { border-left-color: transparent; padding-bottom: 0; }

  .proc-dot { top: 4px; left: -7px; }
  .proc-foot { margin-top: 48px; }
}
