/* =========================================================
   Connect Staffing Agency of Georgia — Landing page
   Brand: #073e3f (teal) · #d8cebe (beige) · Poppins (text) · Josefin Sans (labels, buttons)
   ========================================================= */

:root {
  --teal: #073e3f;
  --teal-950: #032425;
  --teal-900: #052f30;
  --teal-800: #0a4a4b;
  --teal-600: #2b6667;
  --beige: #d8cebe;
  --beige-300: #e3dbce;
  --beige-200: #ebe5db;
  --beige-100: #f3efe8;
  --cream: #faf8f4;
  --white: #ffffff;
  --tan: #a8927a;

  --ink: #0b2f30;
  --text: #34494a;
  --muted: #5b6e6f;
  --danger: #b3261e;

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow-sm: 0 1px 2px rgba(7, 62, 63, .05), 0 4px 14px rgba(7, 62, 63, .05);
  --shadow: 0 18px 40px -18px rgba(7, 62, 63, .32);
  --shadow-lg: 0 34px 70px -28px rgba(3, 36, 37, .5);

  --font-body: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-brand: "Josefin Sans", "Poppins", sans-serif;

  --container: 1200px;
  --header-h: 78px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; color: var(--ink); line-height: 1.12; letter-spacing: -.02em; }
p { margin: 0; }
button { font: inherit; }
address { font-style: normal; }
[hidden] { display: none !important; }

html.i18n-pending body { opacity: 0; }
body { transition: opacity .25s ease; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }

.icon {
  width: 22px; height: 22px; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

:focus-visible { outline: 3px solid var(--tan); outline-offset: 3px; }

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--teal); color: var(--beige-100); padding: .7rem 1.1rem; border-radius: 10px; text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* ---------- Type helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .75em;
  margin: 0 0 1.1rem;
  font-family: var(--font-brand);
  font-size: .8rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--teal-600);
}
/* three growing dots — echo of the logo */
.eyebrow::before {
  content: ""; flex: none; width: 34px; height: 10px;
  background:
    radial-gradient(circle at 4px 5px, currentColor 2.5px, transparent 3px),
    radial-gradient(circle at 15px 5px, currentColor 3.5px, transparent 4px),
    radial-gradient(circle at 28px 5px, currentColor 5px, transparent 5.5px);
}
.eyebrow--light { color: var(--beige); }

.section-title {
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 300;
  color: var(--teal);
}
.section-title span, .section-title strong { display: block; font-weight: 700; }
.section-title--light { color: var(--beige-100); }

.lead { margin-top: 1.25rem; font-size: clamp(1.02rem, 1.3vw, 1.12rem); color: var(--muted); max-width: 38em; }
.lead--light { color: rgba(243, 239, 232, .8); }

.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; position: relative; }
.section-head { max-width: 740px; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: .95em 1.6em;
  border: 2px solid transparent; border-radius: 999px;
  font-family: var(--font-brand); font-size: .9rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase; line-height: 1.1;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn .icon { width: 1.15em; height: 1.15em; stroke-width: 2.2; transition: transform .25s var(--ease); }
.btn:hover .icon use[href="#i-arrow"], .btn:hover > .icon:last-child { transform: translateX(3px); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--teal); color: var(--beige-100); }
.btn--primary:hover { background: var(--teal-800); box-shadow: var(--shadow); }
.btn--beige { background: var(--beige); color: var(--teal); }
.btn--beige:hover { background: var(--beige-100); }
.btn--outline { border-color: var(--teal); color: var(--teal); background: transparent; }
.btn--outline:hover { background: var(--teal); color: var(--beige-100); }
.btn--outline-light { border-color: rgba(216, 206, 190, .55); color: var(--beige-100); background: transparent; }
.btn--outline-light:hover { background: var(--beige); border-color: var(--beige); color: var(--teal); }
.btn--lg { font-size: .95rem; padding: 1.1em 1.9em; }
.btn--sm { font-size: .78rem; padding: .8em 1.25em; }

.icon-btn {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  border: 1.5px solid var(--beige-300); border-radius: 50%;
  background: transparent; color: var(--teal);
  text-decoration: none; cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s;
}
.icon-btn .icon { width: 19px; height: 19px; }
.icon-btn:hover { background: var(--teal); border-color: var(--teal); color: var(--beige-100); }
.icon-btn--light { border-color: rgba(216, 206, 190, .4); color: var(--beige-100); }
.icon-btn--light:hover { background: var(--beige); color: var(--teal); }

.linklike { background: none; border: 0; padding: 0; color: inherit; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; text-align: left; }

/* =========================================================
   LANGUAGE GATE
   ========================================================= */
.lang-gate {
  position: fixed; inset: 0; z-index: 1000;
  display: none; place-items: center;
  padding: 2rem 1.25rem;
  overflow-y: auto;
  color: var(--beige);
  background:
    radial-gradient(ellipse at 50% 38%, rgba(216, 206, 190, .10), transparent 60%),
    url("../assets/img/waves-light.svg") center / cover,
    var(--teal);
}
html.needs-lang .lang-gate { display: grid; }
html.needs-lang body { overflow: hidden; }
.lang-gate.is-leaving { animation: gate-out .65s var(--ease) forwards; }

.lang-gate__inner { width: 100%; max-width: 620px; text-align: center; }
.lang-gate__logo { width: min(290px, 62vw); height: auto; margin: 0 auto 1.4rem; animation: rise 1s var(--ease) both; }
.lang-gate__slogan {
  margin: 0 0 2.75rem;
  font-size: clamp(1.1rem, 2.6vw, 1.45rem); font-weight: 300; color: var(--beige-100);
  animation: rise 1s .15s var(--ease) both;
}
.lang-gate__slogan b { font-weight: 700; }
.lang-gate__title {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .3rem .8rem;
  margin-bottom: 1.3rem;
  font-family: var(--font-brand); font-size: .82rem; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase; color: var(--beige);
  animation: rise 1s .3s var(--ease) both;
}
.lang-gate__options {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  animation: rise 1s .42s var(--ease) both;
}
.lang-option {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: 1.5px solid rgba(216, 206, 190, .35); border-radius: 24px;
  background: rgba(255, 255, 255, .04);
  color: var(--beige-100); text-align: left; cursor: pointer;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.lang-option__code {
  width: 54px; height: 54px; flex: none;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--beige); color: var(--teal);
  font-family: var(--font-brand); font-size: 1rem; font-weight: 700; letter-spacing: .08em;
  transition: background-color .3s, color .3s;
}
.lang-option__name { display: block; font-size: 1.25rem; font-weight: 600; line-height: 1.2; }
.lang-option__hint { display: block; font-size: .82rem; opacity: .75; }
.lang-option:hover, .lang-option:focus-visible { background: var(--beige); border-color: var(--beige); color: var(--teal); transform: translateY(-3px); }
.lang-option:hover .lang-option__code, .lang-option:focus-visible .lang-option__code { background: var(--teal); color: var(--beige); }
.lang-gate__foot { margin-top: 2.5rem; font-size: .8rem; letter-spacing: .06em; opacity: .6; animation: rise 1s .55s var(--ease) both; }

@keyframes rise { from { opacity: 0; transform: translateY(18px); } }
@keyframes gate-out { to { opacity: 0; visibility: hidden; transform: scale(1.02); } }

/* =========================================================
   TOP BAR + HEADER
   ========================================================= */
.topbar { background: var(--teal); color: var(--beige-100); font-size: .84rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 42px; }
.topbar__group { display: flex; align-items: center; gap: 1.6rem; }
.topbar a, .topbar span { display: inline-flex; align-items: center; gap: .45rem; text-decoration: none; }
.topbar .icon { width: 16px; height: 16px; opacity: .85; }
.topbar a:hover { color: var(--beige); text-decoration: underline; text-underline-offset: 3px; }
.topbar__email { font-weight: 600; }
.topbar__label { opacity: .75; }
.topbar__meta { opacity: .8; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 244, .88);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.is-scrolled { border-color: var(--beige-300); box-shadow: 0 10px 30px -24px rgba(7, 62, 63, .6); }
.navbar { display: flex; align-items: center; gap: 1.25rem; height: var(--header-h); }
.brand { flex: none; display: block; }
.brand img { height: 46px; width: auto; }

.nav { margin-left: auto; }
.nav ul { display: flex; gap: .15rem; margin: 0; padding: 0; list-style: none; }
.nav ul a {
  display: block; padding: .55rem .8rem; border-radius: 999px;
  font-size: .9rem; font-weight: 500; color: var(--ink); text-decoration: none; white-space: nowrap;
  transition: background-color .2s, color .2s;
}
.nav ul a:hover, .nav ul a.is-active { background: var(--beige-100); color: var(--teal); }
.nav__mobile-extra { display: none; }

.nav__actions { display: flex; align-items: center; gap: .55rem; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: .4rem;
  height: 44px; padding: 0 .95rem;
  border: 1.5px solid var(--beige-300); border-radius: 999px;
  background: transparent; color: var(--ink);
  font-size: .82rem; font-weight: 600; letter-spacing: .04em; cursor: pointer;
  transition: background-color .2s, border-color .2s, color .2s;
}
.lang-toggle .icon { width: 18px; height: 18px; color: var(--teal); }
.lang-toggle:hover { background: var(--beige-100); border-color: var(--beige); }
.menu-toggle { display: none; }
.menu-toggle .icon--close { display: none; }
.menu-toggle[aria-expanded="true"] .icon--menu { display: none; }
.menu-toggle[aria-expanded="true"] .icon--close { display: block; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(4rem, 7vw, 6.5rem);
  background: var(--cream);
}
.hero::before {
  content: ""; position: absolute; inset: 0 0 0 40%;
  background: url("../assets/img/waves-dark.svg") center / cover;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 35%);
  mask-image: linear-gradient(90deg, transparent, #000 35%);
  pointer-events: none;
}
.hero__grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.7rem);
  font-weight: 300; line-height: 1.03; letter-spacing: -.035em;
  color: var(--teal);
}
.hero__title strong { font-weight: 700; }
html[lang="es"] .hero__title { font-size: clamp(2.4rem, 5.2vw, 4.2rem); }
.hero__lead { margin: 1.6rem 0 2.25rem; max-width: 33em; font-size: clamp(1.05rem, 1.4vw, 1.2rem); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__chips { display: flex; flex-wrap: wrap; gap: .7rem 1.5rem; margin: 2.25rem 0 0; padding: 0; list-style: none; font-size: .92rem; font-weight: 500; color: var(--ink); }
.hero__chips li { display: flex; align-items: center; gap: .5rem; }
.tick { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--beige); color: var(--teal); }
.tick .icon { width: 14px; height: 14px; stroke-width: 2.6; }
.hero__talk {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1.5rem;
  margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--beige-300);
  font-size: .95rem; color: var(--muted);
}
.hero__talk a { display: inline-flex; align-items: center; gap: .45rem; color: var(--teal); font-weight: 600; text-decoration: none; }
.hero__talk a:hover { text-decoration: underline; text-underline-offset: 3px; }
.hero__talk .icon { width: 18px; height: 18px; }

/* orbit: the logo's dot-spiral wrapped around a photo (the "o" = people) */
.orbit { position: relative; width: min(100%, 600px); aspect-ratio: 1; margin-inline: auto; }
.orbit__dots { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.orbit__dots .dot { fill: var(--teal); transform-box: fill-box; transform-origin: center; animation: pop .7s cubic-bezier(.2, .9, .3, 1.35) both; animation-delay: calc(var(--i) * 22ms + 250ms); }
.orbit__dots .dot--tan { fill: var(--tan); }
.orbit__group { transform-origin: 0 0; animation: drift 16s ease-in-out infinite alternate; }
.orbit__photo {
  position: absolute; left: 50%; top: 50%;
  width: 53.4%; aspect-ratio: 1; transform: translate(-50%, -50%);
  border-radius: 50%; overflow: hidden;
  background: var(--beige);
  box-shadow: 0 0 0 12px var(--beige), var(--shadow-lg);
}
.orbit__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; }
.orbit__badge {
  position: absolute; right: 0; bottom: 7%;
  display: flex; align-items: center; gap: .85rem; max-width: 240px;
  padding: 1rem 1.2rem; border-radius: 20px;
  background: var(--white); box-shadow: var(--shadow);
  animation: rise 1s .9s var(--ease) both;
}
.orbit__badge strong { font-size: 2.3rem; font-weight: 700; line-height: 1; color: var(--teal); letter-spacing: -.03em; }
.orbit__badge span { font-size: .8rem; line-height: 1.35; color: var(--muted); }
.orbit__pill {
  position: absolute; right: 4%; top: 9%;
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .6rem 1rem; border-radius: 999px;
  background: var(--teal); color: var(--beige-100);
  font-family: var(--font-brand); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  box-shadow: var(--shadow);
  animation: rise 1s 1.05s var(--ease) both;
}
.orbit__pill .icon { width: 16px; height: 16px; color: var(--beige); }

@keyframes pop { from { transform: scale(0); opacity: 0; } }
@keyframes drift { from { transform: rotate(-3deg); } to { transform: rotate(3deg); } }

/* =========================================================
   STATS
   ========================================================= */
.stats { background: var(--teal); color: var(--beige-100); padding: 2.6rem 0; }
.stats__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin: 0 auto; padding: 0; list-style: none; }
.stats__list li { display: flex; flex-direction: column; gap: .25rem; padding-left: 1.3rem; border-left: 1px solid rgba(216, 206, 190, .25); }
.stats__list strong { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.1; color: var(--beige); letter-spacing: -.02em; }
.stats__list span { font-size: .9rem; opacity: .85; }

/* =========================================================
   INDUSTRIES
   ========================================================= */
.industries__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: stretch; }
.feature-photo { position: relative; margin: 0; min-height: 480px; border-radius: var(--radius-lg); overflow: hidden; background: var(--beige-200); }
.feature-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-photo figcaption {
  position: absolute; inset: auto 0 0 0;
  display: flex; flex-direction: column; gap: .2rem;
  padding: 4rem 1.75rem 1.6rem;
  background: linear-gradient(transparent, rgba(3, 36, 37, .88));
  color: var(--white); font-size: 1.35rem; font-weight: 600; line-height: 1.2;
}
.feature-photo__kicker { font-family: var(--font-brand); font-size: .78rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--beige); }

.industry-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--beige-300); align-self: center; width: 100%; }
.industry {
  display: grid; grid-template-columns: 58px 1fr auto; gap: 1.25rem; align-items: center;
  padding: 1.35rem .25rem; border-bottom: 1px solid var(--beige-300);
}
.industry__icon {
  width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%;
  background: var(--beige-100); color: var(--teal);
  transition: background-color .3s, color .3s, transform .3s var(--ease);
}
.industry:hover .industry__icon { background: var(--teal); color: var(--beige); transform: scale(1.06); }
.industry h3 { font-size: 1.25rem; font-weight: 600; }
.industry p { margin-top: .15rem; font-size: .95rem; color: var(--muted); }
.industry__num { font-family: var(--font-brand); font-size: .85rem; letter-spacing: .12em; color: var(--tan); }

/* =========================================================
   EMPLOYERS + PROCESS
   ========================================================= */
.employers { background: var(--beige-100); }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.card {
  padding: 1.9rem 1.75rem; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--beige-200); box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card__icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 1.3rem; border-radius: 16px; background: var(--teal); color: var(--beige); }
.card h3 { margin-bottom: .5rem; font-size: 1.15rem; font-weight: 600; }
.card p { font-size: .95rem; color: var(--muted); }

.process {
  position: relative; overflow: hidden;
  margin-top: clamp(3.5rem, 6vw, 5rem); padding: clamp(2rem, 4.5vw, 3.75rem);
  border-radius: var(--radius-lg);
  background: url("../assets/img/waves-light.svg") center / cover, var(--teal);
  color: var(--beige-100);
}
.process__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: .75rem 2rem; margin-bottom: 2.75rem; }
.process__head h3 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 300; color: var(--beige-100); }
.process__head h3 strong { font-weight: 700; }
.process__head p { opacity: .8; }
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin: 0; padding: 0; list-style: none; }
.steps::before {
  content: ""; position: absolute; top: 25px; left: 28px; right: calc((100% - 4rem) / 3 - 28px);
  height: 6px;
  background: radial-gradient(circle, rgba(216, 206, 190, .55) 2.5px, transparent 3px) 0 50% / 16px 6px repeat-x;
}
.step__num {
  position: relative; z-index: 1;
  width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 1.3rem;
  border-radius: 50%; background: var(--beige); color: var(--teal);
  font-size: 1.2rem; font-weight: 700;
  box-shadow: 0 0 0 8px var(--teal);
}
.step h4 { margin-bottom: .4rem; font-size: 1.2rem; font-weight: 600; color: var(--white); }
.step p { font-size: .95rem; opacity: .8; }
.process__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.75rem; margin-top: 2.75rem; padding-top: 2.25rem; border-top: 1px solid rgba(216, 206, 190, .2); }
.process__call { color: var(--beige-100); text-decoration: none; opacity: .9; }
.process__call strong { color: var(--beige); }
.process__call:hover { text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================
   SERVICES
   ========================================================= */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pillar {
  display: flex; flex-direction: column;
  padding: 2.25rem 2rem; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--beige-200);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.pillar:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--beige); }
.pillar__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.75rem; }
.pillar__icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; background: var(--beige-100); color: var(--teal); }
.pillar__num { font-family: var(--font-brand); font-size: 3.2rem; font-weight: 300; line-height: 1; color: var(--beige); }
.pillar h3 { margin-bottom: .5rem; font-size: 1.35rem; font-weight: 600; color: var(--teal); }
.pillar__desc { margin-bottom: 1.5rem; color: var(--muted); }
.pillar--featured { background: var(--teal); border-color: var(--teal); color: rgba(243, 239, 232, .85); }
.pillar--featured h3 { color: var(--white); }
.pillar--featured .pillar__desc { color: rgba(243, 239, 232, .75); }
.pillar--featured .pillar__icon { background: var(--beige); }
.pillar--featured .pillar__num { color: rgba(216, 206, 190, .4); }
.pillar--featured .checklist li::before { background-color: var(--beige); }

.checklist { display: grid; gap: .7rem; margin: 0; padding: 0; list-style: none; font-size: .95rem; }
.checklist li { display: flex; align-items: flex-start; gap: .7rem; }
.checklist li::before {
  content: ""; flex: none; width: 21px; height: 21px; margin-top: .15em; border-radius: 50%;
  background: var(--beige-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23073e3f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.positions {
  display: grid; grid-template-columns: 1fr 1.1fr;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  border-radius: var(--radius-lg); overflow: hidden; background: var(--beige-100);
}
.positions__photo { position: relative; min-height: 360px; background: var(--beige-200); }
.positions__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.positions__body { padding: clamp(2rem, 4.5vw, 3.5rem); }
.positions__body h3 { font-size: clamp(1.45rem, 2.4vw, 1.85rem); font-weight: 300; color: var(--teal); }
.positions__body h3 strong { font-weight: 700; }
.chips { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin: 1.75rem 0 2rem; padding: 0; list-style: none; }
.chips li { display: flex; align-items: center; gap: .7rem; padding: .85rem 1rem; border-radius: 14px; background: var(--white); font-size: .95rem; font-weight: 500; color: var(--ink); line-height: 1.3; }
.chips li::before { content: ""; flex: none; width: 10px; height: 10px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px var(--beige-200); }

/* =========================================================
   SAFETY
   ========================================================= */
.safety { overflow: hidden; background: url("../assets/img/waves-light.svg") center / cover, var(--teal-900); color: var(--beige-100); }
.watermark { position: absolute; right: -10%; top: 50%; width: min(680px, 70vw); transform: translateY(-50%); opacity: .05; pointer-events: none; }
.safety__grid { position: relative; display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.safety__photo { margin-top: 2.25rem; aspect-ratio: 16 / 10; border-radius: var(--radius); overflow: hidden; background: var(--teal-800); }
.safety__photo img { width: 100%; height: 100%; object-fit: cover; }
.safety__items { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.s-item {
  padding: 1.6rem; border-radius: var(--radius);
  background: rgba(255, 255, 255, .045); border: 1px solid rgba(216, 206, 190, .16);
  transition: background-color .3s, transform .35s var(--ease);
}
.s-item:hover { background: rgba(255, 255, 255, .08); transform: translateY(-3px); }
.s-item__icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 1rem; border-radius: 50%; background: var(--beige); color: var(--teal); }
.s-item h3 { margin-bottom: .35rem; font-size: 1.08rem; font-weight: 600; color: var(--white); }
.s-item p { font-size: .92rem; color: rgba(243, 239, 232, .76); }
.s-item--wide { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; align-items: start; background: rgba(216, 206, 190, .12); border-color: rgba(216, 206, 190, .3); }
.s-item--wide .s-item__icon { margin: 0; width: 56px; height: 56px; }
.s-item--wide h3 { font-family: var(--font-brand); font-size: 1.25rem; letter-spacing: .06em; text-transform: uppercase; color: var(--beige); }

/* =========================================================
   WORKERS
   ========================================================= */
.workers { background: var(--beige-100); }
.workers__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.workers__visual { position: relative; padding: 0 22px 22px 0; }
.workers__visual::before { content: ""; position: absolute; right: 0; bottom: 0; width: 72%; height: 72%; border-radius: var(--radius-lg); background: var(--beige); }
.workers__photo { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; background: var(--beige-200); box-shadow: var(--shadow); }
.workers__photo img { width: 100%; height: 100%; object-fit: cover; }
.workers__tag {
  position: absolute; left: 1.25rem; top: 1.25rem;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1.1rem; border-radius: 999px;
  background: var(--teal); color: var(--beige-100);
  font-family: var(--font-brand); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  box-shadow: var(--shadow);
}
.workers__tag .icon { width: 16px; height: 16px; color: var(--beige); }
.benefits { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; margin: 2rem 0; padding: 0; list-style: none; }
.benefit { display: flex; align-items: center; gap: .8rem; padding: .9rem 1.1rem; border-radius: 16px; background: var(--white); font-size: .95rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.benefit__icon { width: 40px; height: 40px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--beige-100); color: var(--teal); }
.benefit__icon .icon { width: 19px; height: 19px; }
.req { padding-top: 1.75rem; border-top: 1px solid var(--beige-300); }
.req h3 { margin-bottom: 1rem; font-size: 1.1rem; font-weight: 600; }
.req .checklist li::before { background-color: var(--white); }
.appt {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem;
  margin-top: 2rem; padding: 1.6rem 1.75rem; border-radius: var(--radius);
  background: var(--teal); color: var(--beige-100);
}
.appt__title { font-family: var(--font-brand); font-size: .95rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--beige); }
.appt__text { margin-top: .25rem; max-width: 30em; font-size: .93rem; opacity: .85; }
.appt__actions { display: flex; flex-wrap: wrap; gap: .7rem; }

/* =========================================================
   ABOUT
   ========================================================= */
.about__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.about__photo { aspect-ratio: 5 / 4; border-radius: var(--radius-lg); overflow: hidden; background: var(--beige-200); }
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.mv { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: clamp(3rem, 6vw, 4.5rem); }
.mv__card { margin: 0; padding: clamp(1.75rem, 3.5vw, 2.5rem); border-radius: var(--radius-lg); background: var(--beige-100); border: 1px solid var(--beige-200); }
.mv__card--mission { background: var(--teal); border-color: var(--teal); }
.mv__label { margin-bottom: 1rem; font-family: var(--font-brand); font-size: .8rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--teal-600); }
.mv__text { font-size: clamp(1.1rem, 1.7vw, 1.3rem); font-weight: 300; line-height: 1.5; color: var(--ink); }
.mv__card--mission .mv__label { color: var(--beige); }
.mv__card--mission .mv__text { color: var(--beige-100); }

.values { margin-top: clamp(3rem, 6vw, 4.5rem); }
.values__title { margin-bottom: 2rem; text-align: center; font-family: var(--font-brand); font-size: .85rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--teal-600); }
.values__list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin: 0; padding: 0; list-style: none; }
.value { display: flex; flex-direction: column; align-items: center; gap: .35rem; padding: 1.6rem 1.1rem; border-radius: var(--radius); background: var(--white); border: 1px solid var(--beige-200); text-align: center; }
.value__icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: .6rem; border-radius: 50%; background: var(--teal); color: var(--beige); }
.value strong { font-size: 1.05rem; font-weight: 600; color: var(--teal); }
.value span:last-child { font-size: .87rem; line-height: 1.5; color: var(--muted); }

/* =========================================================
   GET STARTED — forms
   ========================================================= */
.get-started { overflow: hidden; background: url("../assets/img/waves-light.svg") center / cover, var(--teal); color: var(--beige-100); }
.gs__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.gs__intro { position: sticky; top: calc(var(--header-h) + 2rem); }
.direct { display: grid; gap: .9rem; margin-top: 2.25rem; }
.direct__item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.25rem; border-radius: 18px;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(216, 206, 190, .2);
  text-decoration: none; transition: background-color .25s, transform .3s var(--ease);
}
.direct__item:hover { background: rgba(255, 255, 255, .11); transform: translateX(4px); }
.direct__item small { display: block; font-size: .78rem; opacity: .75; }
.direct__item strong { display: block; font-size: 1.05rem; font-weight: 600; color: var(--white); overflow-wrap: anywhere; }
.direct__item--main { background: var(--beige); border-color: var(--beige); color: var(--teal); }
.direct__item--main strong { color: var(--teal); font-size: 1.15rem; }
.direct__item--main:hover { background: var(--beige-100); }
.direct__item--main .direct__icon { background: var(--teal); color: var(--beige); }
.direct__icon { width: 48px; height: 48px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--beige); color: var(--teal); }

.form-card { padding: clamp(1.5rem, 3.5vw, 2.75rem); border-radius: var(--radius-lg); background: var(--white); color: var(--text); box-shadow: var(--shadow-lg); }
.tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-bottom: 2rem; padding: 5px; border-radius: 999px; background: var(--beige-100); }
.tab {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1rem; border: 0; border-radius: 999px;
  background: transparent; color: var(--muted);
  font-size: .92rem; font-weight: 600; line-height: 1.2; cursor: pointer;
  transition: background-color .25s, color .25s, box-shadow .25s;
}
.tab .icon { width: 18px; height: 18px; }
.tab:hover { color: var(--teal); }
.tab[aria-selected="true"] { background: var(--teal); color: var(--beige-100); box-shadow: 0 6px 16px -8px rgba(7, 62, 63, .6); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.25rem; }
.field--full { grid-column: 1 / -1; }
.field label, .field__legend { display: block; margin-bottom: .4rem; font-size: .86rem; font-weight: 600; color: var(--ink); }
.req-mark { color: var(--teal-600); }
.field input:where(:not([type="checkbox"], [type="radio"])), .field select, .field textarea {
  width: 100%; padding: .85rem 1rem;
  border: 1.5px solid var(--beige-300); border-radius: 14px;
  background: var(--cream); color: var(--ink);
  font: inherit; font-size: .97rem;
  appearance: none; -webkit-appearance: none;
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.field select {
  padding-right: 2.75rem; cursor: pointer;
  background: var(--cream) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23073e3f' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 1rem center / 18px no-repeat;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); background-color: var(--white); box-shadow: 0 0 0 4px rgba(7, 62, 63, .12); }
.field__error { display: none; margin-top: .35rem; font-size: .8rem; color: var(--danger); }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: var(--danger); }
.field.is-invalid .field__error { display: block; }

.radio-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.radio { position: relative; cursor: pointer; }
.radio input { position: absolute; opacity: 0; }
.radio span { display: inline-block; padding: .65rem 1.3rem; border: 1.5px solid var(--beige-300); border-radius: 999px; background: var(--cream); font-size: .92rem; font-weight: 500; transition: all .2s; }
.radio input:checked + span { background: var(--teal); border-color: var(--teal); color: var(--beige-100); }
.radio input:focus-visible + span { outline: 3px solid var(--tan); outline-offset: 2px; }

.check { display: flex; align-items: flex-start; gap: .7rem; font-size: .88rem !important; font-weight: 400 !important; color: var(--muted) !important; cursor: pointer; }
.check input { width: 20px; height: 20px; flex: none; margin: .15em 0 0; accent-color: var(--teal); }

/* CV upload */
.field__opt { font-weight: 400; color: var(--muted); }
.field .upload {
  position: relative;
  display: flex; align-items: center; gap: 1rem;
  margin: 0; padding: 1.1rem 1.25rem;
  border: 1.5px dashed var(--beige); border-radius: 16px;
  background: var(--cream); cursor: pointer;
  font-weight: 400;
  transition: border-color .2s, background-color .2s;
}
.field .upload:hover, .field .upload.is-dragover { border-color: var(--teal); background: var(--beige-100); }
.field .upload:focus-within { outline: 3px solid var(--tan); outline-offset: 3px; }
.field .upload__input { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; opacity: 0; cursor: pointer; }
.upload__icon { width: 46px; height: 46px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--teal); color: var(--beige); }
.upload__icon .icon { width: 20px; height: 20px; }
.upload__text { display: flex; flex-direction: column; gap: .15rem; font-size: .92rem; color: var(--muted); line-height: 1.4; }
.upload__text strong { color: var(--teal); font-weight: 600; }
.upload__text small { font-size: .78rem; }
.upload__file {
  display: flex; align-items: center; gap: .85rem;
  padding: .85rem 1rem; border-radius: 16px;
  background: var(--beige-100); border: 1.5px solid var(--beige-300);
}
.upload__file-icon { width: 40px; height: 40px; flex: none; display: grid; place-items: center; border-radius: 12px; background: var(--white); color: var(--teal); }
.upload__file-icon .icon { width: 20px; height: 20px; }
.upload__meta { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.upload__name { font-size: .92rem; font-weight: 600; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.upload__size { font-size: .78rem; color: var(--muted); }
.upload__remove { width: 36px; height: 36px; flex: none; display: grid; place-items: center; border: 0; border-radius: 50%; background: transparent; color: var(--muted); cursor: pointer; }
.upload__remove:hover { background: var(--white); color: var(--danger); }
.upload__remove .icon { width: 18px; height: 18px; }
.field--file.is-invalid .upload { border-color: var(--danger); }
.field--file.has-file .upload { display: none; }
@media (hover: none) { .upload__drop { display: none; } }

.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 1.5rem; margin-top: 1.75rem; }
.form-foot__note { flex: 1 1 220px; font-size: .8rem; color: var(--muted); }
.form-foot .btn[disabled] { opacity: .65; cursor: progress; transform: none; }
.form-error { margin-top: 1rem; padding: .85rem 1rem; border-radius: 12px; background: #fbeceb; color: var(--danger); font-size: .9rem; }
.form-eeo { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--beige-200); font-size: .78rem; line-height: 1.55; color: var(--muted); }

.form-success { padding: 2.5rem 1rem 1rem; text-align: center; outline: none; }
.form-success__icon { width: 76px; height: 76px; display: grid; place-items: center; margin: 0 auto 1.5rem; border-radius: 50%; background: var(--teal); color: var(--beige); box-shadow: 0 0 0 10px var(--beige-100); animation: pop .6s cubic-bezier(.2, .9, .3, 1.35) both; }
.form-success__icon .icon { width: 36px; height: 36px; stroke-width: 2.4; }
.form-success h3 { margin-bottom: .6rem; font-size: 1.8rem; font-weight: 700; color: var(--teal); }
.form-success p { max-width: 26em; margin: 0 auto 1.75rem; color: var(--muted); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact__grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr; gap: 1.25rem; }
.c-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: .45rem;
  padding: 2rem; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--beige-200); color: var(--text);
  text-decoration: none;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.c-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.c-card__icon { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: .75rem; border-radius: 50%; background: var(--beige-100); color: var(--teal); }
.c-card__label { font-family: var(--font-brand); font-size: .8rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--teal-600); }
.c-card__value { font-size: 1.3rem; font-weight: 600; line-height: 1.35; color: var(--ink); text-decoration: none; }
.c-card__value--address { font-size: 1.05rem; }
.c-card__hint { font-size: .92rem; }
.c-card__links { display: flex; gap: 1.25rem; }
.c-card__link { display: inline-flex; align-items: center; gap: .35rem; margin-top: auto; padding-top: .75rem; font-size: .9rem; font-weight: 600; color: var(--teal); text-decoration: none; }
.c-card__link .icon { width: 16px; height: 16px; stroke-width: 2.2; transition: transform .25s var(--ease); }
.c-card__link:hover .icon, .c-card:hover > .c-card__link .icon { transform: translateX(3px); }
.c-card__appt {
  display: inline-flex; align-items: center; gap: .45rem;
  margin-top: .35rem; padding: .4rem .85rem; border-radius: 999px;
  background: var(--beige-100); color: var(--teal);
  font-family: var(--font-brand); font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.c-card__appt .icon { width: 15px; height: 15px; }
.footer__contact .footer__addr { display: block; }
.footer__appt { font-style: normal; font-size: .8rem; color: var(--beige); }
.c-card__wa { display: inline-flex; align-items: center; gap: .4rem; margin-top: .9rem; font-size: .82rem; color: var(--muted); text-decoration: none; }
.c-card__wa .icon { width: 15px; height: 15px; }
.c-card__wa:hover { color: var(--teal); text-decoration: underline; }

.c-card--featured { background: url("../assets/img/waves-light.svg") center / cover, var(--teal); border-color: var(--teal); color: rgba(243, 239, 232, .8); }
.c-card--featured .c-card__icon { background: var(--beige); }
.c-card--featured .c-card__label { color: var(--beige); }
.c-card--featured .c-card__value { color: var(--white); }
.c-card__value--email { font-size: clamp(1.15rem, 1.8vw, 1.5rem); }
.c-card--featured .c-card__link { color: var(--beige); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { padding-top: 4.5rem; background: var(--teal-950); color: rgba(243, 239, 232, .75); font-size: .93rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2.5rem; }
.footer__brand img { width: 210px; height: auto; margin-bottom: 1.25rem; }
.footer__slogan { font-size: 1.05rem; font-weight: 300; color: var(--beige-100); }
.footer__slogan strong { font-weight: 700; }
.footer__badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; }
.footer__badges span { padding: .35rem .8rem; border: 1px solid rgba(216, 206, 190, .3); border-radius: 999px; font-size: .75rem; letter-spacing: .03em; }
.site-footer h4 { margin-bottom: 1.1rem; font-family: var(--font-brand); font-size: .8rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--beige); }
.footer__links, .footer__contact { display: grid; gap: .6rem; margin: 0; padding: 0; list-style: none; }
.site-footer a { text-decoration: none; }
.site-footer a:hover, .site-footer .linklike:hover { color: var(--beige); }
.site-footer .linklike { text-decoration: none; }
.footer__contact a, .footer__contact span { display: inline-flex; align-items: flex-start; gap: .6rem; line-height: 1.5; }
.footer__contact .icon { width: 17px; height: 17px; margin-top: .2em; color: var(--beige); }
.footer__email { color: var(--beige-100); font-weight: 600; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: 3.5rem; padding: 1.5rem 0; border-top: 1px solid rgba(216, 206, 190, .14); font-size: .82rem; }
.footer__bottom .linklike { text-decoration: underline; }

/* ---------- Mobile bar ---------- */
.mobile-bar {
  position: fixed; inset: auto 0 0 0; z-index: 90;
  display: none; grid-template-columns: 1fr 1fr; gap: .6rem;
  padding: .65rem .8rem calc(.65rem + env(safe-area-inset-bottom));
  background: rgba(250, 248, 244, .95);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-top: 1px solid var(--beige-300);
}
.mobile-bar .btn { padding: .85em 1em; }

/* ---------- EEO dialog ---------- */
.eeo { width: min(640px, calc(100% - 2rem)); max-height: calc(100% - 2rem); padding: 0; border: 0; border-radius: var(--radius-lg); color: var(--text); box-shadow: var(--shadow-lg); }
.eeo::backdrop { background: rgba(3, 36, 37, .6); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.eeo__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.5rem 1.75rem; background: var(--teal); }
.eeo__head h2 { font-size: 1.3rem; font-weight: 600; color: var(--beige-100); }
.eeo__body { display: grid; gap: 1rem; padding: 1.75rem; font-size: .95rem; }
.eeo__body strong { color: var(--teal); }

/* ---------- Reveal on scroll ---------- */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
html.js .reveal.is-in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1180px) {
  .menu-toggle { display: grid; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    display: none; margin: 0; padding: 1rem 1.25rem 1.75rem;
    background: var(--cream); border-bottom: 1px solid var(--beige-300);
    box-shadow: 0 30px 40px -30px rgba(7, 62, 63, .45);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.is-open { display: block; }
  .nav ul { flex-direction: column; gap: 0; }
  .nav ul a { padding: .95rem .75rem; border-radius: 12px; font-size: 1.1rem; border-bottom: 1px solid var(--beige-200); }
  .nav__mobile-extra { display: grid; gap: .9rem; margin-top: 1.5rem; }
  .nav__contact { display: inline-flex; align-items: center; gap: .6rem; font-weight: 600; color: var(--teal); text-decoration: none; }
  .nav__actions { margin-left: auto; }
  .nav__apply { display: none; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .values__list { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .orbit { width: min(100%, 440px); }
  .stats__list { grid-template-columns: repeat(2, 1fr); row-gap: 2rem; }
  .industries__grid, .safety__grid, .workers__grid, .about__grid, .gs__grid { grid-template-columns: 1fr; }
  .feature-photo { min-height: 360px; }
  .pillars { grid-template-columns: 1fr; }
  .positions { grid-template-columns: 1fr; }
  .positions__photo { min-height: 260px; }
  .workers__visual { max-width: 480px; }
  .gs__intro { position: static; }
  .contact__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 1.75rem; }
  .steps::before { top: 28px; bottom: 28px; left: 25px; right: auto; width: 6px; height: auto; background: radial-gradient(circle, rgba(216, 206, 190, .55) 2.5px, transparent 3px) 50% 0 / 6px 16px repeat-y; }
  .step { display: grid; grid-template-columns: 56px 1fr; column-gap: 1.25rem; }
  .step__num { grid-row: span 2; margin: 0; }
}

@media (max-width: 760px) {
  :root { --header-h: 68px; }
  .topbar__meta, .topbar__label { display: none; }
  .topbar__inner { justify-content: center; }
  .brand img { height: 38px; }
  .mobile-bar { display: grid; }
  body { padding-bottom: 76px; }
  .mv { grid-template-columns: 1fr; }
  .values__list { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .topbar { display: none; }
  .nav__actions .icon-btn[href^="tel"], .nav__hire { display: none; }
  .lang-gate__options { grid-template-columns: 1fr; }
  .hero__ctas .btn { width: 100%; }
  .orbit__badge { padding: .75rem .9rem; max-width: 190px; }
  .orbit__badge strong { font-size: 1.8rem; }
  .orbit__pill { font-size: .68rem; }
  .cards-4, .safety__items, .benefits, .chips { grid-template-columns: 1fr; }
  .s-item--wide { grid-template-columns: 1fr; }
  .industry { grid-template-columns: 48px 1fr; }
  .industry__icon { width: 48px; height: 48px; }
  .industry__num { display: none; }
  .tabs { border-radius: 20px; grid-template-columns: 1fr; }
  .tab { border-radius: 16px; }
  .appt__actions, .appt__actions .btn { width: 100%; }
  .form-foot .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html.js .reveal { opacity: 1; transform: none; }
}
