﻿:root {
  --bg: #0f1115;
  --bg-elevated: #161a22;
  --bg-card: #1a1f2a;
  --text: #e8eaef;
  --text-muted: #9aa3b2;
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.15);
  --gold-gradient-premium: linear-gradient(
    168deg,
    #f5ecd0 0%,
    #e8d48a 16%,
    #c9a227 36%,
    #a87818 54%,
    #e2c86a 72%,
    #b89432 88%,
    #f0dc78 100%
  );
  --gold-gradient-line: linear-gradient(
    90deg,
    transparent 0%,
    rgba(180, 140, 55, 0.35) 25%,
    rgba(212, 188, 120, 0.65) 50%,
    rgba(180, 140, 55, 0.35) 75%,
    transparent 100%
  );
  --border: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --header-h: 80px;
  --page-gutter: clamp(1.25rem, 4vw, 4rem);
  --section-y: clamp(3rem, 6vw, 5.5rem);
  --content-max: 90rem;
  --prose-max: 42rem;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #e8c65a; }
h1, h2, h3, .section-title { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }

.container {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}
.container--content {
  max-width: var(--content-max);
  margin-inline: auto;
}
.narrow,
.prose {
  width: 100%;
  max-width: var(--prose-max);
}
.prose-wide {
  width: 100%;
  max-width: min(56rem, 100%);
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--gold); color: #111; padding: 0.5rem 1rem; z-index: 9999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  width: 100%;
  background: linear-gradient(180deg, rgba(10, 12, 16, 0.97) 0%, rgba(15, 17, 21, 0.9) 100%);
  backdrop-filter: blur(20px) saturate(1.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 40px rgba(0, 0, 0, 0.35);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: clamp(0.75rem, 2vw, 1.5rem);
  width: 100%;
  max-width: none;
}
.header-start {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  flex-shrink: 0;
}
.brand img { width: clamp(160px, 18vw, 240px); }
.brand--mark img { width: clamp(36px, 4vw, 48px); }
.site-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0.2rem;
  margin: 0;
  padding: 0.3rem;
  align-items: center;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.58rem 1rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.site-nav a:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}
.site-nav a.is-active {
  color: #1a1408;
  background: linear-gradient(135deg, #dfc054 0%, var(--gold) 48%, #b8922a 100%);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.28);
}
.header-cta {
  flex-shrink: 0;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.62rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 8px 24px rgba(212, 175, 55, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.header-cta:hover {
  box-shadow:
    0 12px 28px rgba(212, 175, 55, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav-toggle:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.4);
}
.nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after {
  display: block; width: 20px; height: 2px; background: var(--text); margin: 0 auto; content: ""; position: relative;
}
.nav-toggle-bar::before { top: -6px; }
.nav-toggle-bar::after { top: 4px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.35rem; border-radius: 999px; font-weight: 600; font-family: var(--font-display);
  border: 1px solid transparent; cursor: pointer; text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: linear-gradient(135deg, #c9a227, var(--gold)); color: #1a1408; box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25); }
.btn-gold:hover { color: #1a1408; }
.btn-ghost { background: transparent; border-color: var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.875rem; }

/* Reference hero — full-width brand lockup + group companies strip */
.hero-brand {
  position: relative;
  width: 100%;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #0f1115;
  background-image: var(--hero-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 58%;
  overflow: hidden;
}
.hero-brand__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 14, 0.12) 0%, rgba(8, 10, 14, 0.08) 40%, rgba(8, 10, 14, 0.45) 100%),
    linear-gradient(90deg, rgba(8, 10, 14, 0.18) 0%, rgba(8, 10, 14, 0.0) 42%, rgba(8, 10, 14, 0.06) 100%);
  pointer-events: none;
}
.hero-brand__main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding-block: clamp(2rem, 8vh, 5rem) clamp(0.75rem, 2vh, 1.5rem);
}
.hero-brand__lockup {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.15rem, 3.2vw, 2.75rem);
  width: fit-content;
  max-width: min(1180px, 96vw);
  flex-shrink: 0;
}
.hero-brand__mark-wrap {
  flex: 0 0 auto;
  width: clamp(120px, 21vw, 240px);
  aspect-ratio: 1;
  filter: drop-shadow(0 4px 22px rgba(0, 0, 0, 0.38));
}
.hero-brand__mark {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-brand__titles {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(0.1rem, 0.35vw, 0.28rem);
  min-width: 0;
  filter: drop-shadow(0 2px 18px rgba(0, 0, 0, 0.32));
}
.hero-brand__beyond {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.2vw, 4.65rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0.035em;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.42);
}
.hero-brand__next {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.2vw, 4.65rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0.035em;
  background: var(--gold-gradient-premium);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-brand__holdings {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.1vw, 0.85rem);
  width: 100%;
  margin-top: clamp(0.15rem, 0.4vw, 0.3rem);
  font-family: var(--font-display);
  font-size: clamp(0.65rem, 1.05vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.36em;
  line-height: 1;
  color: rgba(232, 228, 220, 0.82);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.38);
}
.hero-brand__holdings::before,
.hero-brand__holdings::after {
  content: "";
  flex: 1;
  max-width: 3.35rem;
  height: 1px;
  background: var(--gold-gradient-line);
}
.hero-brand__tagline {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: clamp(1.25rem, 3.5vh, 2.5rem);
  padding: 0 var(--page-gutter) clamp(1rem, 2.5vw, 1.75rem);
}
.hero-brand__tagline::before,
.hero-brand__tagline::after {
  content: "";
  position: absolute;
  left: var(--page-gutter);
  right: var(--page-gutter);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.18) 18%,
    rgba(212, 175, 55, 0.45) 50%,
    rgba(212, 175, 55, 0.18) 82%,
    transparent 100%
  );
  pointer-events: none;
}
.hero-brand__tagline::before { top: 0; }
.hero-brand__tagline::after { display: none; }
.hero-brand__vision {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding-top: clamp(0.65rem, 1.5vw, 1rem);
  max-width: min(52rem, 92vw);
  font-family: var(--font-display);
  font-size: clamp(0.68rem, 1vw, 0.84rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 1.55;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}
.hero-brand__vision span {
  display: block;
}
.hero-brand__vision strong {
  display: block;
  color: #dcc88a;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
}
@media (min-width: 768px) {
  .hero-brand__vision {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45em;
    line-height: 1.4;
  }
  .hero-brand__vision span,
  .hero-brand__vision strong {
    display: inline;
  }
}
.hero-brand__companies {
  position: relative;
  z-index: 1;
  width: 100%;
  background: rgba(6, 8, 12, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding-block: clamp(1.5rem, 3.5vw, 2.5rem) clamp(1.75rem, 4vw, 2.75rem);
}
.hero-brand__companies-label {
  margin: 0 0 clamp(1.25rem, 3vw, 1.85rem);
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(0.65rem, 0.9vw, 0.78rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.hero-brand__companies-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.35rem, 1vw, 0.75rem);
  align-items: stretch;
  width: 100%;
}
.hero-company {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.85rem, 2vw, 1.35rem) clamp(0.5rem, 1.2vw, 0.85rem);
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-company:last-child { border-right: none; }
.hero-company:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-3px);
}
.hero-company__lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(0.45rem, 1vw, 0.65rem);
  width: 100%;
  max-width: 13rem;
  min-height: clamp(12rem, 18vw, 15.5rem);
  margin-inline: auto;
  text-align: center;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.28));
}
.hero-company__mark-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(72px, 9vw, 104px);
  height: clamp(72px, 9vw, 104px);
  flex-shrink: 0;
}
.hero-company__mark {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.hero-company__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.14rem, 0.4vw, 0.26rem);
  width: 100%;
}
.hero-company__next {
  font-family: var(--font-display);
  font-size: clamp(0.68rem, 1.05vw, 0.86rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}
.hero-company__label {
  font-family: var(--font-display);
  font-size: clamp(0.64rem, 0.98vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.1;
  color: var(--company-accent);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}
.hero-company__line {
  font-family: var(--font-display);
  font-size: clamp(0.54rem, 0.78vw, 0.68rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: grid;
  align-items: end;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 6rem);
  background: var(--bg) center/cover no-repeat;
  background-image: var(--hero-image);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(15,17,21,0.92) 0%, rgba(15,17,21,0.55) 45%, rgba(15,17,21,0.35) 100%),
    linear-gradient(180deg, rgba(15,17,21,0.35) 0%, rgba(15,17,21,0.88) 55%, #0f1115 100%);
}
.hero-content {
  position: relative; z-index: 1;
  width: 100%;
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
.hero-copy {
  width: 100%;
  max-width: min(52rem, 100%);
}
.hero h1 { font-size: clamp(2.25rem, 4.5vw + 1rem, 4.5rem); margin: 0.35rem 0 0; }
.hero-subhead { font-size: clamp(1.15rem, 1.5vw + 0.75rem, 1.85rem); color: #e8eaef; margin: 0; max-width: 36rem; }
.hero-intro { color: var(--text-muted); max-width: 42rem; margin: 0; font-size: clamp(1rem, 0.35vw + 0.95rem, 1.125rem); }
.hero-tagline { font-size: clamp(1.05rem, 1.2vw + 0.75rem, 1.45rem); color: var(--gold); margin: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: clamp(0.7rem, 0.25vw + 0.65rem, 0.8rem); color: var(--text-muted); margin: 0; }

.section {
  width: 100%;
  padding-block: var(--section-y);
}
.section-band {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}
.section-title { font-size: clamp(1.75rem, 2vw + 1rem, 2.75rem); margin: 0 0 0.5rem; }
.section-head {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr;
}
.section-head--split {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: end;
  gap: clamp(1rem, 3vw, 2rem);
}
.section-head p { color: var(--text-muted); margin: 0; font-size: clamp(1rem, 0.35vw + 0.9rem, 1.125rem); }
.lead { font-size: clamp(1.05rem, 0.5vw + 0.95rem, 1.25rem); color: #d5dae3; max-width: 52rem; }
.text-link { font-weight: 600; }
.section-cta { margin-top: clamp(1.5rem, 3vw, 2.5rem); text-align: center; }

.values-grid, .companies-grid, .leadership-grid, .media-showcase {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: 100%;
}
.values-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr)); }
.value-card, .company-card, .leader-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: clamp(1.15rem, 2vw, 1.5rem); box-shadow: var(--shadow);
  height: 100%;
}
.value-card h3 { margin-top: 0; color: var(--gold); }
.companies-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.companies-grid--compact { grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }
.companies-grid--compact .company-card { text-align: center; }
.company-card-logo { min-height: 72px; display: grid; place-items: center; margin-bottom: 0.75rem; }
.company-card-logo img { max-height: 64px; width: auto; }
.company-card-title { margin: 0 0 0.25rem; font-size: 1.05rem; }
.company-card-tagline { color: var(--gold); font-size: 0.9rem; margin: 0 0 0.75rem; }
.company-card-desc { color: var(--text-muted); font-size: 0.95rem; }
.company-card-highlights { margin: 0.75rem 0; padding-left: 1.1rem; color: var(--text-muted); font-size: 0.9rem; }
.company-card { border-top: 3px solid var(--company-accent, var(--gold)); transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.company-card:hover { transform: translateY(-4px); box-shadow: 0 28px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,175,55,0.12); border-top-color: var(--gold); }
.company-card-tagline { color: var(--company-accent, var(--gold)); }
.btn-company {
  display: inline-block; margin: 0.75rem 0 0.5rem; padding: 0.5rem 1rem; font-size: 0.85rem; font-weight: 600;
  border: 1px solid var(--company-accent, var(--gold)); color: var(--company-accent, var(--gold));
  border-radius: 999px; text-decoration: none; transition: background 0.2s, color 0.2s;
}
.btn-company:hover { background: var(--company-accent, var(--gold)); color: var(--bg); }
.btn-company--sm { margin-top: 0.5rem; padding: 0.4rem 0.85rem; font-size: 0.8rem; }
.companies-grid--compact .company-card-tagline { color: var(--company-accent, var(--gold)); }

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  width: 100%;
}
.leadership-mini { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr)); }
.leadership-mini-item { display: flex; gap: 1rem; align-items: center; background: var(--bg-elevated); border-radius: var(--radius); padding: 0.75rem; border: 1px solid var(--border); }
.leadership-mini-item img { width: clamp(72px, 8vw, 96px); border-radius: 8px; flex-shrink: 0; }

.media-showcase { grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr)); }
.media-tile {
  background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius);
  padding: clamp(0.85rem, 2vw, 1.25rem); text-align: center;
  min-height: 100%;
}
.media-tile figcaption { margin-top: 0.75rem; color: var(--text-muted); font-size: 0.85rem; }
.media-tile img { margin: 0 auto; max-height: clamp(56px, 8vw, 88px); object-fit: contain; }

.cta-panel {
  width: 100%;
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(15,17,21,0.2));
  border: 1px solid rgba(212,175,55,0.35); border-radius: calc(var(--radius) + 4px);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}
.cta-panel h2 { margin-top: 0; font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem); }
.cta-panel p { max-width: 42rem; margin-inline: auto; }

.page-hero {
  width: 100%;
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin: 0.35rem 0; font-size: clamp(2rem, 3vw + 1rem, 3.25rem); max-width: 20ch; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
  width: 100%;
}
.contact-form, .contact-aside { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.form-field { margin-bottom: 1rem; }
.form-field label { display: block; margin-bottom: 0.35rem; font-size: 0.9rem; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: var(--bg-elevated); border: 1px solid var(--border); color: var(--text);
  border-radius: 10px; padding: 0.65rem 0.75rem; font: inherit;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid var(--gold-soft); border-color: var(--gold);
}
.form-success { color: #7ddea8; margin-top: 1rem; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { margin-bottom: 1rem; }

.leadership-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr)); }
.leader-signature { width: 100%; border-radius: 10px; margin-bottom: 1rem; border: 1px solid var(--border); }
.leader-role { color: var(--gold); margin-top: -0.25rem; }

.legal-content h2 { font-size: 1.15rem; margin-top: 2rem; }

.site-footer {
  width: 100%;
  margin-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--border);
  background: #0c0e12;
  padding: clamp(2rem, 5vw, 3rem) 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
  width: 100%;
}
.footer-tagline { color: var(--gold); }
.footer-legal, .footer-links a { color: var(--text-muted); text-decoration: none; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-heading { font-family: var(--font-display); font-size: 0.95rem; margin: 0 0 0.75rem; }
.footer-bottom { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 0.85rem; }

.biab-strip {
  margin-top: 2rem; padding: 1.25rem 0; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem;
}
.biab-strip-label {
  margin: 0; font-family: var(--font-display); font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gold);
}
.biab-strip-icons { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0; padding: 0; }
.biab-strip-icons span {
  display: inline-block; padding: 0.35rem 0.65rem; border: 1px solid rgba(212,175,55,0.35);
  border-radius: 999px; font-size: 0.75rem; color: var(--text-muted);
}

.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 190;
  max-width: 640px; margin-inline: auto; padding: 1rem 1.15rem;
  background: #12151c; border: 1px solid rgba(212,175,55,0.35); border-radius: 14px;
  box-shadow: var(--shadow); display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1rem;
}
.cookie-banner p { margin: 0; flex: 1 1 220px; font-size: 0.875rem; color: var(--text-muted); }
.cookie-banner a { color: var(--gold); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

.beyond-bot { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 200; }
.beyond-bot-toggle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.55);
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 25%, rgba(240, 216, 120, 0.22), rgba(15, 17, 21, 0.96) 68%);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(212, 175, 55, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.beyond-bot-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  line-height: 0;
}
.beyond-bot-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.35));
}
.beyond-bot-toggle:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 24px rgba(212, 175, 55, 0.25);
}
.beyond-bot-panel {
  position: absolute; right: 0; bottom: calc(100% + 0.75rem); width: min(360px, 92vw);
  background: #12151c; border: 1px solid rgba(212,175,55,0.35); border-radius: 16px;
  box-shadow: var(--shadow); display: flex; flex-direction: column; max-height: 70vh;
}
.beyond-bot-panel[hidden] { display: none !important; }
.beyond-bot-header { display: flex; justify-content: space-between; align-items: start; padding: 0.85rem 1rem; border-bottom: 1px solid var(--border); }
.beyond-bot-sub { display: block; font-size: 0.75rem; color: var(--text-muted); }
.beyond-bot-close { background: transparent; border: none; color: var(--text); font-size: 1.4rem; cursor: pointer; }
.beyond-bot-messages { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.65rem; }
.bot-msg { padding: 0.65rem 0.75rem; border-radius: 12px; font-size: 0.9rem; max-width: 92%; }
.bot-msg--bot { background: var(--bg-elevated); align-self: flex-start; }
.bot-msg--user { background: var(--gold-soft); border: 1px solid rgba(212,175,55,0.35); align-self: flex-end; }
.beyond-bot-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0 1rem 0.5rem; }
.chip { border: 1px solid var(--border); background: transparent; color: var(--text); border-radius: 999px; padding: 0.35rem 0.65rem; font-size: 0.75rem; cursor: pointer; }
.chip:hover { border-color: var(--gold); color: var(--gold); }
.beyond-bot-form { display: flex; gap: 0.5rem; padding: 0.75rem 1rem; border-top: 1px solid var(--border); }
.beyond-bot-form input { flex: 1; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 999px; color: var(--text); padding: 0.5rem 0.75rem; }
.beyond-bot-wa { text-align: center; padding: 0.65rem 1rem 1rem; font-size: 0.85rem; }

@media (min-width: 1200px) {
  .hero-brand__lockup { justify-content: center; }
  .values-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .companies-grid { grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); }
  .companies-grid--compact { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .media-showcase { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .hero-copy { max-width: min(60rem, 70%); }
}

@media (min-width: 1600px) {
  :root {
    --page-gutter: clamp(2rem, 5vw, 5rem);
  }
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav {
    position: fixed; inset: var(--header-h) 0 auto 0; background: rgba(10, 12, 16, 0.98);
    padding: 1.25rem var(--page-gutter) 1.75rem; border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    transform: translateY(-120%); transition: transform 0.25s ease; flex-direction: column; align-items: stretch;
    backdrop-filter: blur(20px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  .site-nav a {
    font-size: 0.82rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid transparent;
  }
  .site-nav a:hover {
    border-color: rgba(212, 175, 55, 0.15);
    background: rgba(212, 175, 55, 0.06);
  }
  .site-nav a.is-active {
    border-color: rgba(212, 175, 55, 0.25);
  }
  .split, .contact-layout, .footer-grid, .section-head--split { grid-template-columns: 1fr; }
  .page-hero h1 { max-width: none; }
  .hero-brand__companies-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-company:nth-child(2n) { border-right: none; }
  .hero-company:nth-child(-n+4) { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
}

@media (max-width: 480px) {
  .hero-brand__lockup {
    flex-direction: column;
    gap: 0.75rem;
  }
  .hero-brand__titles {
    align-items: center;
    text-align: center;
  }
  .hero-brand__mark-wrap {
    width: clamp(100px, 28vw, 148px);
  }
}

@media (max-width: 520px) {
  .hero-brand__companies-grid { grid-template-columns: 1fr; }
  .hero-company {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .hero-company:last-child { border-bottom: none; }
}
