/* ============================================================
   Genesis Vista Limited — site stylesheet
   Source of truth: design/1 Homepage.dc.html (Claude Design)
   ============================================================ */

:root {
  /* Brand */
  --ink:          #17332B;  /* deep forest — headings, dark cards */
  --green:        #118847;  /* primary brand green */
  --green-deep:   #0D6B38;  /* hover */
  /* Green as TEXT. #118847 only reaches 4.30:1 on the site's off-white grounds
     (#F6FAF6, #FAF9F6, #FBFDFB) and 4.54:1 on pure white — under or barely over
     the 4.5:1 WCAG AA floor. The deeper green clears it at 6.3:1 everywhere.
     Fills, rules and borders keep --green. */
  --green-text:   #0D6B38;
  --green-press:  #0A5730;
  --green-mid:    #2E9459;  /* rules on dark */
  --gold:         #C89B4A;
  --gold-deep:    #A87C33;
  /* Gold as TEXT. #C89B4A manages only 2.42-2.55:1 on the site's grounds, well
     under the 4.5:1 AA floor; this clears it at 4.79-5.05:1. The lighter golds
     stay for the button gradient and rules, where contrast rules don't bite. */
  --gold-text:    #8A6A1F;

  --body:         #1C1C1C;
  --body-soft:    #3E4E52;
  /* Muted label grey. The design's #8A9990 managed 2.98:1 on white; this reads
     at 4.98:1 while staying far lighter than the --ink value beside it (13.59:1),
     so the label still recedes against what it labels. */
  --label-muted:  #667368;
  --on-dark:      #C2D0C6;
  --white:        #ffffff;
  --hairline:     #eaeaea;

  --rule-ink:     rgba(23, 51, 43, 0.08);
  --rule-green:   rgba(17, 136, 71, 0.16);

  /* Type */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-sans:    'Manrope', system-ui, sans-serif;

  --t-h1:      clamp(38px, 4.4vw, 58px);
  --t-h2:      clamp(30px, 3.2vw, 42px);
  --t-h3:      clamp(19px, 1.6vw, 21px);
  --t-body:    clamp(15px, 1.1vw, 16px);
  --t-lead:    clamp(15.5px, 1.2vw, 16px);
  --t-eyebrow: 13px;

  /* Rhythm */
  --section-y: clamp(56px, 7vw, 96px);
  --gutter:    clamp(18px, 2.5vw, 32px);
  --header-x:  clamp(16px, 8vw, 150px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--body);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; }

a { color: var(--ink); text-decoration: none; transition: color 200ms var(--ease), opacity 200ms var(--ease), transform 200ms var(--ease); }
a:hover { color: var(--green-text); }
a:active { transform: translateY(1px); }

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

h1, h2, h3, p { margin: 0; }

/* ---------- shared primitives ---------- */
.page { width: 100%; background: var(--ink); }

.eyebrow {
  font-size: var(--t-eyebrow);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--green-text);
  white-space: nowrap;
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.display .accent { color: var(--green-text); }

.lead {
  font-size: var(--t-lead);
  line-height: 1.65;
  text-wrap: pretty;
}

/* short underline mark under card titles */
.rule {
  display: block;
  width: 34px;
  height: 1.5px;
  background: var(--green);
  transition: width 300ms var(--ease);
}
.rule--onDark { width: 44px; background: rgba(255, 255, 255, 0.55); }
.rule--mid { background: var(--green-mid); }

/* dot-and-line divider */
.divider { display: flex; align-items: center; gap: 12px; }
.divider__line { display: block; width: clamp(28px, 2.6vw, 46px); height: 1px; background: rgba(17, 136, 71, 0.45); }
.divider__line:last-child { background: rgba(46, 148, 89, 0.6); }
.divider__dot { display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

.divider--wide { width: 100%; max-width: 540px; gap: 10px; }
.divider--wide .divider__line { flex: 1; width: auto; background: linear-gradient(90deg, rgba(17,136,71,0) 0%, rgba(17,136,71,0.45) 100%); }
.divider--wide .divider__line:last-child { background: linear-gradient(90deg, rgba(17,136,71,0.45) 0%, rgba(17,136,71,0) 100%); }
.divider--wide .divider__dot { width: 5px; height: 5px; }

/* fills its positioned parent, cropped */
.media { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
  color: var(--white);
  transition: background 200ms var(--ease), border-color 200ms var(--ease),
              transform 200ms var(--ease), box-shadow 200ms var(--ease), filter 200ms var(--ease);
}
.btn:hover { color: var(--white); }
.btn__arrow { color: #DCE6DE; }

.btn--solid { background: var(--green); border: 1px solid var(--green); border-radius: 2px; text-transform: uppercase; gap: 10px; }
.btn--solid:hover { background: var(--green-deep); border-color: var(--green-deep); }
.btn--solid:active { background: var(--green-press); }

.btn--green { background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%); border: 1px solid rgba(46,148,89,0.55); }
.btn--green:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(17,136,71,0.35); }
.btn--green:active { transform: translateY(1px); filter: brightness(0.94); }

.btn--gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%); border: 1px solid rgba(17,136,71,0.4); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(200,155,74,0.35); }
.btn--gold:active { transform: translateY(1px); filter: brightness(0.94); }

.btn--sm { min-height: 38px; gap: 0; }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 1.2vw, 28px);
  height: 108px;
  padding: 0 var(--header-x);
  background: var(--white);
  border-bottom: 1px solid var(--hairline);
}

.header__logo { flex: none; display: flex; align-items: center; }
.header__logo:hover { opacity: 0.78; }
.header__logo img { width: 76px; height: 76px; display: block; transition: transform 200ms var(--ease); }
.header__logo:hover img { transform: translateY(-2px); }

.nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: nowrap;
  gap: clamp(6px, 1.4vw, 36px);
}
.nav a {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav a[aria-current="page"] {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  color: var(--green-deep);
}
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--green);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  display: flex;
  width: 100%;
  min-height: min(calc(100dvh - 88px), 41vw);
  overflow: hidden;
  background: linear-gradient(180deg, #F6FAF6 0%, #F6FAF6 55%, #E6F1E9 100%);
}

.hero__art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scaleX(-1);
  transform-origin: 50% 55%;
  animation: heroZoom 12s cubic-bezier(0.33, 0, 0.67, 1) forwards;
}
@keyframes heroZoom {
  from { transform: scaleX(-1) scale(1); }
  to   { transform: scaleX(-1) scale(1.09); }
}

/* top fade + centre scrim, so the headline stays legible over the photo */
.hero__scrim,
.hero__glow { position: absolute; inset: 0; pointer-events: none; }
.hero__scrim { background: linear-gradient(180deg, rgba(246,250,246,0.6) 0%, rgba(246,250,246,0) 18%); }
.hero__glow  { background: radial-gradient(48% 78% at 50% 50%, rgba(250,252,250,0.95) 0%, rgba(250,252,250,0.86) 52%, rgba(250,252,250,0.46) 80%, rgba(250,252,250,0) 100%); }

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.5vw, 26px);
  padding: clamp(32px, 5vh, 56px) clamp(20px, 12vw, 200px);
  text-align: center;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-h1);
  line-height: 1.04;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.hero__title .accent { color: var(--green-text); }

.hero__lead { max-width: 34em; color: var(--body-soft); }

.hero__cta {
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  gap: clamp(10px, 1vw, 18px);
  margin-top: clamp(4px, 0.8vw, 12px);
  pointer-events: auto;
}

/* ---------- sections ---------- */
.section {
  position: relative;
  padding: var(--section-y) var(--gutter);
  background: var(--white);
  border-top: 1px solid var(--rule-ink);
  overflow: hidden;
}
.section--stack { display: flex; flex-direction: column; align-items: center; gap: clamp(8px, 1.2vh, 14px); }
.section--greenTop { border-top-color: rgba(17, 136, 71, 0.12); }

.section__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1.5vh, 18px);
  text-align: center;
}
.section__title { font-size: var(--t-h2); width: 100%; text-align: center; text-wrap: balance; }
.section__lead { max-width: 720px; }
.section__lead--wide { max-width: 40em; text-align: center; }

/* ---------- card grids ---------- */
.grid { display: grid; width: 100%; }
.grid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: clamp(8px, 0.9vw, 14px); margin-top: clamp(34px, 4.4vh, 58px); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(10px, 1.1vw, 18px); margin-top: clamp(30px, 4vh, 52px); }

.card {
  display: flex;
  flex-direction: column;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  transition: background 240ms var(--ease), color 240ms var(--ease), border-color 240ms var(--ease),
              transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.card__figure { position: relative; overflow: hidden; }
.card__figure img { transition: transform 420ms var(--ease); }
.card__body { display: flex; flex-direction: column; }
.card__title { font-family: var(--font-display); font-weight: 400; font-size: var(--t-h3); line-height: 1.2; }
.card__text { font-size: var(--t-body); line-height: 1.65; text-wrap: pretty; }

/* "Why Genesis Vista" cards */
.card--why { border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 4px; }
.card--why .card__figure { height: clamp(130px, 24vh, 300px); }
.card--why .card__body { gap: clamp(8px, 1.2vh, 14px); padding: 4px clamp(14px, 1.2vw, 24px) clamp(16px, 2.4vh, 26px); }
.card--why .card__title { color: inherit; }
.card--why .card__text { color: inherit; opacity: 0.82; }

/* "Industries we serve" cards */
.card--industry { border: 1px solid rgba(46, 148, 89, 0.22); border-radius: 8px; }
.card--industry .card__figure { height: clamp(126px, 19.5vh, 230px); }
.card--industry .card__body { gap: clamp(6px, 0.9vh, 11px); padding: clamp(8px, 1.1vh, 14px) clamp(14px, 1.3vw, 24px) clamp(16px, 2.2vh, 26px); }
.card--industry .card__text { color: var(--on-dark); }
/* bottom fade so the title reads against any photo */
.card__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(23,51,43,0) 46%, rgba(23,51,43,0.55) 86%, rgba(23,51,43,0.75) 100%);
}
.card--why .card__figure::after { content: none; }

@media (hover: hover) {
  .card:hover { background: var(--green); border-color: rgba(17, 136, 71, 0.85); transform: translateY(-5px); box-shadow: 0 18px 38px rgba(23, 51, 43, 0.22); }
  .card:hover .card__figure img { transform: scale(1.05); }
  .card:hover .rule { width: 44px; }
}

/* ---------- closing CTA ---------- */
.cta {
  padding: clamp(30px, 3.4vw, 52px) var(--gutter) clamp(34px, 3.8vw, 58px);
  text-align: center;
  gap: clamp(12px, 1.8vh, 22px);
}
.cta .lead { max-width: 34em; }
.cta .btn { margin-top: clamp(4px, 1vh, 12px); }

/* ---------- footer ---------- */
.footer {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 2.2vw, 30px) var(--gutter) clamp(10px, 1.2vw, 14px);
  background: var(--white);
  border-top: 1px solid var(--rule-green);
}
.footer__art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; display: block; pointer-events: none; }
.footer__wash { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 55%, rgba(255,255,255,0.88) 100%); }
.footer__inner { position: relative; width: 100%; max-width: 1200px; margin: 0 auto; }

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(24px, 3.4vw, 64px);
}

.footer__brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer__brand a { display: block; transition: transform 300ms var(--ease), opacity 300ms var(--ease); }
.footer__brand a:hover { transform: translateY(-2px); opacity: 0.85; }
.footer__brand img { width: clamp(42px, 3vw, 54px); height: clamp(42px, 3vw, 54px); display: block; }
.footer__blurb { margin-top: 10px; max-width: 30em; font-size: var(--t-body); line-height: 1.7; text-wrap: pretty; }

.footer__col {
  display: flex;
  flex-direction: column;
  padding-left: clamp(0px, 2vw, 40px);
  border-left: 1px solid rgba(23, 51, 43, 0.1);
}
.footer__heading { font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--green-text); }
.footer__col .rule { margin-top: 8px; }

.footer__links { display: flex; flex-direction: column; margin: 10px 0 0; list-style: none; padding: 0; }
.footer__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(23, 51, 43, 0.1);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer__chev {
  flex: none;
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--green);
  border-top: 1.5px solid var(--green);
  transform: rotate(45deg);
  transition: transform 200ms var(--ease);
}
.footer__links a:hover .footer__chev { transform: rotate(45deg) translate(3px, -3px); }

.footer__contact { display: flex; flex-direction: column; gap: 10px; margin: 10px 0 0; list-style: none; padding: 0; }
.footer__contact a { display: flex; align-items: center; gap: 16px; font-size: var(--t-body); line-height: 1.4; }
.footer__icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(17, 136, 71, 0.4);
  border-radius: 50%;
  transition: background 200ms var(--ease), border-color 200ms var(--ease);
}
.footer__col .btn--sm { align-self: flex-start; margin-top: 14px; }

.footer__hr { height: 1px; margin: clamp(12px, 1.6vw, 20px) 0 10px; background: rgba(23, 51, 43, 0.12); }

.footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 32px;
  font-size: 13px;
  line-height: 1.6;
}
.footer__legal ul { display: flex; align-items: center; flex-wrap: wrap; gap: clamp(16px, 2vw, 32px); list-style: none; margin: 0; padding: 0; }
.footer__legal a { font-size: 13px; color: var(--body); }
.footer__legal a:hover { color: var(--green-text); }

/* ---------- scroll reveal ---------- */
@keyframes reveal {
  from { opacity: 0; transform: translateY(16px); filter: blur(3px); }
  to   { opacity: 1; transform: none; filter: none; }
}
[data-reveal="pending"] { opacity: 0; }
[data-reveal="in"] { animation: reveal 780ms var(--ease) both; animation-delay: var(--reveal-delay, 0ms); }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .header { height: auto; flex-wrap: wrap; row-gap: 8px; padding: 12px clamp(16px, 4vw, 32px); }
  .nav { order: 3; width: 100%; justify-content: flex-start; overflow-x: auto; gap: 22px; padding-bottom: 4px; white-space: nowrap; }
  .nav a { height: 40px; }

  .hero { min-height: 0; }
  .hero__inner { padding: clamp(48px, 8vw, 88px) clamp(24px, 6vw, 72px); }
  .hero__title { font-size: clamp(30px, 4.6vw, 44px); }
  .hero__lead { max-width: 34em; }

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

  .footer__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); row-gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  html, body { overflow-x: hidden; }

  .header { padding: 10px 18px; }
  .nav { gap: 18px; font-size: 12px; }

  .hero__inner { padding: 48px 18px; gap: 14px; }
  .hero__title { font-size: 30px; line-height: 1.12; }
  .hero .eyebrow { white-space: normal; font-size: 11px; }
  .hero__art { animation: none; }
  .hero__cta { flex-direction: column; align-items: stretch; width: 100%; }
  .hero__cta .btn { justify-content: center; width: 100%; }

  .section { padding-left: 18px; padding-right: 18px; }
  .section__title { font-size: 28px; }
  .grid--5, .grid--3 { grid-template-columns: minmax(0, 1fr); }

  .footer { padding-left: 18px; padding-right: 18px; }
  .footer__grid { grid-template-columns: minmax(0, 1fr); }
  .footer__col { padding-left: 0; border-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__art { animation: none; }
  [data-reveal] { opacity: 1 !important; animation: none !important; }
  * { transition-duration: 1ms !important; }
}

/* ============================================================
   INTERIOR PAGES — shared primitives
   ============================================================ */

.shell { width: 100%; max-width: 1200px; margin: 0 auto; }

/* interior sections run tighter than the homepage's */
.section--tight { padding-block: clamp(38px, 4.4vw, 64px); }
.section--center { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.section--band { background: #F6FAF6; }

.rule--thick { height: 2px; }
.rule--sm { width: 26px; height: 2px; background: var(--green-mid); }
.rule--current { background: currentColor; opacity: 0.6; }

/* eyebrow + short rule, stacked left */
.head { display: flex; flex-direction: column; gap: 10px; }

/* dot + dash flourish, left aligned */
.tick { display: flex; align-items: center; gap: 12px; }
.tick__bar { display: block; width: 44px; height: 2px; background: var(--green-mid); }
.tick__dot { display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.tick--sm .tick__bar { width: 34px; }
.tick--sm .tick__dot { width: 5px; height: 5px; }

/* ---------- interior hero: photo bleeding right, copy over a side wash ---------- */
.hero--side {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: clamp(420px, calc(100dvh - 88px), 880px);
  background: #F6FAF6;
}
.hero--side .hero__art {
  transform: none;
  transform-origin: 60% 55%;
  object-position: 70% 50%;
  animation: heroZoomIn 12s cubic-bezier(0.33, 0, 0.67, 1) forwards;
}
.hero--side .hero__art--far { animation-name: heroZoomFar; }

@keyframes heroZoomIn  { from { transform: scale(1); } to { transform: scale(1.09); } }
@keyframes heroZoomFar { from { transform: scale(1); } to { transform: scale(1.13); } }

.hero__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.9) 34%, rgba(255,255,255,0.5) 54%, rgba(255,255,255,0.05) 74%, rgba(255,255,255,0) 100%);
}

.hero__text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  width: min(46%, 620px);
  padding: clamp(38px, 4.4vw, 64px) clamp(18px, 2.5vw, 32px);
}
.hero__text h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-h1);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.hero__text h1 .accent { color: var(--green-text); }
.hero__text p { max-width: 26em; font-size: var(--t-body); line-height: 1.65; text-wrap: pretty; }

/* ---------- image / copy split ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: stretch;
  background: var(--white);
  border-top: 1px solid var(--rule-ink);
}
.split--even { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.split--flip > .split__media { order: 2; }
.split__media { position: relative; min-height: clamp(360px, 62vh, 720px); overflow: hidden; }
.split__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: clamp(38px, 4.4vw, 64px) clamp(18px, 2.5vw, 32px);
}
.split__body h2 { font-size: var(--t-h2); }
.prose { display: flex; flex-direction: column; gap: 24px; max-width: 30em; }
.prose p { font-size: var(--t-body); line-height: 1.65; text-wrap: pretty; }

.pullquote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-h3);
  line-height: 1.25;
  color: var(--ink);
}
.pullquote .accent { color: var(--green-text); }

.hairline { display: block; width: 100%; max-width: 30em; height: 1px; background: rgba(23, 51, 43, 0.12); }

/* ---------- grids used by interior pages ---------- */
.grid--two   { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px clamp(32px, 5vw, 72px); margin-top: 40px; align-items: start; }
.grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 40px; align-items: stretch; }
.grid--four  { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; margin-top: 40px; align-items: stretch; }
.grid--auto  { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 40px; align-items: stretch; }
.grid--six   { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 24px; margin-top: 40px; align-items: stretch; }

/* ---------- card variants ---------- */
/* flat dark card, no image */
.card--plain {
  gap: clamp(8px, 1.2vh, 14px);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}
.card--plain .card__title { color: inherit; }
.card--plain .card__text { color: inherit; opacity: 0.82; }

/* image on top, body fills the rest — used for equal-height process steps */
.card--step { border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 6px; }
.card--step .card__figure { height: clamp(112px, 15vh, 168px); }
.card--step .card__figure::after { content: none; }
.card--step .card__body { flex: 1 1 auto; gap: 12px; padding: 20px; }
.card--step .card__title { color: var(--white); }
.card--step .card__text { color: rgba(255, 255, 255, 0.74); }

/* centred card with a circular photo */
.card--circle {
  align-items: center;
  text-align: center;
  gap: 24px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
}
.card--circle .card__title { color: var(--white); }
.card--circle .card__text { color: rgba(255, 255, 255, 0.74); }
.avatar {
  display: block;
  flex: none;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 320ms var(--ease);
}
.avatar img { transition: transform 620ms var(--ease); }
@media (hover: hover) {
  .card:hover .avatar { transform: scale(1.04); }
  .card:hover .avatar img { transform: scale(1.05); }
}

/* ---------- list of dividing rules (philosophy / promises) ---------- */
.promise {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(23, 51, 43, 0.12);
  transition: transform 260ms var(--ease), border-color 260ms var(--ease);
}
.promise h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--t-h3); line-height: 1.2; color: var(--ink); }
.promise p { max-width: 30em; font-size: var(--t-body); line-height: 1.65; text-wrap: pretty; }
@media (hover: hover) {
  .promise:hover { transform: translateX(6px); border-color: rgba(17, 136, 71, 0.4); }
}

/* ---------- interior responsive ---------- */
@media (max-width: 1024px) {
  .hero--side { min-height: clamp(360px, 50vw, 560px); }
  .hero__text { width: 72%; }
  .hero__text h1 { font-size: clamp(30px, 4.6vw, 46px); }

  .split, .split--even { grid-template-columns: minmax(0, 1fr); row-gap: 32px; }
  .split--flip > .split__media { order: 0; }

  .grid--four, .grid--auto, .grid--six { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .eyebrow { white-space: normal; }

  .hero--side { min-height: 0; }
  .hero--side .hero__art { animation: none; }
  .hero__veil { background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.9) 60%, rgba(255,255,255,0.7) 100%); }
  .hero__text { width: 100%; padding: 48px 18px; gap: 18px; }
  .hero__text h1 { font-size: 30px; line-height: 1.12; }

  .split__media { min-height: 260px; }
  .split__body { padding: 0 18px 32px; }

  .grid--two, .grid--three, .grid--four, .grid--auto, .grid--six { grid-template-columns: minmax(0, 1fr); }
  .grid--two { row-gap: 32px; }
}

/* small utilities used by interior page layouts */
.flow { display: flex; flex-direction: column; gap: 16px; }
.lead--spaced { margin-top: 8px; }
.hairline--spaced { margin-top: 28px; }
.pullquote--center { margin-top: clamp(30px, 4vh, 52px); text-align: center; text-wrap: balance; }
.media--lowRight { object-position: 30% 60%; }
.display--h2 { font-size: var(--t-h2); width: 100%; text-wrap: balance; }

/* ============================================================
   CONTACT
   ============================================================ */

/* page masthead: full-bleed photo, copy sitting straight on top */
.pagehead { position: relative; overflow: hidden; background: #FAF9F6; }
.pagehead__art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.pagehead__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: var(--section-y) var(--gutter);
}
.pagehead h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-h1);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.pagehead h1 .accent { color: var(--green-text); }
.pagehead p { max-width: 27em; font-size: var(--t-body); line-height: 1.65; text-wrap: pretty; }
.rule--wide { width: 46px; height: 2px; }

/* two equal panels: details on the left, message form on the right */
.contact {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(24px, 3.4vw, 64px);
  padding: var(--section-y) var(--gutter);
  background: var(--white);
}

.panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(20px, 2.2vw, 28px);
  background: var(--white);
  border: 1px solid rgba(23, 51, 43, 0.1);
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(23, 51, 43, 0.05);
  transition: box-shadow 260ms var(--ease), border-color 260ms var(--ease), transform 260ms var(--ease);
}
@media (hover: hover) {
  .panel:hover { transform: translateY(-3px); border-color: rgba(17, 136, 71, 0.28); box-shadow: 0 22px 46px rgba(23, 51, 43, 0.1); }
}
.panel__title {
  margin-bottom: clamp(8px, 1.1vh, 14px);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--green-text);
}
.panel__rule { flex: none; margin-bottom: clamp(10px, 1.4vh, 18px); }
.panel__rule--wide { margin-bottom: clamp(16px, 2.2vh, 28px); }

/* the detail rows stretch to match the form panel's height */
.ctRows { flex: 1 1 auto; display: flex; flex-direction: column; justify-content: space-between; list-style: none; margin: 0; padding: 0; }
.ctRow {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 0;
  border-top: 1px solid rgba(23, 51, 43, 0.12);
  border-radius: 6px;
  transition: background 220ms var(--ease), padding-left 220ms var(--ease);
}
.ctRow:first-child { padding: 0 0 14px; border-top: 0; }
.ctRow:last-child { padding-bottom: 0; }
.ctRow__label { font-size: var(--t-body); color: var(--label-muted); }
.ctRow__value { font-size: var(--t-body); line-height: 1.65; color: var(--ink); }
@media (hover: hover) {
  .ctRow:hover { background: var(--green); padding-left: 8px; }
  .ctRow:hover .ctRow__label, .ctRow:hover .ctRow__value { color: var(--white); }
}

/* ---------- form ---------- */
.formGrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.formGrid > .span2 { grid-column: span 2; }

.field {
  width: 100%;
  height: 40px;
  padding: 0 13px;
  background: var(--white);
  border: 1px solid rgba(23, 51, 43, 0.16);
  border-radius: 4px;
  font-family: inherit;
  font-size: var(--t-body);
  color: var(--ink);
  outline: none;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}
textarea.field { height: auto; padding: 10px 13px; line-height: 1.65; resize: vertical; }
.field:hover { border-color: rgba(17, 136, 71, 0.45); }
.field:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(17, 136, 71, 0.12); }

.btn--submit {
  display: block;
  width: 100%;
  min-height: 0;
  padding: clamp(12px, 1.4vh, 17px);
  background: var(--green-deep);
  border: 1px solid var(--green-deep);
  border-radius: 4px;
  font-family: inherit;
  font-size: var(--t-body);
  font-weight: 600;
  letter-spacing: normal;
  color: var(--white);
  cursor: pointer;
  transition: background 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.btn--submit:hover { background: var(--green); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(17, 136, 71, 0.24); }
.btn--submit:active { transform: translateY(1px); }

/* ---------- "need immediate assistance" band ---------- */
.assist {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 1.2vh, 14px);
  padding: var(--section-y) var(--gutter);
  background: #FAF9F6;
  text-align: center;
}
.assist h2 { width: 100%; font-size: var(--t-h2); color: var(--green-text); }
.assist p { font-size: var(--t-body); line-height: 1.65; }
.assist__tel {
  display: inline-block;
  min-height: 46px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--green-text);
  transition: color 200ms var(--ease), transform 200ms var(--ease);
}
.assist__tel:hover { color: var(--green-deep); transform: translateY(-2px); }

/* screen-reader-only label */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1024px) {
  .contact { grid-template-columns: minmax(0, 1fr); row-gap: 40px; }
}
@media (max-width: 680px) {
  .pagehead h1 { font-size: 30px; line-height: 1.12; }
  .formGrid, .formGrid > .span2 { grid-template-columns: minmax(0, 1fr); grid-column: 1 / -1; }
  .panel { height: auto; }
}

/* ============================================================
   TRUST & QUALITY
   ============================================================ */

/* hero variant: pale green band, copy sized to its own content */
.hero--band {
  align-items: center;
  min-height: clamp(320px, calc(100dvh - 88px), 900px);
  padding: var(--section-y) var(--gutter);
  background: #F6FAF6;
}
.hero__art--tq { object-position: 62% 50%; transform-origin: 62% 50%; animation: heroZoomFar 14s cubic-bezier(0.33, 0, 0.67, 1) forwards; }
.hero__veil--band { background: linear-gradient(90deg, rgba(246,250,246,0.95) 0%, rgba(246,250,246,0.85) 30%, rgba(246,250,246,0.4) 54%, rgba(246,250,246,0) 74%); }
.hero__text--cap {
  z-index: 2;
  width: auto;
  max-width: min(46%, 620px);
  padding: clamp(26px, 4vh, 62px) clamp(24px, 3vw, 50px) clamp(26px, 4vh, 62px) 0;
}
.hero__text--cap p { max-width: 27em; }

/* ---------- two-column bullet list ---------- */
.bullets {
  display: grid;
  align-items: stretch;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px clamp(24px, 3.4vw, 64px);
  margin: clamp(6px, 1vh, 14px) 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
.bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--t-body);
  line-height: 1.65;
  transition: color 200ms var(--ease), transform 200ms var(--ease);
}
.bullets--check li { gap: 9px; }
.bullets__dot { flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.bullets__check { flex: none; font-size: var(--t-body); font-weight: 700; color: var(--green-text); }
@media (hover: hover) {
  .bullets li:hover { color: var(--ink); transform: translateX(3px); }
}

/* ---------- divided row of steps ---------- */
.steps, .deliv {
  width: 100%;
  display: grid;
  align-items: stretch;
  grid-auto-rows: 1fr;
  gap: 0;
  margin-top: 56px;
}
.steps { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.deliv { grid-template-columns: repeat(6, minmax(0, 1fr)); }

.step, .deliv__item {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.2vh, 14px);
  border-radius: 8px;
  transition: background 240ms var(--ease), transform 240ms var(--ease);
}
.step { padding: clamp(4px, 0.6vh, 8px) clamp(14px, 1.8vw, 34px); }
.deliv__item { align-items: center; text-align: center; padding: clamp(6px, 0.9vh, 12px) clamp(10px, 1.3vw, 24px); }
.step + .step,
.deliv__item + .deliv__item { border-left: 1px solid rgba(23, 51, 43, 0.12); }

.step__title { font-family: var(--font-display); font-weight: 400; font-size: var(--t-h3); line-height: 1.2; color: var(--ink); }
.step__text { max-width: 14em; font-size: var(--t-body); line-height: 1.65; text-wrap: pretty; }
.step__rule { display: block; width: 30px; height: 2px; background: var(--green); transition: width 300ms var(--ease); }

.deliv__title { font-size: var(--t-body); font-weight: 600; letter-spacing: 0.04em; line-height: 1.2; color: var(--ink); }
.deliv__text { max-width: 15em; font-size: var(--t-body); line-height: 1.65; text-wrap: pretty; }
.deliv__rule { display: block; width: 22px; height: 2px; background: var(--green); }

@media (hover: hover) {
  .step:hover { background: var(--green); transform: translateY(-3px); }
  .step:hover .step__title, .step:hover .step__text { color: var(--white); }
  .step:hover .step__rule { width: 46px; background: rgba(255, 255, 255, 0.85); }

  .deliv__item:hover { background: var(--green); }
  .deliv__item:hover .deliv__title, .deliv__item:hover .deliv__text { color: var(--white); }
  .deliv__item:hover .deliv__rule { background: rgba(255, 255, 255, 0.8); }
}

/* ---------- full-bleed feature: photo behind, copy over a left wash ---------- */
.feature {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  min-height: clamp(260px, 36vh, 420px);
  padding: var(--section-y) 0;
  background: var(--white);
}
.feature__art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 55%;
  display: block;
  pointer-events: none;
}
.feature__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.92) 34%, rgba(255,255,255,0.6) 54%, rgba(255,255,255,0.12) 74%, rgba(255,255,255,0) 100%);
}
.feature__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 clamp(24px, 3vw, 48px) 0 var(--gutter);
}
.feature__body p { max-width: 34em; font-size: var(--t-body); line-height: 1.65; text-wrap: pretty; }

/* ---------- dark CTA banner, bleeding past the section gutter ---------- */
.ctaBanner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  min-height: clamp(190px, 24vh, 280px);
  margin-inline: calc(-1 * clamp(20px, 2.4vw, 44px));
  border-radius: 10px;
  overflow: hidden;
  background: var(--ink);
}
.ctaBanner__art { position: absolute; top: 0; right: 0; bottom: 0; width: 58%; }
.ctaBanner__veil {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 64%;
  pointer-events: none;
  background: linear-gradient(90deg, #17332B 0%, rgba(23,51,43,0.86) 24%, rgba(23,51,43,0.42) 58%, rgba(23,51,43,0.2) 100%);
}
.ctaBanner__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.2vh, 14px);
  padding: clamp(22px, 3vh, 42px) clamp(20px, 2.4vw, 44px);
}
.ctaBanner h2 { width: 100%; font-size: var(--t-h2); color: var(--white); }
.ctaBanner p { max-width: 28em; font-size: var(--t-body); line-height: 1.65; color: #DCE6DE; text-wrap: pretty; }

.btn--pill {
  align-self: flex-start;
  gap: 10px;
  margin-top: clamp(4px, 0.8vh, 10px);
  min-height: 0;
  padding: clamp(10px, 1.1vw, 14px) clamp(16px, 1.6vw, 26px);
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-size: var(--t-body);
  font-weight: 500;
  letter-spacing: normal;
  color: var(--ink);
}
.btn--pill:hover { background: var(--green); border-color: var(--green); color: var(--white); transform: translateY(-2px); }

@media (max-width: 1024px) {
  .hero--band { min-height: clamp(360px, 52vw, 560px); }
  .hero__text--cap { max-width: 74%; }

  .feature { grid-template-columns: minmax(0, 1fr); }
  .steps, .deliv { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .step, .deliv__item { border-left: 0; }
  .steps > :not(:nth-child(3n + 1)),
  .deliv > :not(:nth-child(3n + 1)) { border-left: 1px solid rgba(23, 51, 43, 0.12); }
}

@media (max-width: 680px) {
  .hero--band { min-height: 0; padding: 56px 18px; }
  .hero__text--cap { max-width: 100%; width: 100%; padding: 0; gap: 18px; }

  .bullets { grid-template-columns: minmax(0, 1fr); }
  .steps, .deliv { grid-template-columns: minmax(0, 1fr); row-gap: 20px; }
  .steps > *, .deliv > * { border-left: 0 !important; }
  .step { padding-left: 0; padding-right: 0; }

  .feature { padding-inline: 0; }
  .feature__body { padding: 0 18px; }

  .ctaBanner { grid-template-columns: minmax(0, 1fr); margin-inline: 0; }
  .ctaBanner__art, .ctaBanner__veil { width: 100%; }
  .ctaBanner__veil { background: linear-gradient(180deg, rgba(23,51,43,0.35) 0%, rgba(23,51,43,0.86) 55%, #17332B 100%); }
}

/* section modifiers + small stacking utilities */
.section--flush { border-top: 0; }
.section--greenFaint { border-top-color: rgba(17, 136, 71, 0.1); }
.stack { display: flex; flex-direction: column; }
.stack--center { align-items: center; text-align: center; }
.gap24 { gap: 24px; }
.lead--32 { max-width: 32em; }
.rule--40 { width: 40px; }
.media--ctaCrop { object-position: 58% 50%; }

/* ============================================================
   BIOPHARMACEUTICAL
   ============================================================ */

.hero--plain {
  align-items: center;
  min-height: clamp(400px, calc(100dvh - 88px), 840px);
  background: var(--white);
}
.hero__art--bp { object-position: 60% 50%; transform-origin: 62% 50%; animation: heroZoomIn 12s cubic-bezier(0.33, 0, 0.67, 1) forwards; }
.hero__veil--bp { background: linear-gradient(90deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.92) 30%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0.05) 72%, rgba(255,255,255,0) 100%); }
.hero__text--bp { padding: clamp(34px, 5vh, 78px) var(--gutter); }
.hero__text--bp p { max-width: 30em; }

/* ---------- solution portfolio: thumbnail beside copy ---------- */
.spGrid {
  width: 100%;
  display: grid;
  align-items: stretch;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 28px);
  margin-top: 56px;
}
.spCard {
  display: grid;
  grid-template-columns: clamp(88px, 9vw, 132px) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(16px, 1.8vw, 28px);
  padding: clamp(10px, 1vw, 16px) clamp(16px, 1.6vw, 26px) clamp(10px, 1vw, 16px) clamp(10px, 1vw, 14px);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--white);
  transition: background 240ms var(--ease), border-color 240ms var(--ease),
              transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.spCard--wide { grid-column: 1 / -1; }
.spCard__thumb { display: block; height: clamp(100px, 9.5vw, 128px); border-radius: 6px; overflow: hidden; }
.spCard__thumb img { transition: transform 480ms var(--ease); }
.spCard__body { display: flex; flex-direction: column; justify-content: center; gap: clamp(8px, 1.2vh, 14px); }
.spCard__title { font-size: var(--t-body); font-weight: 600; line-height: 1.2; color: inherit; }
.spCard__text { font-size: var(--t-body); line-height: 1.65; color: inherit; opacity: 0.82; }
@media (hover: hover) {
  .spCard:hover { background: var(--green); border-color: var(--green); color: var(--white); transform: translateY(-4px); box-shadow: 0 16px 34px rgba(17, 136, 71, 0.24); }
  .spCard:hover .spCard__thumb img { transform: scale(1.05); }
}

/* ---------- featured technologies: photo tiles with a bottom scrim ---------- */
.ftGrid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 28px);
  margin-top: 56px;
}
.ftCard {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(230px, 30vh, 330px);
  padding: clamp(14px, 1.4vw, 22px);
  border-radius: 6px;
  overflow: hidden;
  background: var(--ink);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}
.ftCard__art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform 620ms var(--ease);
}
.ftCard__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(23,51,43,0.42) 0%, rgba(23,51,43,0.72) 46%, rgba(23,51,43,0.94) 100%);
  transition: background 300ms var(--ease);
}
.ftCard__body { position: relative; display: flex; flex-direction: column; gap: clamp(8px, 1.2vh, 14px); }
.ftCard h3 { font-family: var(--font-display); font-weight: 600; font-size: var(--t-h3); line-height: 1.2; color: var(--white); }
.ftCard p { font-size: var(--t-body); line-height: 1.65; color: #cddfd0; text-wrap: pretty; }
@media (hover: hover) {
  .ftCard:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(23, 51, 43, 0.28); }
  .ftCard:hover .ftCard__art { transform: scale(1.06); }
  .ftCard:hover .ftCard__veil { background: linear-gradient(180deg, rgba(17,136,71,0.72) 0%, rgba(17,136,71,0.86) 60%, #118847 100%); }
}

/* ---------- applications: narrow intro beside a ring grid ---------- */
.apps {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 3fr);
  align-items: start;
  gap: clamp(24px, 3.4vw, 64px);
  padding: var(--section-y) var(--gutter);
  background: #F6FAF6;
  border-top: 1px solid var(--rule-ink);
}
.apps__intro { display: flex; flex-direction: column; gap: 24px; }
.apps__intro h2 { width: 100%; font-size: var(--t-h2); }
.apps__intro p { max-width: 22em; font-size: var(--t-body); line-height: 1.65; text-wrap: pretty; }
.apps__grid {
  display: grid;
  align-items: stretch;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(16px, 1.8vw, 28px);
  row-gap: clamp(28px, 3.2vw, 48px);
}
.app {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 0 clamp(10px, 1.2vw, 20px);
  border-right: 1px solid rgba(23, 51, 43, 0.12);
  transition: transform 280ms var(--ease);
}
.app__ring {
  flex: none;
  width: clamp(72px, 6.2vw, 104px);
  height: clamp(72px, 6.2vw, 104px);
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(17, 136, 71, 0.35);
  transition: transform 420ms var(--ease), border-color 300ms var(--ease);
}
.app__label {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  min-height: 2.6em;
  font-size: var(--t-body);
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  text-align: center;
  text-wrap: balance;
}
@media (hover: hover) {
  .app:hover { transform: translateY(-4px); }
  .app:hover .app__ring { transform: scale(1.05); border-color: var(--green); }
}
@media (min-width: 1025px) { .app:nth-child(4n) { border-right: 0; } }

@media (max-width: 1024px) {
  .hero--plain { min-height: clamp(360px, 52vw, 560px); }
  .ftGrid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .apps { grid-template-columns: minmax(0, 1fr); row-gap: 40px; }
  .app:nth-child(2n) { border-right: 0; }
}

@media (max-width: 680px) {
  .hero--plain { min-height: 0; }
  .hero__text--bp { padding: 48px 18px; gap: 18px; }

  .spGrid { grid-template-columns: minmax(0, 1fr); }
  .spCard { grid-template-columns: clamp(72px, 24%, 96px) minmax(0, 1fr); }
  .spCard--wide { grid-column: auto; }

  .ftGrid { grid-template-columns: minmax(0, 1fr); row-gap: 20px; }

  .apps__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 28px; }
  .app { border-right: 0; }
}
.rule--44 { width: 44px; }

/* ============================================================
   PERSONAL CARE
   ============================================================ */

:root { --t-h2-pc: clamp(32px, 3.6vw, 48px); }

.display--pc { width: 100%; font-size: var(--t-h2-pc); }
.eyebrow--gold { font-size: 12px; color: var(--gold-text); }

.hero--sand {
  align-items: center;
  min-height: clamp(380px, calc(100dvh - 88px), 780px);
  background: #FAF9F6;
}
.hero__art--pc { object-position: 62% 50%; transform-origin: 60% 50%; animation: heroZoomFar 14s cubic-bezier(0.33, 0, 0.67, 1) forwards; }
.hero__veil--pc { background: linear-gradient(90deg, rgba(250,247,241,0.94) 0%, rgba(250,247,241,0.82) 30%, rgba(250,247,241,0.35) 52%, rgba(250,247,241,0) 70%); }
.hero__text--pc { z-index: 2; width: auto; max-width: min(46%, 620px); padding: clamp(38px, 4.4vw, 64px) var(--gutter); }
.hero__text--pc h1 { font-size: clamp(36px, 4.2vw, 56px); letter-spacing: -0.02em; }
.hero__text--pc p { max-width: 27em; }

/* ---------- stat band above the ingredient tabs ---------- */
.statBand {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto auto auto minmax(0, 1fr);
  align-items: stretch;
  min-height: 96px;
  border-bottom: 1px solid rgba(23, 51, 43, 0.1);
}
.stat {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
  padding: 0 clamp(20px, 2.6vw, 44px) 24px;
}
.stat:first-child { padding-left: 0; }
.stat + .stat { border-left: 1px solid rgba(23, 51, 43, 0.12); }
.stat__ring { display: block; flex: none; width: 72px; height: 72px; border-radius: 50%; overflow: hidden; background: var(--white); }
.stat__text { display: flex; flex-direction: column; gap: 4px; }
.stat__value { font-family: var(--font-display); font-weight: 400; font-size: clamp(20px, 1.7vw, 22px); line-height: 1.15; white-space: nowrap; color: var(--green-text); }
.stat__label { white-space: nowrap; font-size: var(--t-body); line-height: 1.4; }
.statBand__art { position: relative; overflow: hidden; }
.statBand__art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; display: block; pointer-events: none; }
.statBand__fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, #FBFDFB 0%, rgba(251,253,251,0.72) 34%, rgba(251,253,251,0.12) 74%, rgba(251,253,251,0) 100%);
}

/* ---------- ingredient tabs ---------- */
.tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  align-items: stretch;
  gap: 12px;
  width: 100%;
}
.tab {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 20px;
  white-space: nowrap;
  background: var(--white);
  border: 1px solid rgba(23, 51, 43, 0.16);
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease), transform 200ms var(--ease);
}
.tab[aria-selected="true"] { background: var(--green); border-color: var(--green); color: var(--white); font-weight: 700; }
@media (hover: hover) {
  .tab[aria-selected="false"]:hover { border-color: var(--green); color: var(--green-text); transform: translateY(-1px); }
  .tab[aria-selected="true"]:hover { color: var(--white); transform: translateY(-1px); }
}

.panelIng {
  display: grid;
  grid-template-columns: clamp(96px, 12%, 132px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(16px, 1.8vw, 28px);
  width: 100%;
  max-width: 1200px;
  padding: clamp(14px, 1.4vw, 20px);
  background: var(--white);
  border: 1px solid rgba(23, 51, 43, 0.1);
  border-radius: 8px;
}
.panelIng__art { display: block; align-self: start; width: 100%; aspect-ratio: 1 / 1; border-radius: 6px; overflow: hidden; }
.panelIng__head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  padding-right: clamp(8px, 1.1vw, 18px);
}
.panelIng__label { font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-text); }
.panelIng__head p { max-width: 27em; font-size: var(--t-body); line-height: 1.65; text-wrap: pretty; }

.ingList {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-content: start;
  align-self: start;
  gap: 10px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}
.ing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(150px, 26%, 230px);
  align-items: center;
  min-height: 72px;
  background: var(--white);
  border: 1px solid rgba(23, 51, 43, 0.1);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}
.ing:hover { border-color: rgba(17, 136, 71, 0.5); box-shadow: 0 8px 20px rgba(23, 51, 43, 0.07); }
.ing__name { display: flex; align-items: center; gap: 14px; padding: 20px 24px; font-size: var(--t-body); line-height: 1.45; color: var(--ink); }
.ing__dot { display: block; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.ing__art { position: relative; display: block; align-self: stretch; height: 100%; min-height: 0; overflow: hidden; background: var(--white); }
.ing__art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: 100% 50%; display: block; }
.ing__fade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0.7) 12%, rgba(255,255,255,0) 34%); }

/* surfactant rows carry a rule under the name and a wider image column */
.ing--wide { grid-template-columns: minmax(0, 1fr) minmax(0, 42%); }
.ing--wide .ing__name { flex-direction: column; align-items: flex-start; gap: 8px; padding: 14px 12px 14px 20px; }
.ing__nameRow { display: flex; align-items: baseline; gap: 12px; font-size: var(--t-body); line-height: 1.4; color: var(--ink); text-wrap: pretty; }
.ing__nameRow .ing__dot { width: 7px; height: 7px; }
.ing__rule { display: block; width: 26px; height: 2px; margin-left: 19px; background: var(--green-mid); }

/* ---------- category / application tiles ---------- */
.pcGrid3, .pcGrid8 {
  width: 100%;
  max-width: 1200px;
  display: grid;
  gap: clamp(16px, 1.8vw, 28px);
  margin-top: 40px;
}
.pcGrid3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pcGrid8 { grid-template-columns: repeat(8, minmax(0, 1fr)); }

.pcCard {
  display: flex;
  flex-direction: column;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
  color: var(--white);
  transition: background 240ms var(--ease), color 240ms var(--ease), border-color 240ms var(--ease),
              transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.pcCard__art { display: block; height: clamp(120px, 15vh, 180px); overflow: hidden; }
.pcCard__art img { transition: transform 620ms var(--ease); }
.pcCard__body { flex: 1 1 auto; display: flex; flex-direction: column; gap: clamp(8px, 1.2vh, 14px); padding: clamp(12px, 1.2vw, 20px); color: var(--white); }
.pcCard__title { font-size: var(--t-body); font-weight: 600; line-height: 1.2; color: inherit; }
.pcCard__text { font-size: var(--t-body); line-height: 1.65; color: inherit; opacity: 0.82; }

.pcCard--tile .pcCard__art { height: clamp(88px, 11vh, 132px); }
.pcCard--tile .pcCard__art img { object-position: 50% 45%; }
.pcCard__label { display: block; padding: clamp(9px, 1vh, 14px) clamp(8px, 0.8vw, 14px); font-size: var(--t-body); font-weight: 600; text-align: center; color: inherit; }

@media (hover: hover) {
  .pcCard:hover { background: var(--green); border-color: var(--green); color: var(--white); transform: translateY(-4px); box-shadow: 0 16px 34px rgba(17, 136, 71, 0.24); }
  .pcCard--tile:hover { box-shadow: 0 16px 32px rgba(17, 136, 71, 0.22); }
  .pcCard:hover .pcCard__art img { transform: scale(1.06); }
}

/* ---------- formulation support ---------- */
.formul {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 2fr);
  align-items: center;
  gap: clamp(24px, 3.4vw, 64px);
  padding: clamp(38px, 4.4vw, 64px) var(--gutter);
  background: #F6FAF6;
}
.formul__intro { display: flex; flex-direction: column; gap: clamp(8px, 1.2vh, 14px); }
.formul__intro p { max-width: 30em; font-size: var(--t-body); line-height: 1.65; text-wrap: pretty; }

.pillars { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: clamp(16px, 1.8vw, 28px); }
.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 1.2vh, 14px);
  text-align: center;
  transition: transform 300ms var(--ease);
}
.pillar__ring {
  display: block;
  width: clamp(62px, 6vw, 100px);
  height: clamp(62px, 6vw, 100px);
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(17, 136, 71, 0.3);
  transition: transform 420ms var(--ease), border-color 300ms var(--ease), box-shadow 300ms var(--ease);
}
.pillar__title { font-size: var(--t-body); font-weight: 600; color: var(--green-text); }
.pillar__text { max-width: 15em; font-size: var(--t-body); line-height: 1.65; text-wrap: pretty; }
@media (hover: hover) {
  .pillar:hover { transform: translateY(-4px); }
  .pillar:hover .pillar__ring { transform: scale(1.06); border-color: rgba(17, 136, 71, 0.7); box-shadow: 0 12px 26px rgba(17, 136, 71, 0.18); }
}

/* ---------- why-choose panel + closing CTA ---------- */
.pcClose { padding: 0 var(--gutter); background: var(--white); }

.whyPanel {
  margin-inline: calc(-1 * clamp(18px, 2.2vw, 40px));
  padding: clamp(22px, 3vh, 40px) clamp(18px, 2.2vw, 40px);
  border: 1px solid rgba(23, 51, 43, 0.1);
  border-radius: 10px;
  background: linear-gradient(180deg, #FAF9F6 0%, #f8faf6 100%);
}
.whyPanel h2 { margin-bottom: clamp(6px, 0.9vh, 12px); text-align: center; }
.whyPanel__markWrap { display: flex; justify-content: center; }
.whyPanel__mark { display: block; width: 46px; height: 2px; background: var(--gold); }

.whyGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 40px;
  padding-top: clamp(16px, 2.2vh, 28px);
  border-top: 1px solid rgba(23, 51, 43, 0.1);
}
.why {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 1.2vh, 14px);
  padding: clamp(8px, 1.2vh, 14px) clamp(10px, 1.4vw, 26px);
  border-radius: 8px;
  text-align: center;
  transition: background 240ms var(--ease), transform 240ms var(--ease);
}
.why__title { font-size: var(--t-body); font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.why__text { font-size: var(--t-body); line-height: 1.65; }
@media (hover: hover) {
  .why:hover { background: var(--green); transform: translateY(-2px); }
  .why:hover .why__title, .why:hover .why__text { color: var(--white); }
}

.pcCta {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  min-height: clamp(200px, 26vh, 300px);
  margin-top: clamp(12px, 1.4vw, 20px);
  margin-inline: calc(-1 * clamp(18px, 2.2vw, 40px));
  border-radius: 10px;
  overflow: hidden;
  background: #FAF9F6;
}
.pcCta__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.2vh, 14px);
  padding: clamp(22px, 3vh, 44px) clamp(20px, 2.4vw, 44px);
}
.pcCta__body p { max-width: 30em; font-size: var(--t-body); line-height: 1.65; text-wrap: pretty; }
.pcCta__art { position: relative; align-self: stretch; min-height: clamp(160px, 24vh, 300px); }
.pcCta__art img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%; display: block; }
.pcCta__fade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, #FAF9F6 0%, rgba(242,236,225,0.6) 22%, rgba(242,236,225,0) 55%); }

/* ---------- pill buttons used on this page ---------- */
.btn--outline {
  align-self: flex-start;
  gap: 10px;
  margin-top: clamp(4px, 0.8vh, 10px);
  min-height: 0;
  padding: clamp(9px, 1vw, 13px) clamp(15px, 1.5vw, 24px);
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(17, 136, 71, 0.55);
  font-size: var(--t-body);
  font-weight: 500;
  letter-spacing: normal;
  color: var(--green-text);
}
.btn--outline:hover { background: var(--green); color: var(--white); }

.btn--pillGreen {
  align-self: flex-start;
  gap: 10px;
  margin-top: clamp(4px, 0.8vh, 10px);
  min-height: 0;
  padding: clamp(10px, 1.1vw, 14px) clamp(16px, 1.6vw, 26px);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  border: 1px solid rgba(46, 148, 89, 0.6);
  font-size: var(--t-body);
  font-weight: 500;
  letter-spacing: normal;
}
.btn--pillGreen:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(17, 136, 71, 0.3); }
.btn--pillGreen:active { transform: translateY(1px); filter: brightness(0.94); }

@media (max-width: 1024px) {
  .hero--sand { min-height: clamp(360px, 52vw, 560px); }
  .hero__text--pc { max-width: 72%; }
  .hero__text--pc h1 { font-size: clamp(30px, 4.6vw, 46px); }

  .pcGrid3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pcGrid8 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .formul { grid-template-columns: minmax(0, 1fr); row-gap: 40px; }
  .pillars { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .hero--sand { min-height: 0; padding: 0; }
  .hero__text--pc { max-width: 100%; width: 100%; padding: 48px 18px; gap: 18px; }

  .statBand { grid-template-columns: minmax(0, 1fr); }
  .statBand__art { display: none; }
  .stat, .stat + .stat { padding: 12px 0; border-left: 0; }
  .tabs { grid-template-columns: minmax(0, 1fr); row-gap: 16px; }

  .panelIng { grid-template-columns: minmax(0, 1fr); row-gap: 24px; }
  .panelIng__art { aspect-ratio: auto; height: clamp(160px, 26vw, 240px); }
  .ing, .ing--wide { grid-template-columns: minmax(0, 1fr) clamp(64px, 22%, 96px); height: auto; min-height: 0; }

  .pcGrid3, .pillars, .whyGrid { grid-template-columns: minmax(0, 1fr); row-gap: 20px; }
  .pcGrid8 { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 20px; }
  .pcCta { grid-template-columns: minmax(0, 1fr); }
}
.pcIntro { max-width: 52em; text-align: center; }
.pcApplications { background: #FAF9F6; }
.pcIngredients { background: #FBFDFB; }

/* a class with a display value outranks the UA [hidden] rule, so restate it */
[hidden] { display: none !important; }

/* Each ingredient category sizes its rows differently: long chemical names get
   a wider name column and tighter padding, short botanical names get a small
   thumbnail. */
.ing--tight { grid-template-columns: minmax(0, 1fr) minmax(0, 38%); }
.ing--tight .ing__name { min-width: 0; padding: 10px 10px 10px 16px; line-height: 1.35; overflow-wrap: anywhere; text-wrap: pretty; }
.ing--gap10 .ing__name { gap: 10px; }

.ing--bare { grid-template-columns: minmax(0, 1fr) clamp(76px, 16%, 108px); }
.ing--bare .ing__name { gap: 12px; padding: 12px 18px; line-height: 1.4; }
.ing--bare .ing__art img { object-fit: cover; object-position: 50% 50%; }

.ing--wide .ing__name { min-width: 0; }

/* The pill anchors size to their own text, not the .btn single-line box. */
.btn--pill, .btn--outline, .btn--pillGreen { line-height: normal; }

/* Ring borders sit outside the circle, matching the design's sizing. */
.pillar__ring, .app__ring { box-sizing: content-box; }

/* ---------- contact form state ---------- */
/* Off-screen rather than display:none — a hidden input is skipped by some bots,
   which defeats the trap. */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Kept out of the grid until there is something to say, so an empty status
   line does not add a row and its gap to the panel. */
.formStatus { display: none; margin: 0; font-size: var(--t-body); line-height: 1.65; color: var(--body); }
.formGrid.has-status .formStatus { display: block; }
.formStatus[data-state="ok"] { color: var(--green-text); font-weight: 600; }
.formStatus[data-state="error"] { color: #C0492F; }

.btn--submit:disabled { cursor: progress; opacity: 0.72; }
.btn--submit:disabled:hover { transform: none; box-shadow: none; background: var(--green-deep); }

/* Only mark fields red once a submit has actually been attempted. */
.was-validated .field:invalid { border-color: #C0492F; }
.was-validated .field:invalid:focus { box-shadow: 0 0 0 3px rgba(192, 73, 47, 0.14); }

/* ============================================================
   LEGAL / LONG-FORM PAGES
   ============================================================ */

/* masthead without a photo — these pages are read, not sold */
.pagehead--plain {
  background: #F6FAF6;
  border-bottom: 1px solid var(--rule-ink);
}
.pagehead--plain .pagehead__inner {
  gap: 16px;
  width: 100%;
  /* 72ch of text plus this block's own side padding, so the heading starts on
     exactly the same vertical as the prose below it */
  max-width: calc(72ch + 2 * var(--gutter));
  margin: 0 auto;
}
.pagehead__meta {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--body-soft);
}

.legal { padding: clamp(38px, 4.4vw, 64px) var(--gutter); background: var(--white); }
.legal__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 100%;
  max-width: 72ch;
  margin: 0 auto;
}

.legal__intro { font-size: var(--t-lead); line-height: 1.75; color: var(--body); }

/* jump list — only on the pages long enough to need one */
.legal__toc {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: clamp(18px, 2vw, 26px);
  list-style: none;
  background: #F6FAF6;
  border-left: 2px solid var(--green);
  border-radius: 0 6px 6px 0;
}
.legal__toc-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-text);
}
.legal__toc a { font-size: var(--t-body); line-height: 1.6; color: var(--ink); }
.legal__toc a:hover { color: var(--green-text); }

.legal section { display: flex; flex-direction: column; gap: 14px; scroll-margin-top: 130px; }

.legal h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.2;
  color: var(--ink);
}
.legal h3 {
  font-size: var(--t-body);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.legal p, .legal li { font-size: var(--t-body); line-height: 1.75; color: var(--body); }
.legal p a, .legal li a { color: var(--green-text); text-decoration: underline; text-underline-offset: 2px; }
.legal p a:hover, .legal li a:hover { color: var(--green-deep); }

.legal ul, .legal ol { display: flex; flex-direction: column; gap: 10px; margin: 0; padding-left: 22px; }
.legal li::marker { color: var(--green-text); }

/* definition-style rows for the company identity block */
.legal__facts {
  display: grid;
  grid-template-columns: minmax(0, 12em) minmax(0, 1fr);
  gap: 10px 24px;
  margin: 0;
  padding: clamp(16px, 1.8vw, 24px);
  border: 1px solid rgba(23, 51, 43, 0.12);
  border-radius: 6px;
}
.legal__facts dt { font-size: var(--t-body); font-weight: 600; color: var(--ink); }
.legal__facts dd { margin: 0; font-size: var(--t-body); line-height: 1.6; color: var(--body); }

/* a value the client still has to decide — visible on purpose */
.legal mark {
  padding: 1px 6px;
  background: #FFF3D6;
  border-radius: 3px;
  color: #6B4E00;
  font-size: 0.95em;
}

/* ---------- sitemap ---------- */
.sitemap { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(16px, 1.8vw, 28px); }
.sitemap__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid rgba(23, 51, 43, 0.12);
  border-radius: 8px;
  transition: border-color 240ms var(--ease), transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.sitemap__card h2 { font-size: var(--t-h3); }
.sitemap__card p { font-size: var(--t-body); line-height: 1.65; }
.sitemap__card a { color: inherit; }
.sitemap__card a::after { content: ""; position: absolute; inset: 0; }
.sitemap__card { position: relative; }
@media (hover: hover) {
  .sitemap__card:hover { border-color: rgba(17, 136, 71, 0.45); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(23, 51, 43, 0.08); }
  .sitemap__card:hover h2 { color: var(--green-text); }
}

@media (max-width: 680px) {
  .legal__facts { grid-template-columns: minmax(0, 1fr); gap: 4px; }
  .legal__facts dd { margin-bottom: 8px; }
  .sitemap { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- skip link ---------- */
/* First thing in the tab order. Off-screen until focused, so keyboard users can
   jump the six header stops that repeat on every page (WCAG 2.4.1, level A). */
.skip-link {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 100;
  transform: translate(-50%, -130%);
  padding: 12px 22px;
  background: var(--green-deep);
  border-radius: 0 0 6px 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: transform 160ms var(--ease);
}
.skip-link:focus {
  transform: translate(-50%, 0);
  color: var(--white);
  outline: 2px solid var(--white);
  outline-offset: -4px;
}
/* The target takes focus programmatically; it should not draw a ring for it. */
main:focus { outline: none; }
