/* ============================================================
   CSS Holdings — Brand Identity
   Primary #0e1713  |  Secondary #c6a25b  |  Other #f4efe6
   ============================================================ */

:root {
  --primary: #0e1713;
  --secondary: #c6a25b;
  --other: #f4efe6;
  --grade-cream: linear-gradient(180deg, #f8f3ea 0%, #f4efe6 100%);
  --grade-cream-soft: linear-gradient(180deg, #faf7f1 0%, #f5f0e7 100%);
  --grade-white: linear-gradient(180deg, #ffffff 0%, #fbf9f5 100%);
  --grade-mist: linear-gradient(180deg, #f7f6f3 0%, #f2f0eb 100%);
  --grade-paper: linear-gradient(180deg, #ffffff 0%, #faf8f4 100%);
  --ink: var(--primary);
  --gold: var(--secondary);
  --cream: var(--other);
  --muted: #5c6560;
  --white: #ffffff;
  --surface: var(--other);
  --line: color-mix(in srgb, var(--primary) 8%, transparent);
  --border-soft: #ebe8e1;
  --surface-soft: #f5f3ee;
  --surface-soft-grade: linear-gradient(180deg, #f7f6f3 0%, #f2f0eb 100%);
  --surface-card: linear-gradient(180deg, #ffffff 0%, #faf8f4 100%);
  --surface-cream: linear-gradient(180deg, #faf8f4 0%, #f4efe6 100%);
  --surface-paper: linear-gradient(180deg, #ffffff 0%, #fbf9f5 100%);
  --max: 1120px;
  --font: "Plus Jakarta Sans", "Helvetica Neue", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--primary);
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.boxed-page {
  background: #f7f5f1;
}

.boxed-page .home-main {
  width: min(100% - 24px, 1280px);
  margin: 10px auto 12px;
  background: #fff;
  border: 1px solid #efebe4;
  border-radius: 28px;
  overflow: clip;
  box-shadow: 0 32px 64px -40px rgba(14, 23, 19, 0.22);
}

.boxed-page .home-main::after {
  content: "";
  display: block;
  height: 24px;
  background: linear-gradient(180deg, rgba(244, 239, 230, 0), rgba(14, 23, 19, 0.045));
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
ul { list-style: none; }

.wrap {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--secondary); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  border: none;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-dark { background: var(--primary); color: var(--other); }
.btn-dark:hover { box-shadow: 0 12px 28px rgba(14,23,19,.22); }

.btn-white {
  background: var(--other);
  color: var(--primary);
  border: 1px solid color-mix(in srgb, var(--secondary) 45%, transparent);
}
.btn-white:hover { box-shadow: 0 10px 24px rgba(14,23,19,.12); }

.btn-gold {
  background: var(--secondary);
  color: var(--primary);
  height: 42px;
  padding: 0 20px;
  font-size: 13.5px;
}
.btn-gold:hover {
  background: color-mix(in srgb, var(--secondary) 88%, #000);
  box-shadow: 0 8px 20px rgba(198,162,91,.35);
}
.btn-outline-gold {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--secondary);
  height: 42px;
  padding: 0 20px;
  font-size: 13.5px;
}
.btn-outline-gold:hover {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 8px 20px rgba(198,162,91,.3);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.75);
  height: 42px;
  padding: 0 20px;
  font-size: 13.5px;
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  box-shadow: 0 8px 20px rgba(255,255,255,.2);
}
.btn-gold:hover { box-shadow: 0 10px 22px rgba(198,162,91,.4); }

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid color-mix(in srgb, var(--primary) 22%, transparent);
}

/* ---------- Header / Nav ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid #eceff1;
  box-shadow: 0 1px 0 rgba(14,23,19,.03);
}

.nav {
  width: min(100% - 32px, 1280px);
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand .mark {
  width: 44px;
  height: 44px;
  border: 3px solid var(--secondary);
  color: var(--secondary);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .5px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand .name {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--primary);
}
.brand .est {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
  flex: 1;
  flex-wrap: wrap;
}
.nav-links > a,
.nav-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--display-size-xs, 16px) !important;
  line-height: var(--display-lh-xs, 24px) !important;
  font-weight: var(--font-weight-500, 500) !important;
  color: var(--ink);
  padding: 8px 10px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
}
.nav-links > a:hover,
.nav-drop-btn:hover,
.nav-links > a.is-active,
.nav-drop-btn.is-active {
  color: var(--secondary);
}
.chev { opacity: .55; }

.nav-dropdown { position: relative; }
.nav-drop-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 200px;
  padding-top: 10px;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: none;
  z-index: 20;
}
.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown:focus-within .nav-drop-menu,
.nav-dropdown.is-open .nav-drop-menu {
  display: block;
}
.nav-drop-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 600;
  background: var(--white);
}
.nav-drop-menu a:first-child {
  border-radius: 16px 16px 0 0;
  padding-top: 14px;
}
.nav-drop-menu a:last-child {
  border-radius: 0 0 16px 16px;
  padding-bottom: 14px;
}
.nav-drop-menu a:only-child {
  border-radius: 16px;
}
.nav-drop-menu a:hover,
.nav-drop-menu a.is-active {
  background: var(--other);
  color: var(--secondary);
}
/* white panel behind links */
.nav-drop-menu::before {
  content: "";
  position: absolute;
  inset: 10px 0 0;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(14,23,19,.12);
  border: 1px solid rgba(14,23,19,.06);
  z-index: -1;
}

.nav-end {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--other);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
}
.menu-toggle span {
  width: 17px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 20px 22px;
  border-top: 1px solid rgba(14,23,19,.06);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 4px;
  font-weight: 600;
  border-bottom: 1px solid rgba(14,23,19,.06);
  font-size: 15px;
}
.mobile-nav a.mobile-sub {
  padding-left: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}
.mobile-nav .btn {
  margin-top: 12px;
  border: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 580px;
  overflow: hidden;
  margin-bottom: 0;
}

.hero-sky {
  position: absolute;
  inset: 0 12px;
  height: auto;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 55% 50% at 75% 30%, rgba(198,162,91,.18), transparent 60%),
    radial-gradient(ellipse 40% 35% at 20% 70%, rgba(244,239,230,.06), transparent 55%),
    linear-gradient(165deg, #162019 0%, #0e1713 50%, #0e1713 100%);
  z-index: -1;
  overflow: hidden;
}
.hero-sky::before,
.hero-sky::after {
  content: "";
  position: absolute;
  background: rgba(198,162,91,.12);
  border-radius: 999px;
  filter: blur(2px);
}
.hero-sky::before {
  width: 280px; height: 46px;
  top: 18%; left: 8%;
  animation: cloud 18s ease-in-out infinite alternate;
}
.hero-sky::after {
  width: 200px; height: 34px;
  top: 28%; right: 18%;
  animation: cloud 22s ease-in-out infinite alternate-reverse;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 580px;
  padding: 56px 0 48px;
}

.hero-copy {
  padding: 0;
  max-width: 480px;
  animation: rise .85s cubic-bezier(.22,1,.36,1) both;
  z-index: 2;
}
.hero-copy h1 {
  font-size: clamp(46px, 6.2vw, 70px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: .98;
  color: var(--other);
  text-shadow: 0 2px 24px rgba(14,23,19,.25);
}
.hero-copy p {
  margin-top: 18px;
  font-size: 17px;
  font-weight: 500;
  color: color-mix(in srgb, var(--other) 88%, transparent);
  max-width: 34ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-actions .btn {
  justify-content: center;
  text-align: center;
}

.hero-figure {
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  width: 50%;
  pointer-events: none;
  animation: rise .95s .1s cubic-bezier(.22,1,.36,1) both;
  z-index: 1;
  overflow: hidden;
}
/* multi-directional fades blending into the dark background */
.hero-figure::before {
  content: "";
  position: absolute;
  inset: 0;
  /* top fade + right fade */
  background:
    linear-gradient(180deg, #0e1713 0%, transparent 22%),
    linear-gradient(270deg, #0e1713 0%, transparent 18%);
  z-index: 3;
  pointer-events: none;
}
.hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  /* strong left-side blend into the hero dark background */
  background: linear-gradient(90deg,
    #0e1713 0%,
    rgba(14,23,19,.85) 18%,
    rgba(14,23,19,.45) 36%,
    transparent 58%
  );
  z-index: 2;
  pointer-events: none;
}
.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% top;
  display: block;
}

/* ---------- Homepage stat strip ---------- */
.home-stats {
  background: var(--primary);
  padding: 0;
}
.home-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,.08);
}
.home-stats article {
  padding: 26px 28px;
  border-right: 1px solid rgba(255,255,255,.08);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.home-stats strong {
  display: block;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 6px;
}
.home-stats span {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ---------- Homepage hero kicker ---------- */
.hero-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
  opacity: .9;
}

/* ---------- Homepage biz panels ---------- */
.home-biz-panel {
  padding: 72px 0;
  background: var(--grade-paper);
}
.home-biz-panel--alt {
  background: var(--grade-cream);
}
.home-biz-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 56px;
  align-items: start;
}
.home-biz-copy .eyebrow { margin-bottom: 12px; }
.home-biz-copy h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.08;
  color: var(--primary);
  margin-bottom: 16px;
}
.home-biz-copy > p {
  color: #555a57;
  font-size: 15px;
  line-height: 1.7;
  max-width: 50ch;
  margin-bottom: 22px;
}
.home-biz-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 28px;
  list-style: none;
}
.home-biz-list li {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
  padding-left: 14px;
  position: relative;
}
.home-biz-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
}
.home-biz-card {
  position: sticky;
  top: 88px;
}

/* ---------- Intro + cards ---------- */
.panel {
  padding: 84px 0 60px;
  background: var(--grade-cream-soft);
  position: relative;
  z-index: 1;
}

.biz-intro-head {
  margin-bottom: 48px;
}
.biz-intro-head .eyebrow {
  display: block;
  margin-bottom: 20px;
}
.biz-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  align-items: start;
}
.biz-intro-grid h2 {
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.08;
  color: var(--primary);
  max-width: 14ch;
}
.biz-intro-copy p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 46ch;
  margin-bottom: 24px;
}
.biz-intro-copy .btn {
  margin-top: 0;
}

.intro-row {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 48px 72px;
  margin-bottom: 48px;
  align-items: start;
}
.intro-left {
  font-size: 17px;
  font-weight: 600;
  color: var(--muted);
  max-width: 14ch;
  line-height: 1.45;
  padding-top: 8px;
}
.intro-right h2 {
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.08;
  max-width: 16ch;
}
.intro-right > p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15.5px;
  max-width: 48ch;
}
.intro-right .btn { margin-top: 24px; }

.cards {
  display: grid;
  grid-template-columns: 1.15fr .92fr .92fr;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.cards::-webkit-scrollbar { display: none; }

.card {
  border-radius: 22px;
  min-height: 420px;
  scroll-snap-align: start;
  overflow: hidden;
  position: relative;
}

.card-photo {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 32px rgba(14,23,19,.12);
  transition: box-shadow .25s ease, transform .25s ease;
}
.card-photo:hover {
  box-shadow: 0 18px 44px rgba(14,23,19,.16);
  transform: translateY(-2px);
}
.card-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
}
.card-fade {
  position: absolute;
  inset: auto 0 0;
  padding: 28px;
  background: linear-gradient(180deg, transparent, rgba(14,23,19,.78));
}
.card-fade h3 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 8px;
}
.card-fade p {
  font-size: 14px;
  font-weight: 500;
  opacity: .92;
  margin-bottom: 16px;
  max-width: 30ch;
}

/* ---------- Home business photo trio ---------- */
.home-biz-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.home-biz-cards::-webkit-scrollbar { display: none; }

.home-biz-card-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 460px;
  scroll-snap-align: start;
  border: 1px solid rgba(198,162,91,.16);
  box-shadow: 0 14px 40px rgba(14,23,19,.12);
  transition: transform .3s ease, box-shadow .3s ease;
}
.home-biz-card-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(14,23,19,.2);
}
.home-biz-card-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease;
}
.home-biz-card-photo:hover > img {
  transform: scale(1.05);
}
.home-biz-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,18,15,.96) 0%,
    rgba(10,18,15,.62) 42%,
    rgba(10,18,15,.12) 72%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
}
.home-biz-card-body {
  padding: 28px 26px 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 210px;
}
.home-biz-card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--secondary);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.home-biz-card-body h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.1;
}
.home-biz-card-body p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.86);
  line-height: 1.55;
  margin-bottom: auto;
  padding-bottom: 18px;
  max-width: 32ch;
}
.home-biz-card-body .btn {
  margin-top: 4px;
}

.card-soft {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px 26px 30px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--primary) 8%, transparent);
}
.card-lilac {
  background: linear-gradient(165deg, #f7f2e9 0%, #f4efe6 100%);
}
.card-butter {
  background: linear-gradient(165deg, #f0e6d0 0%, color-mix(in srgb, var(--secondary) 20%, var(--other)) 100%);
}
.card-illo {
  display: grid;
  place-items: center;
  flex: 1;
  min-height: 160px;
}
.card-illo svg { width: 130px; height: auto; }
.card-soft h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 8px;
}
.card-soft p {
  color: var(--muted);
  font-size: 14.5px;
  max-width: 26ch;
  margin: 0 auto;
}

.cards-nav {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.cards-nav[hidden] {
  display: none !important;
}
.round-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--primary);
  color: var(--other);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.round-btn:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: scale(1.05);
}

/* ---------- Business blocks ---------- */
.biz-block {
  padding: 80px 0;
  background: var(--grade-paper);
}
.biz-block--white {
  background: var(--grade-paper);
}
.biz-block--alt {
  background: var(--grade-cream);
  padding: 64px 0;
}

.biz-head {
  max-width: 720px;
  margin-bottom: 40px;
}
.biz-head h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.biz-head-title--single {
  font-size: clamp(24px, 2.8vw, 34px) !important;
  white-space: nowrap;
}
.biz-head p {
  color: var(--muted);
  font-size: 16px;
  max-width: 62ch;
  margin-bottom: 12px;
}

.biz-split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: stretch;
}
.biz-split h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 18px;
  letter-spacing: -.02em;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}
.service-list--dense {
  grid-template-columns: 1fr 1fr;
}
.service-list li {
  font-size: 14.5px;
  font-weight: 600;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--primary) 6%, transparent);
  border-radius: 10px;
  box-shadow: none;
  transition: border-color .2s ease, background-color .2s ease;
}
.service-list li:hover {
  border-color: color-mix(in srgb, var(--primary) 16%, transparent);
  background: color-mix(in srgb, #fff 92%, var(--primary));
}
.biz-block--alt .service-list li {
  background: color-mix(in srgb, #fff 82%, var(--other));
  border-color: color-mix(in srgb, var(--primary) 6%, transparent);
}
.biz-block--alt .service-list li:hover {
  border-color: color-mix(in srgb, var(--primary) 16%, transparent);
  background: color-mix(in srgb, #fff 90%, var(--other));
}
.service-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
}

.diff-card {
  background: linear-gradient(155deg, #f5f0e8 0%, #ece6da 100%);
  color: var(--primary);
  border-radius: 22px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(198,162,91,.3);
  box-shadow: 0 12px 32px rgba(14,23,19,.08);
}
.diff-card--gold {
  background: linear-gradient(155deg, #15201b 0%, #1a2e22 55%, #0e1a14 100%);
  color: var(--other);
  border: 1px solid rgba(198,162,91,.3);
  box-shadow: 0 16px 40px rgba(14,23,19,.18);
}
.diff-card h3 {
  color: var(--primary);
  margin-bottom: 18px;
}
.diff-card--gold h3 {
  color: var(--secondary);
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.diff-card .btn {
  margin-top: auto;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--primary);
}
.diff-card--gold .check-list li {
  color: rgba(255,255,255,.88);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: inset 0 0 0 4px rgba(14,23,19,.25);
}

/* ---------- Why choose ---------- */
.why {
  padding: 64px 0;
  background: #fff;
}
.why-head {
  max-width: 760px;
  margin-bottom: 34px;
}
.why-head h2 {
  font-size: clamp(34px, 4.1vw, 56px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.03;
  margin-bottom: 12px;
}
.why-head p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 62ch;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.why-card {
  background: var(--surface-soft-grade);
  border-radius: 16px;
  padding: 18px 16px;
  border: 1px solid var(--border-soft);
  min-height: 160px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.why-card:hover {
  border-color: color-mix(in srgb, var(--secondary) 35%, var(--border-soft));
  box-shadow: 0 8px 24px rgba(14,23,19,.07);
  transform: translateY(-1px);
}
.why-card--wide {
  grid-column: span 4;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: start;
  background: var(--surface-cream);
  border-color: color-mix(in srgb, var(--secondary) 22%, transparent);
  min-height: auto;
}
.why-card--wide .why-icon { grid-row: span 2; }
.why-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--secondary);
  margin-bottom: 10px;
}
.why-card h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.25;
  margin-bottom: 6px;
}
.why-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  max-width: none;
}

/* ---------- Digital ---------- */
.digital {
  margin: 20px 16px;
  border-radius: 28px;
  background: linear-gradient(160deg, #d4b574 0%, #c6a25b 48%, #b8934f 100%);
  color: var(--primary);
  padding: 56px 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}
.digital-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: start;
}
.digital-copy h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.08;
  max-width: 14ch;
  margin-bottom: 16px;
}
.digital-copy p {
  color: color-mix(in srgb, var(--primary) 72%, transparent);
  font-size: 15.5px;
  max-width: 46ch;
  margin-bottom: 14px;
}
.digital-note {
  color: color-mix(in srgb, var(--primary) 58%, transparent) !important;
  font-size: 14.5px !important;
}
.digital-list-wrap {
  background: color-mix(in srgb, var(--primary) 7%, transparent);
  border: 1px solid color-mix(in srgb, var(--primary) 12%, transparent);
  border-radius: 22px;
  padding: 28px;
}
.digital-list-wrap h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
}
.digital-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
}
.digital-list li {
  font-size: 13.5px;
  font-weight: 600;
  padding: 11px 13px;
  border-radius: 10px;
  background: color-mix(in srgb, #fff 22%, transparent);
  color: var(--primary);
}

.digital .eyebrow--light {
  color: var(--primary);
}

/* ---------- Lifestyle ---------- */
.lifestyle {
  position: relative;
  margin: 16px;
  border-radius: 28px;
  overflow: hidden;
  min-height: 460px;
  background: #000000;
}
.lifestyle > img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 70%;
  object-fit: contain;
  object-position: center bottom;
  filter: brightness(1.35) contrast(1.25);
}
.lifestyle-copy {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  padding: 72px 56px 24px;
  background: none;
}
.lifestyle-copy h2 {
  color: var(--other);
  font-size: clamp(32px, 4.2vw, 50px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05;
}

/* ---------- CTA ---------- */
.cta-band {
  padding: 76px 0;
  text-align: center;
  background: var(--grade-cream);
}
.cta-inner {
  max-width: 720px;
}
.cta-inner h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05;
}
.cta-inner h3 {
  margin-top: 8px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: -.03em;
}
.cta-inner p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 52ch;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* ---------- Footer ---------- */
footer {
  background: linear-gradient(160deg, #15201b 0%, #0e1713 65%, #0a120f 100%);
  color: var(--other);
  border-radius: 36px 36px 0 0;
  margin: 0;
  padding: 56px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: .8fr 1.8fr;
  gap: 40px;
  align-items: start;
}
.footer-tag {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  max-width: 22ch;
  line-height: 1.45;
  color: color-mix(in srgb, var(--other) 78%, transparent);
}
.footer-brand .name {
  color: var(--other);
}
.footer-brand .mark {
  border-color: var(--secondary);
  color: var(--secondary);
}
.footer-brand .est {
  color: color-mix(in srgb, var(--other) 55%, transparent);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer-cols h4 {
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--secondary);
  opacity: 1;
}
.footer-cols ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-cols a {
  font-size: 14px;
  font-weight: 600;
  color: color-mix(in srgb, var(--other) 85%, transparent);
}
.footer-cols a:hover {
  color: var(--secondary);
  text-decoration: none;
}
.footer-connect li {
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
  color: color-mix(in srgb, var(--other) 80%, transparent);
}
.footer-connect a {
  color: var(--other);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--other) 14%, transparent);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: color-mix(in srgb, var(--other) 70%, transparent);
  opacity: 1;
}

/* ---------- Motion ---------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes cloud {
  from { transform: translateX(0); }
  to { transform: translateX(40px); }
}

/* ---------- Properties page (UBA Impact-style) ---------- */
.impact-page,
.about-page {
  background: #f7f5f1;
}

.media-wrap { gap: 20px; }

.media-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 48px 0 40px;
}
.media-hero-copy h1 {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.08;
  color: var(--primary);
  margin-bottom: 10px;
}
.media-hero-copy p {
  color: #555a57;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 10px;
  max-width: 52ch;
}
.media-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 14px;
}
.media-hero-media {
  border-radius: 16px;
  overflow: hidden;
  background: #efebe4;
  aspect-ratio: 4 / 3;
  box-shadow: 0 8px 28px rgba(14,23,19,.06);
}
.media-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-tabs {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 14px 18px;
  background: var(--surface-paper);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(14,23,19,.04);
}
.media-tabs a {
  white-space: nowrap;
  font-size: 12.5px;
  font-weight: 700;
  color: #616662;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
}
.media-tabs a:hover { color: var(--primary); }
.media-tabs a.is-active {
  color: var(--primary);
  border-bottom-color: var(--secondary);
}

.media-featured {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 14px;
  background: var(--surface-paper);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 4px 24px rgba(14,23,19,.04);
}
.media-lead-story {
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface-card);
  border: 1px solid var(--border-soft);
}
.media-lead-story > img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.media-story-copy {
  padding: 16px 18px;
}
.media-story-copy > span {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.media-story-copy h2,
.media-story-copy h3 {
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.28;
  margin-bottom: 8px;
}
.media-story-copy h2 { font-size: 24px; }
.media-story-copy h3 { font-size: 16px; }
.media-story-copy p {
  color: #5d635f;
  font-size: 13.5px;
  line-height: 1.55;
}
.media-meta {
  font-size: 11px;
  font-weight: 700;
  color: #7a807c;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.media-side-stories {
  display: grid;
  gap: 12px;
}
.media-mini-story {
  background: var(--surface-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 10px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  align-items: center;
}
.media-mini-story img {
  width: 110px;
  height: 92px;
  object-fit: cover;
  border-radius: 8px;
}
.media-mini-story h3 {
  font-size: 14.5px;
  font-weight: 800;
  margin-bottom: 4px;
}
.media-mini-story p {
  color: #5d635f;
  font-size: 12.5px;
  line-height: 1.45;
}

.media-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: var(--surface-paper);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 4px 24px rgba(14,23,19,.04);
}
.media-news-card {
  background: var(--surface-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.media-news-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.media-news-card .media-story-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.media-news-card .impact-link {
  margin-top: auto;
}
.media-news-card:hover {
  box-shadow: 0 8px 24px rgba(14,23,19,.07);
  transform: translateY(-2px);
  transition: box-shadow .25s ease, transform .25s ease;
}
.media-lead-story:hover {
  box-shadow: 0 12px 32px rgba(14,23,19,.08);
}
.media-mini-story:hover {
  box-shadow: 0 4px 16px rgba(14,23,19,.06);
}
.media-load-more {
  text-align: center;
  padding: 8px 0;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}
.social-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--other);
  color: var(--primary);
  border: 1px solid color-mix(in srgb, var(--primary) 10%, transparent);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.social-icon:hover {
  background: var(--primary);
  color: var(--other);
  transform: scale(1.08);
}
.social-icons--light {
  justify-content: center;
  margin-top: 22px;
}
.social-icons--light .social-icon {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.15);
}
.social-icons--light .social-icon:hover {
  background: rgba(255,255,255,.25);
  color: #fff;
}

/* ---------- Contact page ---------- */
.contact-page {
  gap: 20px;
  max-width: 1120px;
}

.contact-hero {
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 40px 44px;
  box-shadow: 0 4px 24px rgba(14,23,19,.04);
}

.contact-hero-copy .impact-kicker {
  color: var(--secondary);
  margin-bottom: 10px;
}

.contact-hero-media {
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 5 / 4;
  border: 1px solid var(--border-soft);
  box-shadow: 0 16px 40px rgba(14,23,19,.1);
}

.contact-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-hero h1 {
  font-size: clamp(34px, 4.2vw, 48px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.08;
  color: var(--primary);
  margin-bottom: 12px;
}
.contact-hero-lead {
  color: #555a57;
  font-size: 16px;
  line-height: 1.6;
  max-width: 42ch;
  margin-bottom: 28px;
}
.contact-essentials {
  display: grid;
  gap: 10px;
  max-width: 520px;
}
.contact-essentials p {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: baseline;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
}
.contact-essentials span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #8a908c;
}
.contact-essentials a {
  color: var(--primary);
}
.contact-essentials a:hover {
  color: var(--secondary);
}

.contact-directory {
  background: var(--surface-paper);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 36px 40px;
}
.contact-directory-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}
.contact-directory-grid article {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 24px 22px;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.contact-directory-grid article:hover {
  box-shadow: 0 10px 28px rgba(14,23,19,.08);
  border-color: color-mix(in srgb, var(--secondary) 35%, var(--border-soft));
}
.contact-directory-grid article h2 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}
.contact-directory-grid article p {
  color: #555a57;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 6px;
}
.contact-directory-grid article a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--primary);
}
.contact-directory-grid article a:hover {
  color: var(--secondary);
}
.contact-hours {
  font-size: 13.5px !important;
  color: #6d7470 !important;
}

.contact-cta {
  background: var(--surface-paper);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 32px 40px;
  text-align: left;
}
.contact-cta--dark {
  background:
    radial-gradient(ellipse 80% 60% at 100% 100%, rgba(198,162,91,.1), transparent 50%),
    linear-gradient(155deg, #15201b 0%, var(--primary) 52%, #0a120f 100%) !important;
  border-color: rgba(198,162,91,.2) !important;
  text-align: center !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 56px 40px !important;
  box-shadow: none !important;
}
.contact-cta--dark .impact-kicker { color: var(--secondary); }
.contact-cta--dark h2 {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.04em;
  margin-bottom: 8px;
}
.contact-cta--dark > p {
  color: rgba(255,255,255,.78);
  font-size: 15px;
  max-width: 52ch;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.social-icons--dark {
  justify-content: flex-start;
  margin-top: 0;
}
.social-icons--dark .social-icon {
  background: var(--surface-soft-grade);
  color: var(--primary);
  border-color: var(--border-soft);
}
.social-icons--dark .social-icon:hover {
  background: var(--primary);
  color: var(--other);
  border-color: var(--primary);
}
.social-icons--gold {
  justify-content: center;
  margin-top: 0;
}
.social-icons--gold .social-icon {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.18);
}
.social-icons--gold .social-icon:hover {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

/* legacy contact helpers retained for shared forms */
.contact-detail {
  margin-bottom: 10px;
}
.contact-detail strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #7a807c;
  margin-bottom: 2px;
}
.contact-detail a,
.contact-detail span {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
}
.contact-detail a:hover { color: var(--secondary); }
.contact-form-section {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 36px;
}
.contact-form-head {
  text-align: center;
  margin-bottom: 28px;
}
.contact-form-head h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 6px;
}
.contact-form-head p {
  color: #666;
  font-size: 15px;
}
.contact-form {
  max-width: 720px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group--full {
  margin-bottom: 14px;
}
.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid #e8e3da;
  border-radius: 10px;
  background: #faf8f4;
  color: var(--primary);
  transition: border-color .2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  background: #fff;
}
.form-group small {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
}
.contact-form .btn {
  margin-top: 8px;
}

/* ---------- History page ---------- */
.hist-page {
  gap: 20px;
}

/* Intro split layout */
.hist-panel--intro-split {
  background: var(--grade-paper);
}
.hist-intro-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.hist-intro-split-copy .eyebrow { margin-bottom: 10px; }
.hist-intro-split-copy h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--primary);
  margin-bottom: 16px;
}
.hist-intro-split-copy p {
  font-size: 15px;
  color: #555a57;
  line-height: 1.7;
  margin-bottom: 12px;
}
.hist-intro-split-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hist-origin-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 24px;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.hist-origin-card:hover {
  box-shadow: 0 10px 28px rgba(14,23,19,.09);
  border-color: color-mix(in srgb, var(--secondary) 35%, var(--border-soft));
  transform: translateY(-2px);
}

/* Trust light pullquote */
.hist-panel--trust-light {
  background: var(--grade-cream) !important;
  border-color: var(--border-soft) !important;
  box-shadow: none !important;
  padding: 56px 48px !important;
}
.hist-light-quote {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  border: none;
  padding: 0;
}
.hist-light-quote p {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 16px;
}
.hist-light-quote footer {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--secondary);
  font-style: normal;
}

/* Light panel override */
.hist-panel--light {
  background: #faf9f6 !important;
  border-color: var(--border-soft) !important;
  box-shadow: none !important;
}

/* Future dark band */
.hist-panel--future-dark {
  background:
    radial-gradient(ellipse 60% 70% at 100% 50%, rgba(198,162,91,.1), transparent 55%),
    linear-gradient(155deg, #0a120f 0%, var(--primary) 50%, #15201b 100%) !important;
}
.hist-future-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.hist-future-copy .eyebrow { color: var(--secondary); margin-bottom: 10px; }
.hist-future-copy h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.04em;
  margin-bottom: 14px;
}
.hist-future-copy p {
  font-size: 15px;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
}
.hist-future-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hist-future-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  transition: background .2s, border-color .2s;
}
.hist-future-item:hover {
  background: rgba(198,162,91,.15);
  border-color: rgba(198,162,91,.35);
  color: var(--secondary);
}
.hist-future-item svg { color: var(--secondary); flex-shrink: 0; }

/* Compact timeline grid */
.hist-tl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.hist-tl-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 22px 20px;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.hist-tl-card:hover {
  box-shadow: 0 10px 28px rgba(14,23,19,.09);
  border-color: color-mix(in srgb, var(--secondary) 35%, var(--border-soft));
  transform: translateY(-2px);
}
.hist-tl-card-year {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--secondary);
  background: color-mix(in srgb, var(--secondary) 12%, transparent);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.hist-tl-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}
.hist-tl-card p {
  font-size: 13px;
  color: #5a5f5c;
  line-height: 1.55;
}

/* Looking Ahead — light variant */
.hist-panel--ahead-light {
  background: #fff !important;
  border-color: var(--border-soft) !important;
  box-shadow: none !important;
}
.hist-panel--ahead-light .impact-kicker { color: var(--secondary) !important; }
.hist-panel--ahead-light .hist-ahead-copy h2 { color: var(--primary) !important; }
.hist-panel--ahead-light .hist-ahead-copy > p { color: #5a5f5c !important; }
.hist-panel--ahead-light .hist-ahead-list li { color: var(--primary) !important; }
.hist-panel--ahead-light .hist-ahead-actions .btn-gold { background: var(--primary); color: #fff; }
.hist-panel--ahead-light .hist-ahead-actions .btn-white {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.hist-panel--ahead-light .hist-ahead-actions .btn-white:hover {
  background: var(--primary);
  color: #fff;
}

/* Split Looking Ahead */
.hist-ahead-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hist-ahead-copy .impact-kicker { color: var(--secondary) !important; }
.hist-ahead-copy h2 {
  color: #fff !important;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 800;
  letter-spacing: -.04em;
  margin-bottom: 14px;
}
.hist-ahead-copy > p {
  color: rgba(255,255,255,.8) !important;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.hist-ahead-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hist-ahead-list li {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.9) !important;
  padding-left: 20px;
  position: relative;
  line-height: 1.45;
}
.hist-ahead-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
}

/* Vertical timeline v2 */
.hist-timeline-v2 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 120px;
}
.hist-timeline-v2::before {
  content: "";
  position: absolute;
  left: 90px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--secondary) 0%, rgba(198,162,91,.2) 80%, transparent 100%);
}
.hist-tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 80px 0 1fr;
  gap: 0 28px;
  align-items: start;
  padding: 20px 0;
  margin-left: -120px;
}
.hist-tl-item + .hist-tl-item {
  border-top: 1px solid var(--border-soft);
}
.hist-tl-year {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--secondary);
  text-align: right;
  padding-top: 4px;
  white-space: nowrap;
  text-transform: uppercase;
}
.hist-tl-dot {
  position: absolute;
  left: 86px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--secondary);
  z-index: 1;
}
.hist-tl-dot--gold {
  width: 14px;
  height: 14px;
  left: 84px;
  background: var(--secondary);
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(198,162,91,.25);
}
.hist-tl-dot--future {
  background: transparent;
  border-color: rgba(198,162,91,.5);
  border-style: dashed;
}
.hist-tl-body {
  padding-left: 40px;
  padding-bottom: 4px;
}
.hist-tl-body h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}
.hist-tl-body p {
  font-size: 14px;
  color: #5a5f5c;
  line-height: 1.6;
}
.hist-tl-item--future .hist-tl-year { color: rgba(198,162,91,.55); }
.hist-tl-item--future .hist-tl-body h3 { color: #aaa; }
.hist-tl-item--future .hist-tl-body p { color: #bbb; }

.hist-panel {
  background: var(--surface-paper);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 40px 44px;
}

.hist-panel-head {
  margin-bottom: 24px;
  max-width: 720px;
}
.hist-panel-head h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--primary);
  margin-bottom: 8px;
}
.hist-panel-head p {
  color: var(--secondary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hist-panel-lead {
  color: #555a57;
  font-size: 15px;
  line-height: 1.7;
  max-width: 68ch;
  margin-bottom: 20px;
}

.hist-panel--hero {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
}
.hist-panel--hero-dark {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(198,162,91,.16), transparent 55%),
    linear-gradient(155deg, #15201b 0%, var(--primary) 52%, #0a120f 100%);
  border-color: rgba(198,162,91,.22);
  box-shadow: 0 20px 56px rgba(14,23,19,.2);
}
.hist-panel--hero-dark .impact-kicker { color: var(--secondary); }
.hist-panel--hero-dark .hist-hero-copy h1 { color: #fff; }
.hist-panel--hero-dark .hist-hero-copy p { color: rgba(255,255,255,.84); }
.hist-panel--hero-dark .hist-hero-copy strong { color: var(--secondary); }
.hist-panel--hero-dark .hist-hero-media {
  border-color: rgba(198,162,91,.28);
  box-shadow: 0 20px 48px rgba(0,0,0,.3);
  transform: rotate(1deg);
}

.hist-panel--ahead-dark {
  background:
    radial-gradient(ellipse 70% 80% at 100% 100%, rgba(198,162,91,.12), transparent 50%),
    linear-gradient(160deg, #15201b 0%, #1a2e22 55%, #0a120f 100%) !important;
  border-color: rgba(198,162,91,.2) !important;
  box-shadow: 0 20px 56px rgba(14,23,19,.18) !important;
}
.hist-panel--ahead-dark .impact-kicker { color: var(--secondary) !important; }
.hist-panel--ahead-dark .hist-ahead-inner h2 { color: #fff !important; }
.hist-panel--ahead-dark .hist-ahead-inner > p { color: rgba(255,255,255,.82) !important; }
.hist-panel--ahead-dark .hist-ahead-inner li { color: rgba(255,255,255,.9) !important; }
.hist-panel--ahead-dark .hist-ahead-inner li::before { background: var(--secondary) !important; }
.hist-hero-copy h1 {
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.08;
  color: var(--primary);
  margin-bottom: 16px;
}
.hist-hero-copy p {
  color: #555a57;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 48ch;
}
.hist-hero-copy strong { color: var(--primary); }
.hist-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.hist-hero-media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: 0 16px 40px rgba(14,23,19,.1);
}
.hist-hero-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.hist-panel--intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.hist-panel--intro .hist-panel-head {
  margin-bottom: 0;
}
.hist-panel--intro .hist-panel-head p {
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  color: #5a5f5c;
  font-weight: 600;
}
.hist-intro-copy p {
  color: #555a57;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 12px;
}
.hist-intro-copy p:last-child {
  margin-bottom: 0;
}

.hist-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.hist-chapter {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 28px 24px;
  height: 100%;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.hist-chapter:hover {
  box-shadow: 0 10px 28px rgba(14,23,19,.08);
  border-color: color-mix(in srgb, var(--secondary) 35%, var(--border-soft));
}
.hist-chapter-num {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--primary);
  color: var(--secondary);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 14px;
}
.hist-chapter h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}
.hist-chapter-sub {
  font-size: 12px;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 12px;
}
.hist-chapter p {
  color: #555a57;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 8px;
}

.hist-panel--feature {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  align-items: center;
  background: var(--surface-cream);
}
.hist-feature-copy h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 8px;
}
.hist-feature-sub {
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
}
.hist-feature-copy p {
  color: #555a57;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.hist-feature-media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 32px rgba(14,23,19,.08);
}
.hist-feature-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.hist-biz-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.hist-biz-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 26px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.hist-biz-card:hover {
  box-shadow: 0 10px 28px rgba(14,23,19,.08);
  border-color: color-mix(in srgb, var(--secondary) 35%, var(--border-soft));
}
.hist-biz-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}
.hist-biz-card p {
  color: #555a57;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 12px;
  flex: 1;
}

.hist-panel--trust {
  background: linear-gradient(160deg, #15201b 0%, var(--primary) 55%, #0a120f 100%);
  border: none;
  color: var(--other);
}
.hist-trust-inner {
  max-width: 720px;
}
.hist-trust-inner h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 8px;
  color: #fff;
}
.hist-trust-sub {
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 18px;
}
.hist-trust-inner p {
  color: rgba(255,255,255,.88);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 12px;
}

.hist-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.hist-milestone {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 22px 18px;
  border-top: 3px solid var(--secondary);
  height: 100%;
}
.hist-milestone--future {
  background: var(--surface-cream);
  border-top-color: var(--primary);
}
.hist-year {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.hist-milestone p {
  color: #555a57;
  font-size: 13px;
  line-height: 1.55;
}

.hist-panel--ahead {
  background: var(--surface-cream);
}
.hist-ahead-inner {
  max-width: 720px;
}
.hist-ahead-inner .impact-kicker {
  margin-bottom: 10px;
}
.hist-ahead-inner h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 14px;
  color: var(--primary);
}
.hist-ahead-inner > p {
  color: #555a57;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.hist-ahead-inner ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.hist-ahead-inner li {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  padding-left: 18px;
  position: relative;
}
.hist-ahead-inner li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
}
.hist-ahead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Sustainability page ---------- */
.sust-page {
  gap: 20px;
}

.sust-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  background: var(--surface-paper);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(14,23,19,.04);
}
.sust-hero--bold {
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  padding: 44px 48px;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(198,162,91,.14), transparent 55%),
    linear-gradient(155deg, #15201b 0%, var(--primary) 52%, #0a120f 100%);
  border: 1px solid rgba(198,162,91,.22);
  box-shadow: 0 20px 56px rgba(14,23,19,.2);
}
.sust-hero--bold .impact-kicker {
  color: var(--secondary);
}
.sust-hero--bold .sust-hero-copy h1 {
  color: #fff;
  font-size: clamp(30px, 3.6vw, 44px);
}
.sust-hero--bold .sust-hero-copy p {
  color: rgba(255,255,255,.86);
  max-width: 46ch;
}
.sust-hero-copy h1 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.08;
  color: var(--primary);
  margin-bottom: 14px;
}
.sust-hero-copy p {
  color: #555a57;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 10px;
  max-width: 48ch;
}
.sust-hero-copy strong { color: var(--primary); }
.sust-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.sust-hero-media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: 0 16px 40px rgba(14,23,19,.1);
}
.sust-hero--bold .sust-hero-media {
  border-color: rgba(198,162,91,.28);
  box-shadow: 0 20px 48px rgba(0,0,0,.35);
  transform: rotate(1deg);
}
.sust-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.sust-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.sust-stats article {
  background: var(--surface-paper);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 22px 20px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.sust-stats article:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(14,23,19,.1);
}
.sust-stats strong {
  display: block;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.sust-stats span {
  font-size: 12px;
  font-weight: 700;
  color: #6d7470;
  letter-spacing: .02em;
}

.sust-promise {
  background: var(--surface-paper);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 40px 44px;
  box-shadow: 0 4px 24px rgba(14,23,19,.04);
}
.sust-promise-top {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 28px;
}
.sust-promise-head h2 {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.12;
  color: var(--primary);
}
.sust-promise-copy p {
  color: #555a57;
  font-size: 15px;
  line-height: 1.75;
}
.sust-pullquote {
  margin: 0 0 28px;
  padding: 24px 28px;
  border-left: 4px solid var(--secondary);
  background: var(--surface-cream);
  border-radius: 0 14px 14px 0;
}
.sust-pullquote p {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.45;
  color: var(--primary);
  letter-spacing: -.02em;
}
.sust-goals-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
}
.sust-goal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
}
.sust-goal-grid li {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 14px 16px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.sust-goal-grid li:hover {
  background: var(--other);
  border-color: color-mix(in srgb, var(--secondary) 40%, var(--border-soft));
  transform: translateY(-1px);
}

.sust-pillars-wrap {
  background: var(--surface-paper);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 40px 44px;
  box-shadow: 0 4px 24px rgba(14,23,19,.04);
}
.sust-pillars-head {
  max-width: 640px;
  margin-bottom: 28px;
}
.sust-pillars-head h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--primary);
  margin-bottom: 8px;
}
.sust-pillars-head p {
  color: #555a57;
  font-size: 15px;
  line-height: 1.6;
}

.sust-about-inner {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 0;
}
.sust-about-inner h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 6px;
}
.sust-about-sub {
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary);
}
.sust-about-inner p {
  color: #555a57;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
}
.sust-about-inner strong { color: var(--primary); }
.sust-divider {
  border: none;
  border-top: 1px solid #e8e5de;
  margin: 24px 0 20px;
}

.sust-block--warm {
  background: var(--surface-cream) !important;
  border-color: color-mix(in srgb, var(--primary) 6%, transparent) !important;
}

.sust-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.sust-pillar {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 28px 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.sust-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(14,23,19,.1);
  border-color: color-mix(in srgb, var(--secondary) 35%, var(--border-soft));
}
.sust-pillar-num {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--secondary);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
}
.sust-pillar h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.sust-pillar > p {
  color: #555a57;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.sust-pillar ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sust-pillar li {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  padding-left: 14px;
  position: relative;
}
.sust-pillar li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
}

.sust-spotlight {
  position: relative;
  background: var(--surface-cream);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 36px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(14,23,19,.04);
}
.sust-spotlight-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--secondary);
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(198,162,91,.35);
}
.sust-spotlight-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: center;
}
.sust-spotlight-media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: 0 16px 40px rgba(14,23,19,.12);
}
.sust-spotlight-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
.sust-spotlight-copy h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 6px;
}
.sust-spotlight-copy > p:not(.sust-feature-sub) {
  color: #555a57;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.sust-spotlight-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 20px;
  list-style: none;
}
.sust-spotlight-list li {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  padding-left: 16px;
  position: relative;
}
.sust-spotlight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
}

.sust-partners {
  background:
    radial-gradient(ellipse 70% 80% at 0% 100%, rgba(198,162,91,.12), transparent 50%),
    linear-gradient(160deg, #15201b 0%, var(--primary) 55%, #0a120f 100%);
  border: 1px solid rgba(198,162,91,.2);
  border-radius: 16px;
  padding: 44px 48px;
  box-shadow: 0 20px 56px rgba(14,23,19,.18);
}
.sust-partners-inner {
  max-width: 820px;
}
.sust-partners-head .impact-kicker {
  color: var(--secondary);
}
.sust-partners-head h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 10px;
}
.sust-partners-head p {
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 56ch;
}
.sust-partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  margin-bottom: 28px;
}
.sust-partner-grid li {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.sust-partner-grid li:hover {
  background: rgba(198,162,91,.18);
  border-color: rgba(198,162,91,.45);
  transform: translateY(-2px);
}
.sust-partners-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Sustainability Spotlight v2 ---------- */
.sust-sdg-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--secondary);
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(198,162,91,.4);
}
.sust-spotlight-media {
  position: relative;
}
.sust-spotlight-copy .eyebrow { margin-bottom: 10px; }
.sust-spotlight-copy h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--primary);
  margin-bottom: 12px;
}
.sust-spotlight-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 24px;
  list-style: none;
}
.sust-spotlight-checklist li {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}
.sust-spotlight-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 11px;
  font-weight: 800;
  color: var(--secondary);
}

/* ---------- Sustainability Partners v2 ---------- */
.sust-partners-v2 {
  padding: 72px 0;
  background: var(--grade-paper);
}
.sust-partners-v2-head {
  text-align: center;
  margin-bottom: 40px;
}
.sust-partners-v2-head h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--primary);
  margin: 8px 0 10px;
}
.sust-partners-v2-head p {
  font-size: 15px;
  color: #5a5f5c;
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.6;
}
.sust-partners-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.sust-partners-v2-grid article {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 26px 22px;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.sust-partners-v2-grid article:hover {
  box-shadow: 0 12px 32px rgba(14,23,19,.1);
  border-color: color-mix(in srgb, var(--secondary) 40%, var(--border-soft));
  transform: translateY(-3px);
}
.sust-partners-v2-grid svg {
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}
.sust-partners-v2-grid h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}
.sust-partners-v2-grid p {
  font-size: 13.5px;
  color: #5a5f5c;
  line-height: 1.55;
}

/* ---------- Sustainability closing CTA ---------- */
.sust-cta {
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(198,162,91,.12), transparent 50%),
    linear-gradient(160deg, #15201b 0%, #1a2e22 52%, #0a120f 100%);
  padding: 80px 0;
  text-align: center;
}
.sust-cta .impact-kicker { color: var(--secondary); margin-bottom: 12px; }
.sust-cta h2 {
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 800;
  letter-spacing: -.045em;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 16px;
}
.sust-cta > .wrap > p {
  font-size: 16px;
  color: rgba(255,255,255,.78);
  max-width: 52ch;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.sust-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.sust-feature {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: center;
  background: var(--surface-paper);
  border: 1px solid color-mix(in srgb, var(--primary) 6%, transparent);
  border-radius: 16px;
  padding: 36px;
  overflow: hidden;
}
.sust-feature--flip {
  grid-template-columns: .9fr 1.1fr;
  background: var(--surface-cream);
}
.sust-feature-copy h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 6px;
}
.sust-feature-sub {
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
}
.sust-feature-copy > p {
  color: #555a57;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.sust-feature-media {
  border-radius: 12px;
  overflow: hidden;
  min-height: 240px;
  background: #efebe4;
  box-shadow: 0 6px 20px rgba(14,23,19,.06);
}
.sust-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.sust-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.sust-trio article {
  background: var(--surface-card);
  border: 1px solid color-mix(in srgb, var(--primary) 6%, transparent);
  border-radius: 14px;
  padding: 24px 22px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.sust-trio article:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14,23,19,.06);
}
.sust-trio h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}
.sust-trio-sub {
  font-size: 12px;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.sust-trio > article > p {
  color: #555a57;
  font-size: 13.5px;
  line-height: 1.55;
  margin-bottom: 10px;
}

.sust-ahead {
  background: var(--surface-cream);
  border: 1px solid color-mix(in srgb, var(--primary) 8%, transparent);
  border-radius: 16px;
  padding: 40px 36px;
}
.sust-ahead-inner { max-width: 680px; }
.sust-ahead h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 6px;
}
.sust-ahead-sub {
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 14px;
}
.sust-ahead p {
  color: #555a57;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 10px;
}

.sust-cta h2 {
  margin-bottom: 14px;
}
.sust-cta p {
  max-width: 20ch;
  margin: 0 auto 18px;
  line-height: 1.7;
}
.sust-cta p:last-of-type {
  margin-bottom: 22px;
}
.sust-cta .impact-cta-actions {
  margin-top: 2px;
  gap: 14px;
}

/* ---------- Leadership page ---------- */
.lead-page {
  gap: 20px;
}

.lead-panel {
  background: var(--surface-paper);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 40px 44px;
}

.lead-panel-head {
  margin-bottom: 28px;
  max-width: 720px;
}
.lead-panel-head h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--primary);
  margin-bottom: 8px;
}
.lead-panel-head p {
  color: #5a5f5c;
  font-size: 15px;
  line-height: 1.65;
}

.lead-panel--hero {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
}
.lead-hero-copy h1 {
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.06;
  color: var(--primary);
  margin-bottom: 16px;
}
.lead-hero-copy p {
  color: #555a57;
  font-size: 15px;
  line-height: 1.7;
  max-width: 48ch;
}
.lead-hero-media {
  max-width: 320px;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
  text-align: center;
}
.lead-hero-photo {
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #faf8f4 0%, #f4efe6 100%);
  border: 1px solid var(--border-soft);
  box-shadow: 0 14px 36px rgba(14,23,19,.08);
}
.lead-hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.lead-hero-caption {
  margin-top: 14px;
  padding: 0 8px;
}
.lead-hero-caption strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--primary);
  line-height: 1.35;
}
.lead-hero-caption span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.45;
}

.lead-panel--intro {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 40px;
  align-items: start;
}
.lead-intro-copy p {
  color: #555a57;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 12px;
}
.lead-intro-copy p:last-child {
  margin-bottom: 0;
}

.lead-panel--team {
  padding-bottom: 36px;
}

.lead-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.lead-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 16px 14px 18px;
  height: 100%;
}
.lead-card-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  background: #efebe4;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.lead-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lead-card-photo::after {
  content: attr(data-initials);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 36px;
  color: rgba(14,23,19,.12);
  font-weight: 800;
}
.lead-card-photo:has(img)::after {
  content: none;
}
.lead-card h3 {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1.35;
}
.lead-card p {
  font-size: 12.5px;
  color: #7a807c;
  font-weight: 600;
  line-height: 1.45;
  margin-top: auto;
}

/* ---------- Careers page ---------- */
.career-hero--dark {
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(198,162,91,.14), transparent 50%),
    linear-gradient(150deg, #15201b 0%, var(--primary) 52%, #0a120f 100%) !important;
  border-color: rgba(198,162,91,.22) !important;
  box-shadow: 0 20px 56px rgba(14,23,19,.22) !important;
}
.career-hero--dark .impact-kicker { color: var(--secondary) !important; }
.career-hero--dark h1,
.career-hero--dark .career-hero-copy h1 { color: #fff !important; }
.career-hero--dark p,
.career-hero--dark .career-hero-copy p { color: rgba(255,255,255,.82) !important; }

.career-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--surface-paper);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 40px 44px;
}
.career-hero-copy h1 {
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.08;
  color: var(--primary);
  margin-bottom: 14px;
}
.career-hero-copy p {
  color: #555a57;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 14px;
  max-width: 50ch;
}
.career-hero-media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: 0 16px 40px rgba(14,23,19,.1);
}
.career-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.career-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.career-feature-card {
  background: var(--surface-card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .25s ease, transform .25s ease;
}
.career-feature-card:hover {
  box-shadow: 0 10px 28px rgba(14,23,19,.07);
  transform: translateY(-2px);
}
.career-feature-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.career-feature-body {
  padding: 24px 22px;
}
.career-feature-body h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 10px;
}
.career-feature-body p {
  color: #555a57;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 4px;
}

.career-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.career-perks article {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 24px 22px;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.career-perks article:hover {
  box-shadow: 0 10px 28px rgba(14,23,19,.08);
  border-color: color-mix(in srgb, var(--secondary) 35%, var(--border-soft));
}
.career-perks span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--primary);
  color: #f4efe6;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 12px;
}
.career-perks h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}
.career-perks p {
  color: #555a57;
  font-size: 13.5px;
  line-height: 1.5;
}

.career-testimonial {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(14,23,19,.04);
}
.career-testimonial-inner {
  display: grid;
  grid-template-columns: .45fr .55fr;
}
.career-testimonial-photo {
  background: #efebe4;
  overflow: hidden;
}
.career-testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}
.career-testimonial-copy {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.career-testimonial-copy blockquote {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--primary);
  margin-bottom: 20px;
  font-style: italic;
}
.career-testimonial-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
}
.career-testimonial-role {
  font-size: 13px;
  color: #7a807c;
  margin-bottom: 18px;
}
.career-testimonial-nav {
  display: flex;
  gap: 8px;
}

.career-faq {
  background: var(--surface-paper);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 36px;
}
.career-faq > h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800;
  letter-spacing: -.03em;
  text-align: center;
  margin-bottom: 8px;
}
.career-faq > p {
  text-align: center;
  color: #555a57;
  font-size: 15px;
  line-height: 1.6;
  max-width: 60ch;
  margin: 0 auto 28px;
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary);
  flex-shrink: 0;
  transition: transform .2s ease;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item p {
  padding: 0 20px 16px;
  font-size: 14px;
  color: #555a57;
  line-height: 1.65;
}

.impact-wrap {
  width: min(100% - 48px, 1120px);
  margin: 24px auto 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.impact-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
  margin-top: 14px;
}
.impact-link span { font-size: 16px; line-height: 1; }
.impact-link:hover { color: var(--primary); }

.impact-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 10px;
}

.impact-hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: center;
  background: var(--surface-paper);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 40px 40px 40px 44px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(14,23,19,.04);
}
.impact-hero--white {
  background: #fff;
}
.impact-hero-copy h1 {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.08;
  color: var(--primary);
  margin-bottom: 10px;
}
.impact-sub {
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
  letter-spacing: .02em;
}
.impact-hero-copy p {
  color: #555a57;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 10px;
  max-width: 48ch;
}
.impact-hero-media {
  border-radius: 12px;
  overflow: hidden;
  background: #e8e3da;
  aspect-ratio: 5 / 4;
  border: 1px solid var(--border-soft);
  box-shadow: 0 16px 40px rgba(14,23,19,.1);
}
.impact-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.impact-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.impact-card {
  background: var(--surface-card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  box-shadow: 0 4px 16px rgba(14,23,19,.04);
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}
.impact-card:hover {
  box-shadow: 0 12px 32px rgba(14,23,19,.08);
  border-color: color-mix(in srgb, var(--secondary) 35%, var(--border-soft));
  transform: translateY(-2px);
}
.impact-card p {
  color: #555a57;
  font-size: 14.5px;
  line-height: 1.6;
  flex: 1;
}
.impact-card .impact-link { margin-top: auto; padding-top: 18px; }

.impact-feature {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
  background: var(--surface-paper);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 36px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(14,23,19,.04);
}
.impact-feature--flip {
  grid-template-columns: .9fr 1.1fr;
  background: var(--surface-cream);
}
.impact-feature--flip .impact-feature-copy { order: 2; }
.impact-feature--flip .impact-feature-media { order: 1; }
.impact-feature-copy h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 12px;
  line-height: 1.15;
}
.impact-feature-copy p {
  color: #555a57;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 10px;
}
.impact-feature-media {
  border-radius: 12px;
  overflow: hidden;
  min-height: 260px;
  background: #efebe4;
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 32px rgba(14,23,19,.08);
}
.impact-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}
.impact-feature-media--dark { background: var(--primary); }

/* ---------- Properties duo cards ---------- */
.prop-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.prop-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 460px;
  border: 1px solid rgba(198,162,91,.18);
  box-shadow: 0 16px 48px rgba(14,23,19,.14);
  transition: transform .3s ease, box-shadow .3s ease;
}
.prop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(14,23,19,.22);
}
.prop-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.prop-card:hover > img {
  transform: scale(1.04);
}
.prop-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,18,15,.95) 0%,
    rgba(10,18,15,.6) 45%,
    rgba(10,18,15,.1) 75%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
}
.prop-card-body {
  padding: 32px 30px;
  width: 100%;
}
.prop-card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--secondary);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.prop-card-body h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.1;
}
.prop-card-body p {
  font-size: 14px;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 38ch;
}

.impact-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.impact-photo-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 380px;
  background: var(--primary);
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 32px rgba(14,23,19,.1);
  transition: box-shadow .25s ease, transform .25s ease;
}
.impact-photo-card:hover {
  box-shadow: 0 18px 44px rgba(14,23,19,.14);
  transform: translateY(-2px);
}
.impact-photo-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.impact-photo-copy {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 380px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: linear-gradient(180deg, rgba(14,23,19,.72) 0%, rgba(14,23,19,.25) 45%, rgba(14,23,19,.55) 100%);
  color: #fff;
}
.impact-photo-copy h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 6px;
  color: #fff;
}
.impact-photo-copy h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 10px;
}
.impact-photo-copy p {
  color: rgba(255,255,255,.88);
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 36ch;
}
.impact-photo-copy .impact-link {
  color: #fff;
  margin-top: auto;
}
.impact-photo-copy .impact-link:hover { color: var(--secondary); }

.impact-block {
  background: var(--surface-paper);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(14,23,19,.04);
}
.impact-block-head {
  margin-bottom: 24px;
}
.impact-block-head h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800;
  letter-spacing: -.03em;
}
.impact-block-head p {
  margin-top: 6px;
  color: #666;
  font-size: 15px;
}

.impact-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.impact-svc {
  background: var(--surface-soft-grade);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 22px 20px;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.impact-svc:hover {
  box-shadow: 0 8px 24px rgba(14,23,19,.07);
  border-color: color-mix(in srgb, var(--secondary) 30%, var(--border-soft));
}
.impact-svc span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--primary);
  color: #f4efe6;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 12px;
}
.impact-svc h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}
.impact-svc-lead {
  color: #555a57;
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 12px;
}
.impact-svc ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.impact-svc li {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  padding-left: 14px;
  position: relative;
}
.impact-svc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
}

.impact-why,
.impact-serve {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.impact-why article,
.impact-serve article {
  background: var(--surface-soft-grade);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 22px 20px;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.impact-why article:hover,
.impact-serve article:hover {
  box-shadow: 0 8px 24px rgba(14,23,19,.07);
  border-color: color-mix(in srgb, var(--secondary) 30%, var(--border-soft));
}
.impact-why h3,
.impact-serve h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}
.impact-why p,
.impact-serve p {
  color: #555a57;
  font-size: 13.5px;
  line-height: 1.5;
}

.impact-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.impact-cats article {
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.impact-cats img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.impact-cats div { padding: 16px; }
.impact-cats h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}
.impact-cats p {
  color: #555a57;
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 4px;
}

.impact-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
}
.impact-steps li {
  background: var(--surface-soft-grade);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 22px 18px;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.impact-steps li:hover {
  box-shadow: 0 8px 24px rgba(14,23,19,.07);
  border-color: color-mix(in srgb, var(--secondary) 30%, var(--border-soft));
}
.impact-steps strong {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--primary);
  color: #f4efe6;
  font-size: 11px;
  margin-bottom: 12px;
}
.impact-steps h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}
.impact-steps p {
  color: #555a57;
  font-size: 13.5px;
  line-height: 1.5;
}

.impact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.impact-chips li {
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--other);
  color: var(--primary);
  border: 1px solid color-mix(in srgb, var(--secondary) 25%, var(--border-soft));
}

.impact-ahead {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.impact-ahead h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 12px;
}
.impact-ahead p {
  color: #555a57;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 10px;
  max-width: 62ch;
}

.impact-cta--dark.impact-cta {
  background: linear-gradient(160deg, #15201b 0%, var(--primary) 55%, #0a120f 100%);
  border: none;
  border-radius: 0;
  margin: 0;
}
.impact-cta--dark .impact-kicker { color: var(--secondary); }
.impact-cta {
  background: linear-gradient(160deg, #15201b 0%, var(--primary) 55%, #0a120f 100%);
  color: var(--other);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  border: 1px solid rgba(198,162,91,.2);
  box-shadow: 0 16px 48px rgba(14,23,19,.18);
}

/* ---------- News categories grid ---------- */
.news-cats {
  padding: 72px 0;
  background: var(--grade-paper);
}
.news-cats-head {
  text-align: center;
  margin-bottom: 40px;
}
.news-cats-head h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--primary);
  margin: 8px 0 10px;
}
.news-cats-head p {
  font-size: 15px;
  color: #5a5f5c;
  max-width: 50ch;
  margin: 0 auto;
}
.news-cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.news-cats-grid article {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}
.news-cats-grid article:hover {
  box-shadow: 0 12px 32px rgba(14,23,19,.1);
  border-color: color-mix(in srgb, var(--secondary) 40%, var(--border-soft));
  transform: translateY(-3px);
}
.news-cats-grid svg {
  color: var(--primary);
  margin-bottom: 14px;
}
.news-cats-grid h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}
.news-cats-grid p {
  font-size: 13.5px;
  color: #5a5f5c;
  line-height: 1.55;
  flex: 1;
  margin-bottom: 14px;
}
.news-cats-grid .impact-link { margin-top: auto; }

/* ---------- Bookshops Story split ---------- */
.book-story {
  padding: 40px 36px;
  background: var(--grade-cream);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(14,23,19,.04);
}
.book-story-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.book-story-media {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 52px rgba(14,23,19,.14);
  border: 1px solid var(--border-soft);
}
.book-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: 440px;
}
.book-story-copy .eyebrow { margin-bottom: 10px; }
.book-story-copy h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--primary);
  margin-bottom: 16px;
}
.book-story-copy p {
  font-size: 15px;
  color: #555a57;
  line-height: 1.7;
  margin-bottom: 12px;
}
.book-story-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}
.book-story-stats div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.book-story-stats strong {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--primary);
}
.book-story-stats span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--secondary);
}

/* ---------- Bookshops Why grid ---------- */
.book-why {
  padding: 72px 0;
  background: #fff;
}
.book-why-head {
  margin-bottom: 40px;
}
.book-why-head .eyebrow { margin-bottom: 10px; }
.book-why-head h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--primary);
  line-height: 1.1;
}
.book-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.book-why-grid article {
  background: var(--grade-paper);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 24px 22px;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.book-why-grid article:hover {
  box-shadow: 0 10px 28px rgba(14,23,19,.09);
  border-color: color-mix(in srgb, var(--secondary) 35%, var(--border-soft));
  transform: translateY(-2px);
}
.book-why-grid strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}
.book-why-grid p {
  font-size: 13.5px;
  color: #5a5f5c;
  line-height: 1.55;
}

/* ---------- Bookshops Digital Learning band ---------- */
.book-digital {
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(198,162,91,.12), transparent 55%),
    linear-gradient(155deg, #15201b 0%, var(--primary) 52%, #0a120f 100%);
  padding: 48px 40px;
  border-radius: 16px;
  overflow: hidden;
}
.book-digital-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.book-digital-copy {
  max-width: 520px;
}
.book-digital-copy .eyebrow { color: var(--secondary); }
.book-digital-copy h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #fff;
  margin: 12px 0 16px;
}
.book-digital-copy > p {
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.65;
  max-width: 52ch;
  margin-bottom: 28px;
}
.book-digital-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  list-style: none;
  margin-bottom: 32px;
}
.book-digital-list li {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  padding-left: 16px;
  position: relative;
}
.book-digital-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
}

/* ---------- Bookshops Digital visual panel ---------- */
.book-digital-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.bdv-device {
  width: 100%;
  max-width: 340px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.4), 0 0 0 1px rgba(198,162,91,.12);
  backdrop-filter: blur(12px);
}
.bdv-bar {
  display: flex;
  gap: 5px;
  padding: 12px 16px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.bdv-bar span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
}
.bdv-bar span:first-child { background: #c0392b; }
.bdv-bar span:nth-child(2) { background: #e67e22; }
.bdv-bar span:nth-child(3) { background: #27ae60; }
.bdv-screen {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bdv-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bdv-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary) 0%, #a07830 100%);
  flex-shrink: 0;
}
.bdv-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,.25);
  margin-bottom: 5px;
}
.bdv-line--name { width: 100px; }
.bdv-line--sub { width: 70px; background: rgba(255,255,255,.12); }
.bdv-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #27ae60;
  background: rgba(39,174,96,.15);
  border: 1px solid rgba(39,174,96,.3);
  border-radius: 20px;
  padding: 3px 9px;
}
.bdv-progress-wrap {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 14px;
}
.bdv-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  margin-bottom: 10px;
  letter-spacing: .02em;
}
.bdv-track {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,.12);
  margin-bottom: 6px;
  overflow: hidden;
}
.bdv-fill {
  height: 100%;
  width: 72%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--secondary), #e8c060);
}
.bdv-pct {
  font-size: 10px;
  font-weight: 700;
  color: var(--secondary);
  text-align: right;
}
.bdv-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.bdv-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-align: center;
  transition: background .2s, border-color .2s;
}
.bdv-card svg { color: rgba(255,255,255,.5); }
.bdv-card--active {
  background: rgba(198,162,91,.18);
  border-color: rgba(198,162,91,.4);
  color: var(--secondary);
}
.bdv-card--active svg { color: var(--secondary); }
.bdv-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 14px;
}
.bdv-stat {
  text-align: center;
}
.bdv-stat strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}
.bdv-stat span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
/* floating tags */
.bdv-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  background: var(--secondary);
  border-radius: 20px;
  padding: 7px 13px;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  white-space: nowrap;
}
.bdv-tag svg { color: var(--primary); }
.bdv-tag--1 { top: -4px; right: -10px; }
.bdv-tag--2 { bottom: 10px; left: -16px; }

/* ---------- Bookshops Promise pull-quote ---------- */
.book-promise {
  padding: 72px 0;
  background: var(--grade-cream);
}
.book-promise-quote {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  border: none;
  padding: 0;
}
.book-promise-quote p {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  color: #445;
  line-height: 1.55;
  margin-bottom: 20px;
  font-style: italic;
}
.book-promise-quote strong {
  display: block;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--primary);
  margin-bottom: 16px;
}
.book-promise-quote footer,
.book-promise-quote .book-promise-attr {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--secondary);
  font-style: normal;
  margin: 0;
}

.book-close {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 56px 40px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(14,23,19,.04);
}
.book-close .book-promise-quote {
  margin-bottom: 28px;
}
.book-close-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* ---------- Careers departments grid ---------- */
.career-depts {
  padding: 72px 0;
  background: var(--grade-paper);
}
.career-depts-head {
  text-align: center;
  margin-bottom: 40px;
}
.career-depts-head h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--primary);
  margin: 8px 0 10px;
}
.career-depts-head p {
  font-size: 15px;
  color: #5a5f5c;
  max-width: 50ch;
  margin: 0 auto;
}
.career-depts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.career-depts-grid article {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 28px 24px;
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}
.career-depts-grid article:hover {
  box-shadow: 0 12px 32px rgba(14,23,19,.1);
  border-color: color-mix(in srgb, var(--secondary) 40%, var(--border-soft));
  transform: translateY(-3px);
}
.career-depts-grid svg {
  color: var(--primary);
  margin-bottom: 14px;
  display: block;
}
.career-depts-grid h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}
.career-depts-grid p {
  font-size: 13.5px;
  color: #5a5f5c;
  line-height: 1.55;
}
.impact-cta h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 12px;
}
.impact-cta p {
  color: color-mix(in srgb, var(--other) 82%, transparent);
  font-size: 15.5px;
  max-width: 54ch;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.impact-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.impact-cta .btn-ghost {
  color: var(--other);
  border-color: color-mix(in srgb, var(--other) 35%, transparent);
}

/* ---------- About page (UBA-style layout, brand colors) ---------- */
.uba-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
}
.uba-link span { font-size: 16px; }
.uba-link:hover { color: var(--primary); }

.uba-hero {
  padding: 24px 0 0;
  background: transparent;
}
.uba-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 20px;
  background: var(--surface-paper);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 40px 44px;
  box-shadow: 0 4px 24px rgba(14,23,19,.04);
}
.uba-hero-copy h1 {
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.08;
  color: var(--primary);
  margin-bottom: 16px;
  max-width: 14ch;
}
.uba-hero-copy p {
  font-size: 16px;
  line-height: 1.65;
  color: #5a5f5c;
  max-width: 44ch;
  margin-bottom: 28px;
}
.uba-hero-media {
  border-radius: 12px;
  overflow: hidden;
  background: #f2f0eb;
  aspect-ratio: 5 / 4;
  border: 1px solid var(--border-soft);
  box-shadow: 0 16px 40px rgba(14,23,19,.1);
}
.uba-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

.uba-quick {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  padding: 20px 24px 24px;
  background: var(--surface-paper);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(14,23,19,.04);
}
.uba-quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  border-radius: 8px;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.uba-quick-item:hover {
  background: var(--other);
  box-shadow: 0 6px 18px rgba(14,23,19,.06);
  transform: translateY(-1px);
}
.uba-qi {
  width: 40px;
  height: 40px;
  color: var(--secondary);
  display: grid;
  place-items: center;
}
.uba-qi svg { width: 24px; height: 24px; }

.uba-band { padding: 64px 0; background: var(--surface-paper); }
.uba-band--gray { background: var(--surface-soft-grade); }
.uba-band--dark {
  background: linear-gradient(160deg, #15201b 0%, var(--primary) 55%, #0a120f 100%);
  padding: 72px 0;
}
.uba-band--dark .uba-head h2 { color: #fff; }
.uba-band--dark .uba-head p { color: rgba(255,255,255,.75); }

.uba-head {
  margin-bottom: 28px;
}
.uba-head h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--primary);
}
.uba-head p {
  margin-top: 8px;
  color: #666;
  font-size: 15px;
}

.uba-legacy {
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: 28px;
  align-items: stretch;
}
.uba-legacy-copy {
  background: var(--surface-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.uba-legacy-copy .eyebrow {
  margin-bottom: 12px;
}
.uba-legacy-copy h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--primary);
  margin-bottom: 16px;
}
.uba-legacy-copy p {
  color: #5a5f5c;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 42em;
}
.uba-legacy-copy strong {
  color: var(--primary);
  font-weight: 600;
}
.uba-legacy-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  list-style: none;
}
.uba-legacy-values li {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--other);
  border: 1px solid color-mix(in srgb, var(--secondary) 28%, transparent);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}
.uba-legacy-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.uba-legacy-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.uba-legacy-aside .uba-tile--dark {
  flex: 1;
  min-height: 120px;
}
.uba-legacy-aside .uba-tile--cta {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.uba-tile {
  background: var(--surface-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 28px;
}
.uba-tile--dark {
  background: var(--primary);
  color: var(--other);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 130px;
}
.uba-tile--dark strong {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--secondary);
}
.uba-tile--dark span {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  opacity: .85;
}
.uba-tile--cta {
  background: var(--other);
}
.uba-tile--cta h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}
.uba-tile--cta p {
  color: #5a5f5c;
  font-size: 14px;
  margin-bottom: 12px;
}

.uba-story {
  display: grid;
  grid-template-columns: 1.45fr .9fr;
  gap: 14px;
}
.uba-story-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.uba-story-card:hover {
  box-shadow: 0 10px 28px rgba(14,23,19,.08);
  border-color: color-mix(in srgb, var(--secondary) 30%, var(--border-soft));
}
.uba-story-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.uba-story-card--lead img {
  height: 260px;
  object-position: center 55%;
}
.uba-story-copy { padding: 20px 22px 24px; }
.uba-story-copy span {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 8px;
}
.uba-story-copy h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.025em;
  margin-bottom: 10px;
  line-height: 1.25;
}
.uba-story-copy p {
  color: #5a5f5c;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.uba-story-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.uba-story-side .uba-story-card { flex: 1; }
.uba-story-side img { height: 120px; }

.uba-who {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 48px;
  align-items: start;
}
.uba-who h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 14px;
}
.uba-lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.55;
  margin-bottom: 12px;
}
.uba-who p {
  color: #5a5f5c;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 12px;
}
.uba-who-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.uba-who-card {
  background: #fff;
  border-radius: 10px;
  padding: 18px 20px;
  border: 1px solid var(--border-soft);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.uba-who-card:hover {
  box-shadow: 0 8px 24px rgba(14,23,19,.07);
  border-color: color-mix(in srgb, var(--secondary) 30%, var(--border-soft));
}
.uba-who-card span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 4px;
}
.uba-who-card p {
  margin: 0;
  color: var(--primary);
  font-weight: 600;
  font-size: 14.5px;
}

.uba-purpose {
  background: var(--primary);
  color: var(--other);
  border-radius: 12px;
  padding: 32px 36px;
  margin-bottom: 14px;
}
.uba-purpose span,
.uba-panel span {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 10px;
}
.uba-purpose h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.35;
  max-width: 36ch;
  margin-bottom: 12px;
}
.uba-purpose p {
  color: color-mix(in srgb, var(--other) 75%, transparent);
  font-size: 14.5px;
}
.uba-mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.uba-panel {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 26px;
  box-shadow: 0 4px 20px rgba(14,23,19,.04);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.uba-panel:hover {
  box-shadow: 0 8px 24px rgba(14,23,19,.07);
  border-color: color-mix(in srgb, var(--secondary) 25%, var(--border-soft));
}
.uba-panel--gold {
  background: color-mix(in srgb, var(--secondary) 18%, #fff);
  border-color: transparent;
}
.uba-panel h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 10px;
}
.uba-panel p {
  color: #5a5f5c;
  font-size: 14.5px;
  line-height: 1.6;
}

.uba-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: var(--surface-paper);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 18px;
}
.uba-values article {
  padding: 18px 14px;
  border-radius: 10px;
  background: var(--surface-soft-grade);
  border: 1px solid var(--border-soft);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.uba-values article:hover {
  box-shadow: 0 8px 24px rgba(14,23,19,.07);
  border-color: color-mix(in srgb, var(--secondary) 30%, var(--border-soft));
}
.uba-values--bold {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 14px;
}
.uba-values--bold article {
  background: #fff;
  border-color: var(--border-soft);
  padding: 28px 24px;
}
.uba-values--bold article:hover {
  background: #fafaf8;
  border-color: color-mix(in srgb, var(--secondary) 40%, var(--border-soft));
  box-shadow: 0 12px 32px rgba(14,23,19,.1);
  transform: translateY(-3px);
}
.uba-values--bold em {
  color: var(--secondary);
  background: var(--primary);
}
.uba-values--bold h3 { color: var(--primary); font-size: 18px; }
.uba-values--bold p { color: #5a5f5c; font-size: 14px; }
.uba-values em {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary);
  color: var(--secondary);
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 12px;
}
.uba-values h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}
.uba-values p {
  font-size: 13.5px;
  color: #5a5f5c;
  line-height: 1.55;
}

.uba-close--dark {
  background: linear-gradient(160deg, #15201b 0%, #1a2e22 55%, #0a120f 100%) !important;
  border-top: none !important;
}
.uba-close--dark,
.uba-close--dark h2,
.uba-close--dark h2 { color: #fff !important; }
.uba-close--dark p { color: rgba(255,255,255,.82) !important; }
.uba-close--dark .impact-kicker { color: var(--secondary) !important; }

.uba-news {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.uba-news article {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  overflow: hidden;
}
.uba-news img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.uba-news div { padding: 16px; }
.uba-news span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 8px;
}
.uba-news h3 {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
}

.uba-ahead {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  align-items: center;
}
.uba-ahead h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 14px;
}
.uba-ahead p {
  color: #5a5f5c;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 12px;
}
.uba-ahead strong { color: var(--primary); }
.uba-ahead-media {
  border-radius: 12px;
  overflow: hidden;
  min-height: 340px;
  background: #efebe4;
}
.uba-ahead-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center 55%;
}

.uba-close {
  padding: 80px 0;
  text-align: center;
  background: #fff;
  border-top: 1px solid var(--border-soft);
}
.uba-close h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -.035em;
  color: var(--primary);
  margin-bottom: 10px;
}
.uba-close p {
  color: #5a5f5c;
  font-size: 16px;
  margin-bottom: 28px;
}
.uba-close-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-end { display: none; }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { padding: 48px 0 40px; max-width: 100%; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-figure {
    display: none;
  }
  .hero-sky { height: 520px; }

  .intro-row,
  .biz-intro-grid,
  .biz-split,
  .digital-grid,
  .footer-top,

  .impact-hero,
  .media-hero,
  .media-featured,
  .career-hero,
  .career-duo,
  .career-testimonial-inner,
  .sust-hero,
  .sust-about-inner,
  .sust-promise-top,
  .sust-spotlight-grid,
  .sust-feature,
  .sust-feature--flip,
  .lead-panel--hero,
  .lead-panel--intro,
  .hist-panel--hero,
  .hist-panel--intro,
  .hist-panel--feature,
  .contact-top,
  .contact-biz-duo,
  .contact-office-inner,
  .contact-directory-grid,
  .impact-feature,
  .impact-feature--flip,
  .prop-duo,
  .impact-duo,
  .impact-ahead { grid-template-columns: 1fr; }
  .biz-head-title--single { white-space: normal; }
  .impact-feature--flip .impact-feature-copy,
  .impact-feature--flip .impact-feature-media { order: 0; }
  .impact-trio,
  .media-news-grid,
  .sust-pillars,
  .sust-trio,
  .sust-stats,
  .sust-goal-grid,
  .sust-partner-grid,
  .lead-grid,
  .career-perks,
  .contact-faq-grid,
  .impact-service-grid,
  .impact-why,
  .impact-serve,
  .impact-steps { grid-template-columns: 1fr 1fr; }
  .contact-touch-body {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .media-mini-story { grid-template-columns: 96px 1fr; }
  .media-mini-story img { width: 96px; height: 84px; }
  .impact-cats { grid-template-columns: 1fr 1fr; }

  .uba-hero-grid,
  .contact-hero-grid,
  .uba-legacy,
  .uba-story,
  .uba-who,
  .uba-mv,
  .uba-ahead { grid-template-columns: 1fr; }

  .uba-legacy-stats { grid-template-columns: 1fr 1fr; }
  .lead-hero-media {
    max-width: 280px;
    margin-inline: auto;
  }
  .lead-panel {
    padding: 32px 28px;
  }
  .hist-panel {
    padding: 32px 28px;
  }
  .uba-hero-grid {
    padding: 32px 28px;
  }
  .hist-duo,
  .hist-biz-duo,
  .hist-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hist-hero-media {
    max-width: 360px;
    margin-inline: auto;
  }
  .lead-panel--intro .lead-panel-head {
    margin-bottom: 16px;
  }
  .uba-quick { grid-template-columns: repeat(3, 1fr); }
  .uba-values { grid-template-columns: repeat(2, 1fr); }
  .uba-news { grid-template-columns: repeat(2, 1fr); }
  .uba-hero-media { aspect-ratio: 16 / 10; }

  .cards { display: flex; gap: 14px; }
  .card { flex: 0 0 min(78vw, 320px); min-height: 400px; }
  .home-biz-cards { display: flex; gap: 14px; }
  .home-biz-card-photo { flex: 0 0 min(78vw, 320px); min-height: 420px; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card--wide {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .footer-cols { grid-template-columns: 1fr 1fr; }
  .lifestyle-copy { padding: 56px 24px 24px; }
  .home-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .home-biz-inner { grid-template-columns: 1fr; gap: 28px; }
  .home-biz-card { position: static; }
  .service-list,
  .service-list--dense,
  .digital-list { grid-template-columns: 1fr; }

  .purpose-banner { padding: 32px 24px; }
  .page-hero { margin: 8px 8px 0; padding: 56px 0 44px; }
}

@media (max-width: 560px) {
  .wrap { width: min(100% - 28px, var(--max)); }
  .nav { width: min(100% - 16px, 1280px); }
  .hero-sky, .digital, .lifestyle, footer { margin-left: 8px; margin-right: 8px; }
  .hero-copy h1 { font-size: 42px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card--wide { grid-column: span 1; }
  .footer-cols { grid-template-columns: 1fr; }

  .impact-wrap { width: min(100% - 28px, 1120px); margin-top: 16px; }
  .impact-hero { padding: 28px; }
  .impact-trio,
  .media-news-grid,
  .impact-service-grid,
  .impact-why,
  .impact-serve,
  .impact-steps,
  .impact-cats { grid-template-columns: 1fr; }
  .home-stats-inner { grid-template-columns: 1fr 1fr; }
  .uba-values--bold { grid-template-columns: 1fr !important; }
  .career-depts-grid,
  .news-cats-grid { grid-template-columns: 1fr; }
  .sust-pillars { grid-template-columns: 1fr; }
  .sust-trio { grid-template-columns: 1fr; }
  .sust-stats { grid-template-columns: 1fr 1fr; }
  .sust-goal-grid,
  .sust-partner-grid,
  .sust-spotlight-list { grid-template-columns: 1fr; }
  .sust-hero--bold,
  .sust-promise,
  .sust-pillars-wrap,
  .sust-spotlight,
  .sust-partners {
    padding: 28px 24px;
  }
  .sust-hero--bold .sust-hero-media {
    transform: none;
  }
  .sust-spotlight-badge {
    position: static;
    display: inline-block;
    margin-bottom: 16px;
  }
  .lead-grid { grid-template-columns: 1fr; }
  .lead-panel {
    padding: 24px 20px;
  }
  .hist-panel {
    padding: 24px 20px;
  }
  .uba-hero-grid {
    padding: 24px 20px;
  }
  .hist-duo,
  .hist-biz-duo,
  .hist-timeline { grid-template-columns: 1fr; }
  .contact-faq-grid { grid-template-columns: 1fr; }
  .contact-directory-grid { grid-template-columns: 1fr; }
  .contact-hero-grid,
  .contact-directory,
  .contact-cta,
  .career-hero,
  .uba-hero-grid {
    padding: 28px 24px;
  }
  .form-row { grid-template-columns: 1fr; }
  .media-mini-story { grid-template-columns: 84px 1fr; }
  .media-mini-story img { width: 84px; height: 76px; }
  .impact-block,
  .impact-feature { padding: 24px; }
  .impact-cta { padding: 36px 24px; }

  .uba-quick { grid-template-columns: repeat(2, 1fr); }
  .home-stats-inner { grid-template-columns: 1fr 1fr; }
  .home-biz-list { grid-template-columns: 1fr; }
  .uba-values--bold { grid-template-columns: repeat(2, 1fr) !important; }
  .hist-intro-split-inner { grid-template-columns: 1fr; }
  .hist-trust-inner { grid-template-columns: 1fr; }
  .hist-future-inner { grid-template-columns: 1fr; }
  .hist-tl-grid { grid-template-columns: repeat(2, 1fr); }
  .hist-ahead-split { grid-template-columns: 1fr; }
  .career-depts-grid { grid-template-columns: repeat(2, 1fr); }
  .news-cats-grid { grid-template-columns: repeat(2, 1fr); }
  .sust-partners-v2-grid { grid-template-columns: repeat(2, 1fr); }
  .book-digital-list { grid-template-columns: 1fr; }
  .book-digital-inner { grid-template-columns: 1fr; }
  .book-digital-visual { display: none; }
  .book-story-inner { grid-template-columns: 1fr; }
  .book-why-grid { grid-template-columns: repeat(2, 1fr); }
  .uba-values,
  .uba-news { grid-template-columns: 1fr; }
  .uba-hero-copy h1 { font-size: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

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

