/* ==========================================================================
   BPIA temporary launch page
   Plain CSS, no build step, no external resources.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  --green-950: #062B17;
  --green-900: #0B3D22;
  --green-800: #14532D;
  --green-700: #1B6B3A;
  --green-600: #2E7D4F;
  --green-100: #DCEADF;
  --green-50:  #F1F6F1;

  --gold-500: #D4A017;
  --gold-400: #E8B93B;
  --gold-ink: #8C6510;

  --paper:     #FFFFFF;
  --paper-alt: #F5F8F3;
  --line:      #E2E7DF;
  --ink:       #16211B;
  --ink-muted: #4A5A51;

  --focus: var(--green-900);

  --shell: 1440px;
  --radius: 12px;
  --shadow-sm: 0 1px 2px rgba(11, 61, 34, .06), 0 8px 20px rgba(11, 61, 34, .06);
  --shadow-md: 0 14px 38px rgba(11, 61, 34, .14);

  --topbar-h: 44px;
  --navbar-h: 84px;
  --header-h: calc(var(--topbar-h) + var(--navbar-h));

  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -.015em;
  font-weight: 700;
  color: var(--green-900);
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; }

img { max-width: 100%; height: auto; }
a { color: var(--green-800); }

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

/* Icon system: every icon is a <use> reference into the sprite. */
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

svg[viewBox="0 0 24 24"] {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 3.5vw, 3rem);
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  padding: .7rem 1.1rem;
  background: var(--green-900);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  transition: top .15s ease;
}
.skip-link:focus-visible { top: 0; outline-color: var(--gold-400); }

/* --------------------------------------------------------------------------
   3. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
}
.site-header.is-scrolled { box-shadow: 0 2px 14px rgba(11, 61, 34, .12); }

/* Utility bar ------------------------------------------------------------- */
.topbar {
  --focus: var(--gold-400);
  background: var(--green-900);
  color: #fff;
}

.topbar__inner {
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem 1.4rem;
}

.topbar__contact a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
}
.topbar__contact a:hover { color: #fff; text-decoration: underline; }
.topbar__contact svg { width: 15px; height: 15px; flex: none; color: var(--gold-400); }

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switch { display: flex; align-items: center; gap: .2rem; }

.lang-switch__btn {
  appearance: none;
  border: 0;
  background: none;
  padding: .25rem .45rem;
  font: inherit;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .72);
  cursor: pointer;
  border-radius: 4px;
  transition: color .15s ease, background-color .15s ease;
}
.lang-switch__btn:hover { color: #fff; background: rgba(255, 255, 255, .12); }
.lang-switch__btn[aria-pressed="true"] {
  color: #fff;
  box-shadow: inset 0 -2px 0 var(--gold-400);
}
.lang-switch__sep { color: rgba(255, 255, 255, .35); }

/* Main navigation bar ----------------------------------------------------- */
.navbar { border-bottom: 1px solid var(--line); background: var(--paper); }

.navbar__inner {
  position: relative;
  min-height: var(--navbar-h);
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: inherit;
  margin-right: auto;
}

.brand__mark { width: auto; height: 62px; flex: none; }

.brand__lockup { display: flex; flex-direction: column; }

.brand__name {
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
  color: var(--green-800);
}

.brand__tagline {
  font-size: .72rem;
  line-height: 1.25;
  color: var(--ink-muted);
  max-width: 22ch;
}

.brand--no-mark .brand__lockup {
  border-left: 4px solid var(--gold-500);
  padding-left: .7rem;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 1.8vw, 2rem);
}

.site-nav__link {
  display: inline-block;
  padding: .4rem 0;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-900);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .15s ease, border-color .15s ease;
}
.site-nav__link:hover { color: var(--gold-ink); border-bottom-color: var(--gold-500); }
.site-nav__link.is-current { color: var(--gold-ink); border-bottom-color: var(--gold-500); }

.nav-toggle {
  display: none;
  appearance: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green-900);
  border-radius: 2px;
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before,
.nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { top: 0; transform: rotate(-45deg); }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .8rem 1.7rem;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--sm { min-height: 34px; padding: .35rem 1rem; font-size: .72rem; }

.btn--gold {
  background: var(--gold-500);
  color: var(--green-950);
  border-color: var(--gold-500);
}
.btn--gold:hover { background: var(--gold-400); border-color: var(--gold-400); }

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .6);
}
.btn--outline:hover { background: rgba(255, 255, 255, .14); border-color: #fff; }

.btn--green {
  background: var(--green-700);
  color: #fff;
  border-color: var(--green-700);
}
.btn--green:hover { background: var(--green-600); border-color: var(--green-600); }

/* --------------------------------------------------------------------------
   5. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 600px;
  min-height: clamp(560px, 74svh, 820px);
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  color: #fff;
  overflow: hidden;
  background: var(--green-900);
}

.hero__scene { position: absolute; inset: 0; z-index: -1; overflow: hidden; }

/* Illustrated farmland. To use a licensed photograph instead, replace the
   background-image below with url("../images/hero-agriculture.jpg"). */
.hero__photo {
  position: absolute;
  inset: 0;
  background: url("../images/hero-fields.svg") center / cover no-repeat;
}

/* Contrast veil: dark on the left where the copy sits, clear on the right. */
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(4, 26, 14, .92) 0%,
      rgba(4, 26, 14, .80) 34%,
      rgba(4, 26, 14, .46) 62%,
      rgba(4, 26, 14, .20) 100%),
    linear-gradient(180deg, rgba(4, 26, 14, .45) 0%, rgba(4, 26, 14, 0) 26%);
}

.hero__inner {
  --focus: var(--gold-400);
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  width: 100%;
}

.hero__copy { max-width: 46rem; }

.launch-pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 1.5rem;
  padding: .55rem 1.1rem;
  border: 1px solid rgba(232, 185, 59, .6);
  border-radius: 999px;
  background: rgba(11, 61, 34, .5);
  color: #FDF6E3;
  font-size: clamp(.8rem, .76rem + .18vw, .92rem);
  font-weight: 600;
  line-height: 1.4;
}
.launch-pill__dot {
  flex: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 4px rgba(232, 185, 59, .22);
}

.hero__title {
  color: #fff;
  font-size: clamp(1.95rem, 1rem + 2.6vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.02em;
  text-transform: uppercase;
  text-wrap: balance;
  max-width: 24ch;
}

.hero__title::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  margin-top: clamp(1.1rem, 2.5vw, 1.6rem);
  background: var(--gold-500);
}

.hero__lead {
  margin: clamp(1.1rem, 2.5vw, 1.5rem) 0 0;
  max-width: 54ch;
  font-size: clamp(1rem, .95rem + .3vw, 1.18rem);
  color: rgba(255, 255, 255, .93);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: clamp(1.6rem, 3vw, 2.2rem);
}

/* Highlights panel -------------------------------------------------------- */
.hero__panel {
  background: rgba(11, 61, 34, .88);
  border: 1px solid rgba(232, 185, 59, .28);
  border-radius: 4px;
  padding: clamp(1.4rem, 2.4vw, 2rem);
  backdrop-filter: blur(2px);
}

.panel-list { display: grid; gap: clamp(1.1rem, 2vw, 1.5rem); }

.panel-list__item { display: flex; align-items: flex-start; gap: .9rem; }

.panel-list__icon { flex: none; color: var(--gold-400); }
.panel-list__icon svg { width: 30px; height: 30px; }

.panel-list__title {
  margin: 0 0 .2rem;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.3;
}

.panel-list__text {
  margin: 0;
  font-size: .86rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, .8);
}

/* --------------------------------------------------------------------------
   6. Section furniture
   -------------------------------------------------------------------------- */
.section { padding: clamp(3.5rem, 6.5vw, 6rem) 0; }
.section--tint { background: var(--paper-alt); border-block: 1px solid var(--line); }
.section--dark {
  --focus: var(--gold-400);
  background: var(--green-900);
  color: rgba(255, 255, 255, .9);
}
.section--dark .section__title { color: #fff; }
.section--dark .eyebrow { color: var(--gold-400); }
.section--dark .eyebrow::after { background: var(--gold-400); }

.section__grid { display: grid; gap: clamp(1.5rem, 4vw, 4rem); }

.eyebrow {
  margin: 0 0 .85rem;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.eyebrow::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin-top: .65rem;
  background: var(--gold-500);
}

.section__title {
  font-size: clamp(1.6rem, 1.15rem + 1.7vw, 2.5rem);
  text-wrap: balance;
}
.section__title--sm { font-size: clamp(1.3rem, 1.05rem + .9vw, 1.7rem); }

.section__head--center {
  max-width: 780px;
  margin: 0 auto clamp(2.2rem, 4.5vw, 3.4rem);
  text-align: center;
}
.section__head--center .eyebrow::after { margin-inline: auto; }

.section__intro {
  margin: 1.1rem 0 0;
  color: var(--ink-muted);
  font-size: 1.02rem;
}
.section--dark .section__intro { color: rgba(255, 255, 255, .82); }

.lead {
  font-size: clamp(1.03rem, 1rem + .3vw, 1.16rem);
  color: var(--ink);
}
.section--dark .lead { color: #fff; }
.section__body > p:not(.lead) { color: var(--ink-muted); }
.section--dark .section__body > p:not(.lead) { color: rgba(255, 255, 255, .82); }

/* --------------------------------------------------------------------------
   7. Value chain cards
   -------------------------------------------------------------------------- */
.sector-grid {
  display: grid;
  gap: clamp(1rem, 1.6vw, 1.4rem);
  grid-template-columns: 1fr;
}

.sector {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.sector:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 160, 23, .5);
}

.sector__art {
  position: relative;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.sector__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg,
    rgba(255, 255, 255, .07) 0 2px,
    rgba(255, 255, 255, 0) 2px 16px);
}

.sector__art--a { background: linear-gradient(150deg, #2E7D4F, #14532D); }
.sector__art--b { background: linear-gradient(150deg, #3B8A57, #10492A); }
.sector__art--c { background: linear-gradient(150deg, #2A7F55, #0F4527); }
.sector__art--d { background: linear-gradient(150deg, #35804A, #123F24); }
.sector__art--e { background: linear-gradient(150deg, #2F7A4C, #0E4726); }
.sector__art--f { background: linear-gradient(150deg, #38875A, #114A2A); }

.sector__watermark {
  width: 44%;
  height: 44%;
  color: #fff;
  opacity: .22;
  stroke-width: 1;
}

.sector__badge {
  position: absolute;
  left: 1.15rem;
  top: -21px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  border: 2px solid var(--paper);
  color: var(--gold-400);
}
.sector__badge svg { width: 20px; height: 20px; }

.sector__body {
  position: relative;
  padding: 1.9rem 1.15rem 1.4rem;
}

.sector__title {
  font-size: 1rem;
  margin-bottom: .4rem;
  text-wrap: balance;
}

.sector__text {
  margin: 0;
  font-size: .89rem;
  line-height: 1.5;
  color: var(--ink-muted);
}

/* --------------------------------------------------------------------------
   8. Strengths band
   -------------------------------------------------------------------------- */
.strengths {
  background: var(--green-900);
  color: #fff;
  padding: clamp(2rem, 3.5vw, 2.8rem) 0;
}

.strengths__list {
  display: grid;
  gap: clamp(1.2rem, 2vw, 1.6rem);
  grid-template-columns: 1fr;
}

/* Dividers appear only once the band has more than one column. */
.strength {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}

.strength__icon { flex: none; color: var(--gold-400); }
.strength__icon svg { width: 36px; height: 36px; }

.strength__body { min-width: 0; }

.strength__figure {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .1rem .45rem;
  margin: 0 0 .25rem;
}

.strength__value {
  font-size: clamp(1.5rem, 1.2rem + .9vw, 2.05rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.015em;
  color: var(--gold-400);
}
.strength__value--word {
  font-size: clamp(1rem, .92rem + .35vw, 1.2rem);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.strength__unit {
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.25;
  color: #fff;
}

.strength__text {
  margin: 0;
  font-size: .84rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, .78);
}

/* --------------------------------------------------------------------------
   9. About and what is coming
   -------------------------------------------------------------------------- */
.about-grid { display: grid; gap: clamp(2rem, 4vw, 4rem); }

.about-grid .section__title { margin-bottom: 1.15rem; }
.about-grid__main .btn { margin-top: 1.6rem; }
.about-grid__main p { color: var(--ink-muted); }
.about-grid__main p.lead { color: var(--ink); }
.about-grid__main p + p { margin-top: 1rem; }

.about-grid__side {
  padding: clamp(1.5rem, 2.5vw, 2.2rem);
  background: var(--paper-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.upcoming { display: grid; gap: 1.2rem; margin-top: 1.6rem; }

.upcoming__item { padding-top: .9rem; border-top: 3px solid var(--gold-500); }

.upcoming__title { font-size: 1rem; margin-bottom: .3rem; }

.upcoming__text { margin: 0; font-size: .92rem; color: var(--ink-muted); }

/* --------------------------------------------------------------------------
   10. Mandate cards
   -------------------------------------------------------------------------- */
.cards {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: 1fr;
}

.card {
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 160, 23, .5);
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 1.1rem;
  border-radius: 12px;
  background: var(--green-50);
  color: var(--green-700);
}
.card__icon svg { width: 25px; height: 25px; }

.card__title { font-size: 1.06rem; margin-bottom: .5rem; text-wrap: balance; }

.card__text { margin: 0; font-size: .94rem; color: var(--ink-muted); }

/* --------------------------------------------------------------------------
   11. Who we work with
   -------------------------------------------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }

.chip {
  padding: .5rem 1rem;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  font-size: .88rem;
  font-weight: 600;
  color: #fff;
}

/* --------------------------------------------------------------------------
   12. Contact
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: 1fr;
  max-width: 1040px;
  margin-inline: auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  text-align: center;
  background: var(--paper-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: .9rem;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--gold-400);
}
.contact-card__icon svg { width: 21px; height: 21px; }

.contact-card__label {
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--green-800);
  margin-bottom: .5rem;
}

.contact-card__value {
  margin: 0;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.5;
}
.contact-card__value a {
  color: var(--green-800);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(20, 83, 45, .3);
}
.contact-card__value a:hover { color: var(--gold-ink); border-bottom-color: var(--gold-500); }

.contact-card__value--address { font-size: .95rem; color: var(--ink); }

.contact-card__note {
  margin: .6rem 0 0;
  font-size: .84rem;
  line-height: 1.45;
  color: var(--ink-muted);
}

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  --focus: var(--gold-400);
  background: var(--green-950);
  color: rgba(255, 255, 255, .82);
  padding-top: clamp(2.5rem, 5vw, 3.8rem);
  border-top: 4px solid var(--gold-500);
}

.site-footer__inner {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2rem, 4vw, 2.8rem);
}

.site-footer__brand { display: flex; align-items: center; gap: 1rem; }
.site-footer__mark { width: auto; height: 66px; flex: none; }

.brand__name--footer { color: #fff; font-size: 1.6rem; }

.site-footer__tagline {
  margin: .3rem 0 0;
  font-size: .88rem;
  color: rgba(255, 255, 255, .72);
  max-width: 34ch;
}

.site-footer__blurb {
  margin: 1.1rem 0 0;
  font-size: .9rem;
  color: rgba(255, 255, 255, .7);
  max-width: 44ch;
}

.site-footer__heading {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.1rem;
}

.site-footer__links { display: grid; gap: .6rem; }
.site-footer__links a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  font-size: .92rem;
}
.site-footer__links a:hover { color: #fff; text-decoration: underline; }

.site-footer__contact { display: grid; gap: .75rem; margin-bottom: 1.5rem; }

.site-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  line-height: 1.5;
}
.site-footer__contact svg {
  width: 17px;
  height: 17px;
  flex: none;
  margin-top: .18rem;
  color: var(--gold-400);
}
.site-footer__contact a { color: rgba(255, 255, 255, .88); text-decoration: none; }
.site-footer__contact a:hover { color: #fff; text-decoration: underline; }
.site-footer__contact address {
  font-style: normal;
  color: rgba(255, 255, 255, .78);
  max-width: 32ch;
}

.site-footer__notice {
  margin: 0;
  padding-left: 1rem;
  border-left: 3px solid var(--gold-500);
  font-size: .92rem;
  font-weight: 600;
  color: #fff;
  max-width: 40ch;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem 1.5rem;
  padding-block: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.site-footer__copy,
.site-footer__temp {
  margin: 0;
  font-size: .82rem;
  color: rgba(255, 255, 255, .64);
}
.site-footer__temp { letter-spacing: .08em; text-transform: uppercase; }

/* --------------------------------------------------------------------------
   14. Responsive
   -------------------------------------------------------------------------- */
@media (min-width: 560px) {
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .strengths__list { grid-template-columns: repeat(2, 1fr); }
  .strength { padding-left: clamp(1rem, 2vw, 1.8rem); border-left: 1px solid rgba(255, 255, 255, .16); }
  .strength:nth-child(odd) { border-left: 0; padding-left: 0; }
}

@media (min-width: 720px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
  .upcoming { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .sector-grid { grid-template-columns: repeat(3, 1fr); }
  .strengths__list { grid-template-columns: repeat(3, 1fr); }
  .strength { border-left: 1px solid rgba(255, 255, 255, .16); padding-left: clamp(1rem, 2vw, 1.8rem); }
  .strength:nth-child(odd) { border-left: 1px solid rgba(255, 255, 255, .16); padding-left: clamp(1rem, 2vw, 1.8rem); }
  .strength:nth-child(3n + 1) { border-left: 0; padding-left: 0; }
}

@media (min-width: 1060px) {
  .section__grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); align-items: start; }
  .about-grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); align-items: start; }
  .hero__inner { grid-template-columns: minmax(0, 1fr) 370px; }
  .cards { grid-template-columns: repeat(4, 1fr); }
  .upcoming { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: minmax(0, 6fr) minmax(0, 3fr) minmax(0, 4fr); }
}

@media (min-width: 1280px) {
  .sector-grid { grid-template-columns: repeat(6, 1fr); }
  .strengths__list { grid-template-columns: repeat(5, 1fr); }
  .strength:nth-child(3n + 1) { border-left: 1px solid rgba(255, 255, 255, .16); padding-left: clamp(1rem, 2vw, 1.8rem); }
  .strength:first-child { border-left: 0; padding-left: 0; }
  .hero__inner { grid-template-columns: minmax(0, 1fr) 400px; }
}

/* Mobile navigation ------------------------------------------------------- */
@media (max-width: 1059px) {
  :root { --navbar-h: 68px; --topbar-h: 40px; }

  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .site-nav.is-open { display: block; }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .5rem clamp(1.15rem, 3.5vw, 3rem) 1rem;
  }
  .site-nav__list li + li { border-top: 1px solid var(--line); }

  .site-nav__link { display: block; padding: .95rem 0; border-bottom: 0; font-size: .85rem; }
  .site-nav__link:hover,
  .site-nav__link.is-current { border-bottom: 0; }

  .brand__tagline { display: none; }
  .brand__mark { height: 46px; }

  .hero__panel { order: 2; }
}

@media (max-width: 719px) {
  .topbar__inner { flex-direction: column; align-items: stretch; gap: .4rem; padding-block: .55rem; }
  .topbar__contact { justify-content: center; gap: .3rem 1.1rem; }
  .topbar__contact a { font-size: .78rem; }
  .topbar__actions { justify-content: center; }
}

@media (max-width: 460px) {
  .hero__actions .btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   15. Motion preferences
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .btn:hover,
  .card:hover,
  .sector:hover { transform: none; }
}
