/* ============================================================
   USK INDUSTRY — Shared stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Brand */
  --green: #009641;
  --green-dark: #007a35;
  --green-light: #e6f4ec;
  --gray: #878787;
  --gray-dark: #5c5c5c;
  --orange: #ef9e34;
  --orange-dark: #d49a28;

  /* Neutrals */
  --text: #1a1a1a;
  --muted: #666666;
  --line: #e5e7eb;
  --bg: #ffffff;
  --bg-light: #f7f8f7;
  --bg-dark: #16201a;

  --error: #e74c3c;
  --success: #27ae60;

  /* Radius */
  --r-sm: 4px;
  --r: 8px;
  --r-lg: 12px;

  /* Shadow */
  --sh-sm: 0 1px 3px rgba(0,0,0,.08);
  --sh-md: 0 4px 14px rgba(0,0,0,.10);
  --sh-lg: 0 14px 40px rgba(0,0,0,.13);

  /* Layout */
  --maxw: 1360px;
  --nav-h: 96px;

  /* Type */
  --f-head: 'Barlow Condensed', 'Segoe UI', sans-serif;
  --f-body: 'Inter', 'Segoe UI', sans-serif;
  --f-mono: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-head);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--text);
}
.h-xl { font-size: clamp(2.6rem, 5.2vw, 4.6rem); text-transform: uppercase; }
.h-lg { font-size: clamp(2rem, 3.6vw, 3.1rem); text-transform: uppercase; }
.h-md { font-size: clamp(1.5rem, 2.4vw, 2.1rem); text-transform: uppercase; }

.eyebrow {
  font-family: var(--f-mono);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 .9rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--green);
  display: inline-block;
}

.lead { font-size: 1.12rem; color: var(--muted); max-width: 60ch; }
p { text-wrap: pretty; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; position: relative; }
.section--light { background: var(--bg-light); }
.section--lined { background:
  repeating-linear-gradient(-22deg, rgba(0,0,0,.04) 0 1.5px, transparent 1.5px 32px),
  linear-gradient(180deg, #e8eae9 0%, #f4f5f4 70%); }
.section--green { background: var(--green); color: #fff; }
.section--dark { background: var(--bg-dark); color: #fff; }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.grid { display: grid; gap: 2rem; }
.section-head { max-width: 64ch; margin-bottom: 2.6rem; }
.section-head.center { margin-left: auto; margin-right: auto; }

/* ---------- Diagonal motif (the trapezoid / U-S-K skew) ---------- */
.diag-top, .diag-bottom { position: relative; }
.angle-divider {
  display: block;
  width: 100%;
  height: 64px;
  margin: 0;
}
.angle-divider path { fill: currentColor; }

/* small trapezoid tab echoing the logo's center block */
.tab {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-family: var(--f-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  padding: .35rem 1.4rem .45rem;
  clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: var(--r);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, transform .18s, box-shadow .18s;
  min-height: 48px;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--green); color: #fff; }
.btn--primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn--accent { background: var(--orange); color: #1a1a1a; }
.btn--accent:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn--ghost { background: transparent; border-color: var(--green); color: var(--green); }
.btn--ghost:hover { background: var(--green); color: #fff; }
.btn--white { background: #fff; color: var(--text); }
.btn--white:hover { background: #f0f0f0; transform: translateY(-2px); }
.btn--outline-white { background: transparent; border-color: rgba(255,255,255,.65); color: #fff; }
.btn--outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--sm { padding: 9px 18px; font-size: .9rem; min-height: 40px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
  max-width: var(--maxw); margin: 0 auto; padding: 0 28px;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 79.8px; width: auto; }
.nav__menu {
  display: flex; align-items: center; gap: .35rem;
  list-style: none; margin: 0; padding: 0;
}
.nav__menu > li { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: var(--f-head); font-weight: 600;
  font-size: 1.04rem; text-transform: uppercase; letter-spacing: .01em;
  color: var(--text); text-decoration: none;
  padding: .6rem .85rem; border-radius: var(--r-sm);
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.nav__link:hover, .nav__link.is-active { color: var(--green); }
.nav__link .caret { width: 12px; height: 12px; transition: transform .2s; }
.nav__item--has-drop:hover .caret { transform: rotate(180deg); }

.nav__drop {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 290px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  padding: .5rem; margin: 0; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s, transform .18s, visibility .18s;
}
.nav__drop::before {
  content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 12px;
}
.nav__item--has-drop:hover .nav__drop,
.nav__item--has-drop:focus-within .nav__drop {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__drop a {
  display: flex; align-items: center; gap: .8rem;
  padding: .7rem .8rem; border-radius: var(--r);
  text-decoration: none; color: var(--text);
  transition: background .14s;
}
.nav__drop a:hover { background: var(--bg-light); }
.nav__drop .dd-ico {
  width: 36px; height: 36px; flex: none;
  display: grid; place-items: center;
  background: var(--green-light); color: var(--green);
  border-radius: var(--r-sm);
  clip-path: polygon(12% 0, 88% 0, 100% 100%, 0 100%);
}
.nav__drop .dd-ico svg { width: 19px; height: 19px; }
.nav__drop .dd-txt strong {
  display: block; font-family: var(--f-head); font-weight: 600;
  font-size: 1.02rem; text-transform: uppercase; line-height: 1.1;
}
.nav__drop .dd-txt span { font-size: .82rem; color: var(--muted); }
.nav__drop .dd-ext { margin-left: auto; color: var(--gray); }
.nav__drop .dd-ext svg { width: 15px; height: 15px; }

.nav__actions { display: flex; align-items: center; gap: 1rem; }
.nav__toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 0;
}
.nav__toggle span {
  display: block; width: 24px; height: 2.5px; background: var(--text);
  margin: 5px auto; border-radius: 2px; transition: .25s;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-dark); color: #c7cdc9; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem;
  padding: 4rem 0 2.5rem;
}
.site-footer h4 {
  color: #fff; font-size: 1.18rem; text-transform: uppercase;
  letter-spacing: .02em; margin-bottom: 1.1rem;
}
.site-footer a { color: #c7cdc9; text-decoration: none; transition: color .15s; }
.site-footer a:hover { color: var(--green); }
.footer-logo img { height: 74px; margin-bottom: 1.1rem; }
.footer-about p { font-size: .95rem; line-height: 1.7; max-width: 34ch; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer-contact { display: grid; gap: .85rem; font-size: .95rem; }
.footer-contact .fc-row { display: flex; gap: .7rem; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; flex: none; color: var(--green); margin-top: 2px; }
.footer-social { display: flex; gap: .7rem; margin-top: 1.2rem; }
.footer-social a {
  width: 40px; height: 40px; display: grid; place-items: center;
  background: rgba(255,255,255,.07); border-radius: var(--r-sm);
}
.footer-social a:hover { background: var(--green); color: #fff; }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.4rem 0; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; font-size: .85rem; color: #8b938d;
}
.footer-bottom a { font-size: .85rem; }

/* ---------- Cards / features ---------- */
.feature {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 2rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: transparent; }
.feature .ico {
  width: 54px; height: 54px; display: grid; place-items: center;
  background: var(--green-light); color: var(--green);
  margin-bottom: 1.2rem;
  clip-path: polygon(14% 0, 86% 0, 100% 100%, 0 100%);
}
.feature .ico svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.4rem; text-transform: uppercase; margin-bottom: .5rem; }
.feature p { color: var(--muted); font-size: .98rem; margin: 0; }

/* checklist */
.checklist { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .9rem; }
.checklist li { display: flex; gap: .8rem; align-items: flex-start; font-weight: 500; }
.checklist .chk {
  width: 26px; height: 26px; flex: none; border-radius: 50%;
  background: var(--green); color: #fff; display: grid; place-items: center;
}
.checklist .chk svg { width: 15px; height: 15px; }

/* ---------- Image slots ---------- */
image-slot {
  --is-bg: var(--bg-light);
  border: 1.5px dashed #c8cfca;
  background: var(--bg-light);
}

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-weight: 600; font-size: .92rem; }
.field label .req { color: var(--error); }
.field input, .field select, .field textarea {
  font-family: var(--f-body); font-size: 1rem; color: var(--text);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--r);
  background: #fff; transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,150,65,.12);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--error); }
.field .err { color: var(--error); font-size: .82rem; display: none; }
.field.invalid .err { display: block; }
.form-success {
  display: none; align-items: center; gap: .8rem;
  background: var(--green-light); color: var(--green-dark);
  border: 1px solid rgba(0,150,65,.3); border-radius: var(--r);
  padding: 1rem 1.2rem; font-weight: 600;
}
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; flex: none; }

/* ---------- Gallery ---------- */
.gallery-filter { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.2rem; }
.filter-btn {
  font-family: var(--f-head); font-weight: 600; font-size: .96rem;
  text-transform: uppercase; letter-spacing: .01em;
  padding: 9px 18px; border-radius: 100px; cursor: pointer;
  background: #fff; color: var(--text); border: 1.5px solid var(--line);
  transition: all .15s;
}
.filter-btn:hover { border-color: var(--green); color: var(--green); }
.filter-btn.active { background: var(--green); border-color: var(--green); color: #fff; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
}
.gallery-item {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer; background: var(--bg-light);
}
.gallery-item.hide { display: none; }
.gallery-item image-slot, .gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item .g-overlay {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.78));
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.3rem; color: #fff; pointer-events: none;
  opacity: 0; transition: opacity .2s;
}
.gallery-item:hover .g-overlay { opacity: 1; }
.gallery-item .g-tag {
  align-self: flex-start;
  font-family: var(--f-mono); font-size: .68rem; letter-spacing: .12em;
  text-transform: uppercase; background: var(--green); color: #fff;
  padding: 3px 9px; border-radius: 3px; margin-bottom: .6rem;
}
.gallery-item h4 { color: #fff; font-size: 1.3rem; text-transform: uppercase; }
.gallery-item .g-overlay p { font-size: .86rem; color: #d6dad7; margin: .2rem 0 0; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1000; display: none;
  background: rgba(8,12,10,.92); align-items: center; justify-content: center;
  padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lightbox img, .lightbox image-slot {
  max-width: 90vw; max-height: 86vh; border-radius: var(--r);
  width: auto; height: auto; box-shadow: var(--sh-lg);
}
.lightbox__close {
  position: absolute; top: 22px; right: 26px; width: 48px; height: 48px;
  background: rgba(255,255,255,.1); border: 0; border-radius: 50%;
  color: #fff; cursor: pointer; display: grid; place-items: center;
}
.lightbox__close:hover { background: rgba(255,255,255,.2); }
.lightbox__close svg { width: 24px; height: 24px; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  position: relative; color: #fff; overflow: hidden;
  background: var(--bg-dark);
}
.page-hero image-slot, .page-hero .ph-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; border: 0; object-fit: cover;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(95deg, rgba(11,17,13,.93) 0%, rgba(11,17,13,.82) 42%, rgba(11,17,13,.45) 72%, rgba(0,150,65,.4) 100%);
}
.page-hero .wrap { position: relative; z-index: 2; padding-top: 5.5rem; padding-bottom: 5.5rem; }
.page-hero .breadcrumb {
  font-family: var(--f-mono); font-size: .8rem; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 1rem;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero .lead { color: rgba(255,255,255,.85); margin-top: 1.1rem; }

/* contact mini-cards */
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.contact-card {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.6rem; background: #fff;
}
.contact-card .cc-role { font-family: var(--f-mono); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--green); }
.contact-card h4 { font-size: 1.35rem; margin: .35rem 0 .8rem; text-transform: uppercase; }
.contact-card .cc-line { display: flex; align-items: center; gap: .6rem; color: var(--muted); margin: .35rem 0; font-size: .96rem; }
.contact-card .cc-line a { color: var(--text); text-decoration: none; }
.contact-card .cc-line a:hover { color: var(--green); }
.contact-card svg { width: 17px; height: 17px; color: var(--green); flex: none; }
.cc-qr { display: flex; align-items: center; gap: .85rem; margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.cc-qr .cc-qr-img {
  width: 84px; height: 84px; flex: none; border-radius: 8px; background: #fff;
  padding: 5px; border: 1px solid var(--line); cursor: zoom-in;
  image-rendering: pixelated;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.cc-qr .cc-qr-img:hover, .cc-qr .cc-qr-img:focus-visible {
  transform: scale(1.07); border-color: var(--green); outline: none;
  box-shadow: 0 10px 26px rgba(0,0,0,.16);
}
.cc-qr .cc-qr-cap { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); line-height: 1.5; }
.cc-qr .cc-qr-cap strong { display: block; color: var(--text); font-weight: 600; }
.pcard .cc-qr { margin-top: .9rem; padding-top: .9rem; gap: .7rem; }
.pcard .cc-qr .cc-qr-img { width: 70px; height: 70px; }
.pcard .cc-qr .cc-qr-cap { font-size: .66rem; }

/* QR / vCard modal */
.qr-modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; background: rgba(17,24,20,.72); backdrop-filter: blur(3px); padding: 1.5rem; }
.qr-modal.open { display: flex; }
.qr-modal .qrm__card { position: relative; background: #fff; border-radius: var(--r-lg); padding: 2.4rem 2.2rem 1.8rem; width: min(380px, 100%); text-align: center; box-shadow: 0 24px 60px rgba(0,0,0,.32); animation: qrm-in .22s cubic-bezier(.2,.7,.2,1); }
@keyframes qrm-in { from { opacity: 0; transform: translateY(12px) scale(.96); } to { opacity: 1; transform: none; } }
.qr-modal .qrm__close { position: absolute; top: .8rem; right: .8rem; width: 38px; height: 38px; border: none; background: var(--bg-light); border-radius: 50%; cursor: pointer; color: var(--text); display: grid; place-items: center; }
.qr-modal .qrm__close:hover { background: var(--green-light); color: var(--green); }
.qr-modal .qrm__close svg { width: 20px; height: 20px; }
.qr-modal .qrm__img { width: 230px; height: 230px; image-rendering: pixelated; border: 1px solid var(--line); border-radius: 10px; padding: 8px; background: #fff; }
.qr-modal .qrm__name { font-family: var(--f-head); font-weight: 700; text-transform: uppercase; font-size: 1.45rem; margin-top: 1.1rem; line-height: 1.05; }
.qr-modal .qrm__role { font-family: var(--f-mono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--green); margin-top: .3rem; }
.qr-modal .qrm__lines { display: flex; flex-direction: column; gap: .35rem; align-items: center; margin: .9rem 0 1.2rem; }
.qr-modal .qrm__lines a { display: inline-flex; align-items: center; gap: .5rem; color: var(--text); text-decoration: none; font-size: .96rem; font-weight: 500; }
.qr-modal .qrm__lines a:hover { color: var(--green); }
.qr-modal .qrm__lines svg { width: 16px; height: 16px; color: var(--green); flex: none; }
.qr-modal .qrm__dl { width: 100%; justify-content: center; }
.qr-modal .qrm__hint { font-size: .8rem; color: var(--muted); margin-top: .85rem; line-height: 1.5; }

/* QR hover popover */
.qr-pop { position: fixed; z-index: 210; width: 244px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: 0 18px 48px rgba(0,0,0,.22); padding: 1rem; text-align: center; opacity: 0; transform: scale(.96); pointer-events: none; transition: opacity .14s ease, transform .14s ease; }
.qr-pop.open { opacity: 1; transform: scale(1); }
.qr-pop .qr-pop__img { width: 212px; height: 212px; image-rendering: pixelated; display: block; margin: 0 auto; }
.qr-pop .qr-pop__name { font-family: var(--f-head); font-weight: 700; text-transform: uppercase; font-size: 1.18rem; line-height: 1.05; margin-top: .6rem; }
.qr-pop .qr-pop__hint { font-family: var(--f-mono); font-size: .64rem; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-top: .3rem; }

/* spec table */
.spec-table { width: 100%; border-collapse: collapse; font-size: .98rem; }
.spec-table th, .spec-table td { text-align: left; padding: .95rem 1.1rem; border-bottom: 1px solid var(--line); }
.spec-table thead th { font-family: var(--f-head); text-transform: uppercase; font-size: 1.02rem; background: var(--bg-light); }
.spec-table tbody tr:hover { background: var(--bg-light); }
.spec-table .mono { font-family: var(--f-mono); font-size: .9rem; color: var(--green-dark); }

/* job cards */
.job { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.8rem; background: #fff; transition: box-shadow .2s, transform .2s; }
.job:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.job .job-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; flex-wrap: wrap; }
.job h3 { font-size: 1.5rem; text-transform: uppercase; }
.job .job-meta { display: flex; flex-wrap: wrap; gap: 1.2rem; margin: .9rem 0 1rem; font-size: .9rem; color: var(--muted); }
.job .job-meta span { display: inline-flex; align-items: center; gap: .4rem; }
.job .job-meta svg { width: 16px; height: 16px; color: var(--green); }
.badge { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; padding: 5px 11px; border-radius: 100px; }
.badge--open { background: var(--green-light); color: var(--green-dark); }
.tag-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.tag-list .tag { font-size: .82rem; background: var(--bg-light); border: 1px solid var(--line); padding: 4px 12px; border-radius: 100px; color: var(--muted); }

/* stat strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; }
.stat .num { font-family: var(--f-head); font-weight: 700; font-size: clamp(2.4rem, 4vw, 3.4rem); color: var(--green); line-height: 1; }
.section--green .stat .num, .section--dark .stat .num { color: #fff; }
.stat .lbl { font-size: .92rem; color: var(--muted); margin-top: .4rem; }
.section--green .stat .lbl, .section--dark .stat .lbl { color: rgba(255,255,255,.8); }

/* ---------- Division cards (home + divize hub) ---------- */
.divize-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.dcard { position: relative; display: block; border-radius: var(--r-lg); overflow: hidden; min-height: 340px; text-decoration: none; color: #fff; box-shadow: var(--sh-sm); transition: transform .25s, box-shadow .25s; isolation: isolate; }
.dcard__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .5s ease; }
.dcard__shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(13,20,16,.05) 30%, rgba(13,20,16,.55) 62%, rgba(13,20,16,.92)); }
.dcard__num { position: absolute; top: 1rem; right: 1.2rem; z-index: 2; font-family: var(--f-head); font-weight: 700; font-size: 1.4rem; color: rgba(255,255,255,.55); }
.dcard:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.dcard:hover .dcard__img { transform: scale(1.06); }
.dcard__body { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 1.6rem; }
.dcard__tag { display: inline-block; background: var(--green); color: #fff; font-family: var(--f-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; padding: 4px 11px 5px; margin-bottom: .8rem; clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%); }
.dcard__body h3 { color: #fff; font-size: 1.7rem; text-transform: uppercase; line-height: 1; margin-bottom: .5rem; }
.dcard__body p { font-size: .95rem; color: rgba(255,255,255,.85); margin: 0 0 1rem; max-width: 36ch; }
.dcard__link { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--f-head); font-weight: 600; text-transform: uppercase; font-size: .92rem; letter-spacing: .02em; color: var(--orange); }
.dcard__link svg { width: 16px; height: 16px; transition: transform .2s; }
.dcard:hover .dcard__link svg { transform: translateX(4px); }
@media (max-width: 1024px) { .divize-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .divize-grid { grid-template-columns: 1fr; } }

/* ---------- CTA band (shared) ---------- */
.cta-band { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); color: #fff; padding: clamp(3rem,6vw,4.5rem) 0; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 48%; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.12)); clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%); }
.cta-band__inner { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { color: rgba(255,255,255,.82); margin: 0; max-width: 44ch; }

/* ---------- Utilities ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.media-frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); }
.media-frame image-slot, .media-frame img { width: 100%; height: 100%; display: block; object-fit: cover; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mb-0 { margin-bottom: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .four-col { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    height: calc(100vh - var(--nav-h)); height: calc(100dvh - var(--nav-h));
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; padding: 1rem 1.2rem; overflow-y: auto;
    transform: translateX(100%); transition: transform .28s ease;
    border-top: 1px solid var(--line);
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__menu > li { border-bottom: 1px solid var(--line); }
  .nav__link { padding: 1rem .2rem; font-size: 1.2rem; }
  .nav__drop {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; min-width: 0; padding: 0 0 .6rem 1rem;
    display: none;
  }
  .nav__item--has-drop.open .nav__drop { display: block; }
  .nav__actions .btn { display: none; }
}
@media (max-width: 760px) {
  .two-col, .three-col { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-cards, .contact-card-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .four-col { grid-template-columns: 1fr; }
}
