/* ==========================================================================
   Propserve — brand stylesheet
   Palette sampled directly from the Propserve logo:
   green #A1DB3B · charcoal #595959
   ========================================================================== */

:root {
  --green: #a1db3b;
  --green-deep: #7cb023;
  --green-ink: #618a15;          /* passes contrast for small text on white */
  --green-wash: #f4faea;
  --green-wash-2: #eaf5d8;

  --ink: #22262a;
  --ink-2: #595959;
  --ink-3: #7a8085;
  --line: #e6e8ea;
  --line-2: #f1f3f4;
  --paper: #ffffff;
  --paper-2: #fbfbfa;
  --dark: #1e2226;

  --w: 1180px;
  --pad: clamp(20px, 5vw, 40px);
  --radius: 4px;

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Outfit", var(--sans);

  --shadow-sm: 0 1px 2px rgba(30, 34, 38, .04), 0 2px 8px rgba(30, 34, 38, .04);
  --shadow-md: 0 2px 4px rgba(30, 34, 38, .04), 0 14px 34px -12px rgba(30, 34, 38, .16);
  --ease: cubic-bezier(.2, .7, .3, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0;
}
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--green-deep); outline-offset: 3px; border-radius: 2px; }

/* ---------- layout primitives ---------- */
.wrap { width: 100%; max-width: var(--w); margin-inline: auto; padding-inline: var(--pad); }
.wrap--narrow { max-width: 800px; }
.section { padding-block: clamp(56px, 9vw, 108px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.section--wash { background: var(--paper-2); border-block: 1px solid var(--line-2); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-ink);
  margin: 0 0 18px;
}
.eyebrow--muted { color: var(--ink-3); }

.lede { font-size: clamp(17px, 2vw, 19.5px); line-height: 1.7; color: var(--ink-2); }

.rule {
  width: 44px; height: 3px; border: 0; border-radius: 2px;
  background: var(--green); margin: 0 0 26px;
}
.rule--center { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  padding: 14px 26px; border-radius: 3px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease);
}
.btn svg { flex: none; }
.btn--primary { background: var(--green); color: #1d2a08; border-color: var(--green); }
.btn--primary:hover { background: var(--green-deep); border-color: var(--green-deep); color: #fff; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn--onDark { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.btn--onDark:hover { background: #fff; color: var(--ink); border-color: #fff; }

.textlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; color: var(--green-ink);
  text-decoration: none;
}
.textlink svg { transition: transform .25s var(--ease); }
.textlink:hover svg { transform: translateX(4px); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(1.6) blur(12px);
  -webkit-backdrop-filter: saturate(1.6) blur(12px);
  border-bottom: 1px solid var(--line-2);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 74px;
}
.site-header__logo img { width: 152px; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  text-decoration: none; position: relative; padding-block: 6px;
  transition: color .2s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--green); transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--ink); }
.header-cta { display: inline-flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 600; color: var(--ink); text-decoration: none; }
.header-cta svg { color: var(--green-deep); }

.nav-toggle {
  display: none; background: none; border: 0; padding: 8px; margin-right: -8px;
  cursor: pointer; color: var(--ink);
}

/* ---------- home hero ---------- */
.hero { padding-block: clamp(64px, 11vw, 132px) clamp(40px, 6vw, 64px); position: relative; overflow: hidden; }
.hero::after {
  content: ""; position: absolute; top: -180px; right: -160px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(161,219,59,.16), rgba(161,219,59,0) 68%);
  pointer-events: none;
}
.hero__inner { max-width: 780px; position: relative; }
.hero h1 {
  font-size: clamp(38px, 6.4vw, 66px);
  font-weight: 400; letter-spacing: -.03em; line-height: 1.06;
  margin-bottom: 26px;
}
.hero h1 em { font-style: normal; color: var(--green-deep); }
.hero__sub { font-size: clamp(17px, 2.1vw, 20px); line-height: 1.65; max-width: 60ch; color: var(--ink-2); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

.trustbar {
  display: flex; flex-wrap: wrap; gap: 14px 44px;
  padding-top: 40px; margin-top: 44px; border-top: 1px solid var(--line-2);
}
.trustbar li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--ink-2); }
.trustbar svg { color: var(--green-deep); flex: none; }

/* ---------- landing band: the nine tiles ARE the page ---------- */
.lede-band { padding-block: clamp(38px, 5.5vw, 70px) clamp(46px, 6.5vw, 82px); position: relative; overflow: hidden; }
.lede-band::after {
  content: ""; position: absolute; top: -220px; right: -180px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(161,219,59,.15), rgba(161,219,59,0) 68%);
  pointer-events: none;
}
.lede-band .wrap { position: relative; }
.lede-band__head { max-width: 780px; margin-bottom: clamp(26px, 3.6vw, 40px); }
.lede-band h1 {
  font-size: clamp(31px, 5.1vw, 54px); font-weight: 400;
  letter-spacing: -.03em; line-height: 1.07; margin-bottom: 16px;
}
.lede-band h1 em { font-style: normal; color: var(--green-deep); }
.lede-band__sub { font-size: clamp(16.5px, 1.9vw, 19px); line-height: 1.65; color: var(--ink-2); max-width: 66ch; margin: 0; }

/* featured tile — the flagship division spans two columns */
.division--feature { grid-column: span 2; }
.division--feature h3 { font-size: clamp(21px, 2.4vw, 26px); }
.division--feature p { font-size: 15.6px; max-width: 64ch; }
.division__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 2px; }
.division__tags li {
  font-size: 12.3px; letter-spacing: .01em; color: var(--ink-2);
  background: var(--green-wash-2); border-radius: 100px; padding: 5px 12px;
  transition: background .3s var(--ease);
}
.division:hover .division__tags li { background: #fff; }

/* ---------- section heading ---------- */
.sec-head { max-width: 640px; margin-bottom: clamp(34px, 5vw, 54px); }
.sec-head h2 { font-size: clamp(27px, 3.6vw, 38px); margin-bottom: 16px; font-weight: 400; }
.sec-head--center { margin-inline: auto; text-align: center; }

/* ---------- division grid ---------- */
.divisions {
  display: grid; gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.division {
  position: relative; display: flex; flex-direction: column;
  gap: 14px; padding: 34px 30px 30px;
  background: var(--paper); text-decoration: none; color: inherit;
  transition: background .3s var(--ease), transform .3s var(--ease);
  min-height: 100%;
}
.division::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--green); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.division:hover { background: var(--green-wash); }
.division:hover::before { transform: scaleX(1); }
.division__icon {
  width: 42px; height: 42px; color: var(--green-deep);
  transition: transform .4s var(--ease);
}
.division:hover .division__icon { transform: translateY(-2px); }
.division__num {
  position: absolute; top: 26px; right: 28px;
  font-family: var(--display); font-size: 13px; font-weight: 500;
  color: var(--ink-3); opacity: .5; letter-spacing: .06em;
}
.division h3 { font-size: 19.5px; font-weight: 500; letter-spacing: -.015em; }
.division p { font-size: 14.8px; line-height: 1.6; color: var(--ink-3); margin: 0; }
.division__go {
  margin-top: auto; padding-top: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; color: var(--green-ink);
}
.division__go svg { transition: transform .3s var(--ease); }
.division:hover .division__go svg { transform: translateX(4px); }

/* ---------- value strip ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px); }
.value__k {
  font-family: var(--display); font-size: clamp(30px, 4vw, 42px);
  font-weight: 400; color: var(--ink); letter-spacing: -.03em; line-height: 1;
  margin-bottom: 14px;
}
.value__k span { color: var(--green-deep); }
.value h3 { font-size: 17.5px; margin-bottom: 8px; }
.value p { font-size: 15px; color: var(--ink-3); margin: 0; }

/* ==========================================================================
   Division page
   ========================================================================== */
.div-hero {
  text-align: center;
  padding-block: clamp(52px, 8vw, 92px) clamp(40px, 6vw, 68px);
  background:
    radial-gradient(760px 320px at 50% -8%, rgba(161,219,59,.13), rgba(161,219,59,0) 70%),
    var(--paper);
  border-bottom: 1px solid var(--line-2);
}
.div-hero__logo { width: clamp(220px, 30vw, 300px); margin: 0 auto 22px; }
.div-hero__divider {
  width: 1px; height: 34px; margin: 0 auto 20px;
  background: linear-gradient(to bottom, var(--line), var(--green));
}
.div-hero__name {
  font-family: var(--display);
  font-size: clamp(20px, 3.1vw, 30px);
  font-weight: 500; color: var(--ink);
  letter-spacing: .01em; margin: 0;
}
.div-hero__name span { color: var(--green-deep); }
.div-hero__label {
  margin: 14px 0 0; font-size: 11.5px; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase; color: var(--ink-3);
}
.div-hero__tag {
  margin: 26px auto 0; max-width: 62ch;
  font-size: clamp(16.5px, 2vw, 19px); line-height: 1.7; color: var(--ink-2);
}
.div-hero__actions { display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; margin-top: 32px; }

.breadcrumb {
  padding-block: 16px; font-size: 13.5px; color: var(--ink-3);
  border-bottom: 1px solid var(--line-2);
}
.breadcrumb a { color: var(--ink-3); text-decoration: none; }
.breadcrumb a:hover { color: var(--green-ink); }
.breadcrumb span { margin-inline: 9px; opacity: .5; }

/* intro + facts */
.intro-grid {
  display: grid; grid-template-columns: 1.55fr .95fr; gap: clamp(34px, 6vw, 76px);
  align-items: start;
}
.intro-grid h2 { font-size: clamp(24px, 3.1vw, 32px); font-weight: 400; margin-bottom: 20px; }
.factcard {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 28px 24px; background: var(--paper-2);
}
.factcard h3 {
  font-family: var(--sans); font-size: 11.5px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3);
  margin-bottom: 18px;
}
.factcard li { padding: 13px 0; border-top: 1px solid var(--line); font-size: 15px; }
.factcard li:first-of-type { border-top: 0; padding-top: 0; }
.factcard li b { display: block; font-family: var(--display); font-weight: 500; color: var(--ink); font-size: 15.5px; margin-bottom: 2px; }
.factcard li span { color: var(--ink-3); font-size: 14.3px; line-height: 1.55; }

/* scope list */
.scope { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.scope li { background: var(--paper); padding: 24px 26px; }
.scope b { display: block; font-family: var(--display); font-size: 16.5px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.scope span { display: block; font-size: 14.8px; line-height: 1.6; color: var(--ink-3); }
.scope li::marker { content: none; }

/* process */
.process { counter-reset: step; display: grid; gap: 0; }
.process li {
  counter-increment: step;
  display: grid; grid-template-columns: 62px 1fr; gap: 24px;
  padding: 26px 0; border-top: 1px solid var(--line);
}
.process li:last-child { border-bottom: 1px solid var(--line); }
.process li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--display); font-size: 15px; font-weight: 500;
  color: var(--green-deep); letter-spacing: .06em; padding-top: 3px;
}
.process b { grid-column: 2; display: block; font-family: var(--display); font-size: 18px; font-weight: 500; color: var(--ink); margin-bottom: 5px; }
.process span { grid-column: 2; display: block; font-size: 15.3px; line-height: 1.65; color: var(--ink-2); }

/* checklist */
.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 34px; }
.checks li { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; font-size: 15.4px; color: var(--ink-2); padding-block: 5px; }
.checks svg { color: var(--green-deep); margin-top: 5px; }

/* compliance note */
.note {
  border-left: 3px solid var(--green);
  background: var(--green-wash);
  padding: 26px 28px; border-radius: 0 var(--radius) var(--radius) 0;
}
.note h3 { font-size: 17.5px; margin-bottom: 10px; }
.note p { font-size: 15.3px; color: var(--ink-2); }

/* faq */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 40px 22px 0; position: relative;
  font-family: var(--display); font-size: 17.5px; font-weight: 500; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 11px; height: 11px;
  border-right: 1.8px solid var(--green-deep); border-bottom: 1.8px solid var(--green-deep);
  transform: translateY(-70%) rotate(45deg); transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq p { padding: 0 0 24px; font-size: 15.4px; color: var(--ink-2); max-width: 72ch; }

/* CTA band */
.cta-band { background: var(--dark); color: #fff; }
.cta-band .wrap { padding-block: clamp(48px, 7vw, 82px); }
.cta-band__head { text-align: center; max-width: 62ch; margin: 0 auto clamp(30px, 4vw, 44px); }
.cta-band h2 { color: #fff; font-size: clamp(25px, 3.3vw, 34px); font-weight: 400; margin-bottom: 12px; }
.cta-band__head p { color: rgba(255,255,255,.66); font-size: 16.5px; margin: 0; }
.cta-band__alt { text-align: center; margin-top: clamp(26px, 3.5vw, 36px); }

/* other divisions */
.more-divisions { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 17px; border: 1px solid var(--line); border-radius: 100px;
  font-size: 14.3px; color: var(--ink-2); text-decoration: none; background: var(--paper);
  transition: border-color .25s var(--ease), color .25s var(--ease), background .25s var(--ease);
}
.chip:hover { border-color: var(--green); background: var(--green-wash); color: var(--ink); }

/* ==========================================================================
   Language selector — "speak to us in your language"
   ========================================================================== */
.lang__invite {
  font-size: 12px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-3);
  margin: 0 0 18px;
}
.lang__invite--dark { color: rgba(255,255,255,.5); text-align: center; }

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

.lang {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); padding: 26px 26px 22px;
  display: flex; flex-direction: column;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.lang:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-2px); }

.lang__greet {
  font-family: var(--display); font-size: clamp(24px, 3vw, 30px);
  font-weight: 400; letter-spacing: -.02em; color: var(--green-deep);
  margin: 0 0 4px; line-height: 1.1;
}
.lang__lang {
  font-size: 11px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink-3); margin: 0 0 16px;
}
.lang__name {
  font-family: var(--display); font-size: 18px; font-weight: 500;
  color: var(--ink); margin: 0 0 16px;
  padding-bottom: 16px; border-bottom: 1px solid var(--line-2);
}
.lang__links { display: flex; flex-direction: column; gap: 9px; margin-top: auto; }
.lang__link {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14.6px; color: var(--ink-2); text-decoration: none;
  transition: color .2s var(--ease);
}
.lang__link svg { color: var(--green-deep); flex: none; }
.lang__link:hover { color: var(--green-ink); }
.lang__link--tel { font-size: 17px; font-weight: 600; color: var(--ink); font-family: var(--display); }

/* dark variant, used inside the CTA band */
.langs--dark .lang {
  background: rgba(255,255,255,.045);
  border-color: rgba(255,255,255,.13);
}
.langs--dark .lang:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--green); box-shadow: none;
}
.langs--dark .lang__greet { color: var(--green); }
.langs--dark .lang__lang { color: rgba(255,255,255,.5); }
.langs--dark .lang__name { color: #fff; border-bottom-color: rgba(255,255,255,.12); }
.langs--dark .lang__link { color: rgba(255,255,255,.72); }
.langs--dark .lang__link--tel { color: #fff; }
.langs--dark .lang__link svg { color: var(--green); }
.langs--dark .lang__link:hover { color: #fff; }

/* footer team list */
.footer-team li { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 8px; margin-bottom: 11px; }
.footer-team b { font-family: var(--display); font-weight: 500; color: var(--ink); font-size: 14.8px; }
.footer-team span { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.footer-team a { flex-basis: 100%; font-size: 14.8px; }

/* ---------- contact form ---------- */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 15.5px; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 3px;
  background: var(--paper); width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green-deep);
  box-shadow: 0 0 0 3px rgba(161,219,59,.22);
}
.field > .btn { align-self: flex-start; }
.form-error {
  border-left: 3px solid #d9534f; background: #fdf3f2;
  padding: 20px 22px; border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 28px;
}
.form-error b { display: block; font-family: var(--display); font-size: 17px; color: var(--ink); margin-bottom: 6px; }
.form-error span { font-size: 15.2px; color: var(--ink-2); }
.form-error a { color: var(--green-ink); }
.form-note { font-size: 13.5px; color: var(--ink-3); margin-top: 14px; max-width: 60ch; }

.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.contact-cards li { background: var(--paper); padding: 26px 26px 24px; }
.contact-cards svg { color: var(--green-deep); margin-bottom: 14px; }
.contact-cards b { display: block; font-family: var(--display); font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; }
.contact-cards a, .contact-cards span { font-size: 16px; color: var(--ink); text-decoration: none; }
.contact-cards a:hover { color: var(--green-ink); }

/* ---------- footer ---------- */
.site-footer { background: var(--paper-2); border-top: 1px solid var(--line); padding-block: clamp(48px, 6vw, 68px) 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(30px, 5vw, 64px); }
.site-footer__logo { width: 168px; margin-bottom: 18px; }
.site-footer p { font-size: 14.8px; color: var(--ink-3); max-width: 42ch; }
.footer-h { font-family: var(--sans); font-size: 11.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 16px; }
.site-footer li { margin-bottom: 9px; }
.site-footer li a { font-size: 14.8px; color: var(--ink-2); text-decoration: none; }
.site-footer li a:hover { color: var(--green-ink); }
.footer-bottom {
  margin-top: clamp(36px, 5vw, 54px); padding-block: 22px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
  font-size: 13.5px; color: var(--ink-3);
}

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .divisions { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .langs { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 8px var(--pad) 20px;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line-2); font-size: 16px; }
  .nav a::after { display: none; }
  .header-cta { display: none; }
  .divisions { grid-template-columns: 1fr; }
  .division--feature { grid-column: span 1; }
  .scope, .checks, .form-grid { grid-template-columns: 1fr; }
  .checks { gap: 4px; }
  .process li { grid-template-columns: 40px 1fr; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .hero::after { top: -260px; right: -240px; width: 420px; height: 420px; opacity: .7; }
  .div-hero { padding-block: 38px 44px; }
}

/* ---------- print ---------- */
@media print {
  .site-header, .cta-band, .nav-toggle { display: none; }
  body { font-size: 12pt; color: #000; }
}

/* "not sure which division" tile — fills the grid's trailing cells */
.division--ask { grid-column: span 2; background: var(--paper-2); }
.division--ask h3 { font-size: 19px; }
.division--ask p { max-width: 58ch; }
.division--ask:hover { background: var(--green-wash); }
@media (max-width: 760px) { .division--ask { grid-column: span 1; } }

/* ==========================================================================
   Header contact icons. No number on show; tap an icon to choose who.
   ========================================================================== */
.header-actions { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.hact { position: relative; }

.hact__btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; padding: 0;
  background: transparent; border: 1px solid transparent; border-radius: 50%;
  color: var(--ink-2); cursor: pointer;
  transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
}
.hact__btn:hover { background: var(--green-wash); color: var(--green-ink); }
.hact__btn[aria-expanded="true"] {
  background: var(--green-wash-2); color: var(--green-ink); border-color: var(--green);
}

.hact__pop {
  position: absolute; top: calc(100% + 12px); right: 0; z-index: 80;
  min-width: 268px; padding: 8px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 6px; box-shadow: var(--shadow-md);
  animation: hactIn .18s var(--ease);
}
.hact__pop[hidden] { display: none; }
@keyframes hactIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

.hact__title {
  font-size: 10.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-3); margin: 6px 10px 8px;
}
.hact__row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding: 9px 10px; border-radius: 4px; text-decoration: none;
  transition: background .18s var(--ease);
}
.hact__row:hover { background: var(--green-wash); }
.hact__who { display: flex; align-items: baseline; gap: 7px; }
.hact__who b { font-family: var(--display); font-weight: 500; font-size: 15px; color: var(--ink); }
.hact__lang {
  font-size: 10px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-3);
}
.hact__val { font-size: 13.6px; color: var(--ink-2); white-space: nowrap; }
.hact__row:hover .hact__val { color: var(--green-ink); }

@media (max-width: 760px) {
  .header-actions { gap: 0; margin-left: 0; }
  .hact__btn { width: 38px; height: 38px; }
  /* Anchor to the viewport rather than the button, so the panel can never
     run off the edge of a narrow screen. */
  .hact__pop {
    position: fixed; top: 78px; left: 14px; right: 14px;
    min-width: 0; width: auto;
  }
  .hact__row { padding: 12px 10px; }
  .hact__val { font-size: 14.5px; }
}

/* ==========================================================================
   Division hero with a looping background, and full width section stills
   ========================================================================== */
.div-hero--video {
  position: relative; overflow: hidden; border-bottom: 0;
  background: var(--dark);
  padding-block: clamp(64px, 9vw, 118px) clamp(56px, 8vw, 96px);
}
.div-hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; pointer-events: none;
}
.div-hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(16,19,22,.66) 0%, rgba(16,19,22,.56) 45%, rgba(16,19,22,.82) 100%),
    radial-gradient(90% 70% at 50% 38%, rgba(16,19,22,.34), rgba(16,19,22,.06) 70%);
}
.div-hero--video .wrap { position: relative; z-index: 2; }
.div-hero--video .div-hero__name { color: #fff; }
.div-hero--video .div-hero__name span { color: var(--green); }
.div-hero--video .div-hero__label { color: rgba(255,255,255,.62); }
.div-hero--video .div-hero__tag { color: rgba(255,255,255,.88); }
.div-hero--video .div-hero__divider { background: linear-gradient(to bottom, rgba(255,255,255,.25), var(--green)); }
.div-hero--video .btn--ghost { color: #fff; border-color: rgba(255,255,255,.34); }
.div-hero--video .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* Someone who has asked for less motion gets the still frame instead. */
@media (prefers-reduced-motion: reduce) {
  .div-hero__video { display: none; }
  .div-hero--video { background-size: cover; background-position: center; }
}

/* full width photograph between sections */
.shot { margin: 0; position: relative; }
.shot img { width: 100%; height: clamp(240px, 42vw, 520px); object-fit: cover; display: block; }
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 34px var(--pad) 16px;
  font-size: 13.4px; color: rgba(255,255,255,.9);
  background: linear-gradient(180deg, rgba(16,19,22,0), rgba(16,19,22,.72));
}
@media (max-width: 760px) {
  .shot figcaption { font-size: 12.6px; padding-bottom: 12px; }
}


/* Alternative treatment: logo stays on white, footage runs in a band below. */
.videoband { position: relative; line-height: 0; background: var(--dark); }
.videoband video { width: 100%; height: clamp(260px, 46vw, 560px); object-fit: cover; display: block; }
.videoband__cap {
  position: absolute; left: 0; right: 0; bottom: 0; line-height: 1.5;
  padding: 40px var(--pad) 16px; font-size: 13.4px; color: rgba(255,255,255,.9);
  background: linear-gradient(180deg, rgba(16,19,22,0), rgba(16,19,22,.7));
}
