:root {
  --teal: #44a3b8;
  --teal-deep: #226778;
  --berry: #b02364;
  --berry-deep: #8a1c4f;
  --ink: #1a1a1a;
  --slate: #5c5c5c;
  --stone: #9b9b9b;
  --mist: #f5f7f8;
  --white: #ffffff;
  --gradient: linear-gradient(45deg, #44a3b8 0%, #b02364 100%);
  --max: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Libre Franklin', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo:hover { text-decoration: none; }
.logo-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.logo-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--ink);
  font-weight: 500;
  font-size: 14px;
}
.nav-links a:hover { color: var(--berry); text-decoration: none; }
.nav-links a.active { color: var(--berry); }
.nav-cta {
  background: var(--berry);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease;
}
.nav-cta:hover { background: var(--berry-deep); text-decoration: none; }
@media (max-width: 800px) {
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--berry); color: var(--white); }
.btn-primary:hover { background: var(--berry-deep); text-decoration: none; color: var(--white); }
.btn-secondary { background: transparent; color: var(--teal-deep); border: 1px solid var(--teal-deep); }
.btn-secondary:hover { background: var(--teal-deep); color: var(--white); text-decoration: none; }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { background: rgba(255,255,255,0.9); text-decoration: none; color: var(--ink); }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ===== HERO ===== */
.hero {
  padding: clamp(56px, 10vw, 120px) 0 clamp(56px, 8vw, 96px);
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--berry);
  vertical-align: middle;
  margin-right: 12px;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 16ch;
  margin-bottom: 28px;
}
.hero h1 .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--slate);
  max-width: 60ch;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ===== PAGE HEADER (for inner pages) ===== */
.page-header {
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 5vw, 64px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.page-header .eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.page-header .eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--berry);
}
.page-header h1 {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin-bottom: 24px;
}
.page-header .lead {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--slate);
  max-width: 70ch;
}

/* ===== STATS BAND ===== */
.stats {
  background: var(--gradient);
  color: var(--white);
  padding: clamp(56px, 8vw, 96px) 0;
}
.stats-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.stats-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.25);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 4vw, 48px);
}
@media (max-width: 800px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
.stat-num {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  line-height: 1.45;
  max-width: 22ch;
}
.stats-note {
  margin-top: 56px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: clamp(72px, 10vw, 128px) 0;
}
.section.tight { padding: clamp(56px, 7vw, 80px) 0; }
.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--berry);
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  max-width: 24ch;
  margin-bottom: 24px;
}
.section-lead {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--slate);
  max-width: 60ch;
}
.bg-mist { background: var(--mist); }

/* ===== BRANDS ===== */
.brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 800px) {
  .brands-grid { grid-template-columns: 1fr; }
}
.brand-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.04);
}
.brand-visual {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}
.brand-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.brand-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.brand-name {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.brand-tagline {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.brand-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate);
  margin-bottom: 28px;
  flex: 1;
}
.brand-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
}
.brand-link .arrow { transition: transform 0.2s ease; }
.brand-card:hover .brand-link .arrow { transform: translateX(4px); }

/* Detailed brand sections (brands.html) */
.brand-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 48px);
  margin-bottom: clamp(72px, 8vw, 120px);
  max-width: 900px;
}
.brand-detail:last-child { margin-bottom: 0; }
.brand-detail-visual {
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.brand-detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.brand-detail-content .country-mark {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--berry);
  margin-bottom: 12px;
}
.brand-detail-content h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.brand-detail-content .brand-tag {
  font-size: 17px;
  color: var(--slate);
  margin-bottom: 32px;
}
.brand-detail-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--ink);
}
.brand-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 24px 0;
  margin: 24px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.brand-meta dt {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
}
.brand-meta dd {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}

/* ===== WHY / EDITORIAL CONTENT ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 96px);
  margin-top: 64px;
  align-items: start;
}
@media (max-width: 800px) { .why-grid { grid-template-columns: 1fr; } }
.why-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 20px;
}
.why-body p:first-child::first-letter {
  font-size: 56px;
  font-weight: 700;
  float: left;
  line-height: 0.9;
  margin: 6px 10px 0 0;
  color: var(--berry);
}
.pull-quote {
  border-left: 3px solid var(--berry);
  padding: 16px 0 16px 24px;
  margin: 32px 0;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.005em;
}

/* About-specific narrative spans */
.narrative {
  max-width: 70ch;
  margin: 0 auto;
}
.narrative h2 {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 56px 0 20px;
}
.narrative h2:first-of-type { margin-top: 0; }
.narrative p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: var(--ink);
}

/* ===== PILLARS ===== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 1000px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pillars-grid { grid-template-columns: 1fr; } }
.pillar {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}
.pillar-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--berry);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.pillar h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.25;
}
.pillar p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--slate);
  flex: 1;
}
.pillar-tag {
  margin-top: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ===== REACH (CITIES) ===== */
.reach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  margin-top: 56px;
}
@media (max-width: 800px) { .reach-grid { grid-template-columns: 1fr; } }
.country-block h3 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}
.country-brand {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.city-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.city-list li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 16px;
}
.city-list li:last-child { border-bottom: 1px solid rgba(0,0,0,0.06); }
.city-list .city-name { font-weight: 500; flex: 1; }
.city-list .city-region { font-size: 13px; color: var(--stone); letter-spacing: 0.01em; }

/* Region group on reach page */
.region-group { margin-bottom: 40px; }
.region-group:last-child { margin-bottom: 0; }
.region-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--berry);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.region-cities {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
}
.region-cities li {
  font-size: 15px;
  padding: 4px 0;
  flex: 0 0 50%;
  color: var(--ink);
}
.region-cities li .sub { color: var(--stone); font-size: 12px; margin-left: 6px; }
@media (max-width: 500px) { .region-cities li { flex: 0 0 100%; } }

.reach-country {
  margin-bottom: clamp(64px, 8vw, 96px);
}
.reach-country:last-child { margin-bottom: 0; }
.reach-country-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: end;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--ink);
}
@media (max-width: 700px) { .reach-country-header { grid-template-columns: 1fr; gap: 16px; padding-bottom: 24px; } }
.reach-country-header .country-flag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--berry);
  margin-bottom: 12px;
  display: block;
}
.reach-country-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.reach-country-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.reach-country-stats .s-num {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--ink);
}
.reach-country-stats .s-label {
  font-size: 12px;
  color: var(--slate);
  line-height: 1.4;
}

/* ===== PARTNERS ===== */
.partners { background: var(--mist); padding: 80px 0; }
.partners-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 800px) { .partners-row { grid-template-columns: 1fr; } }
.partners-label {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.5;
  max-width: 32ch;
}
.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 800px) { .partner-logos { justify-content: flex-start; } }
.partner {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  opacity: 0.55;
  transition: opacity 0.2s ease;
}
.partner:hover { opacity: 1; }

/* ===== LEADERSHIP ===== */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.leadership-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 720px;
}
@media (max-width: 800px) { .leadership-grid { grid-template-columns: 1fr; } }
.leader-card {
  border-top: 1px solid var(--ink);
  padding-top: 24px;
}
.leader-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--mist);
  border-radius: 4px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.leader-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.leader-name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.leader-title {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 14px;
  letter-spacing: 0.005em;
}
.leader-bio {
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate);
  font-style: italic;
  opacity: 0.7;
}
.leader-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--teal-deep);
}
.leader-link .arrow { transition: transform 0.2s ease; }
.leader-link:hover { text-decoration: none; }
.leader-link:hover .arrow { transform: translate(2px, -2px); }

/* ===== CAREERS CTA BLOCK ===== */
.careers-cta {
  background: var(--ink);
  color: var(--white);
  padding: clamp(72px, 10vw, 120px) 0;
}
.careers-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 800px) { .careers-inner { grid-template-columns: 1fr; gap: 32px; } }
.careers-inner h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.careers-inner p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
}

/* ===== PRESS LIST ===== */
.press-list {
  display: flex;
  flex-direction: column;
}
.press-item {
  display: grid;
  grid-template-columns: 140px 1fr 100px;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  align-items: baseline;
}
.press-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); }
.press-date {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--slate);
  text-transform: uppercase;
}
.press-content h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-bottom: 6px;
  line-height: 1.3;
}
.press-content h3 a { color: var(--ink); }
.press-content h3 a:hover { color: var(--berry); text-decoration: none; }
.press-outlet { font-size: 13px; color: var(--slate); }
.press-arrow {
  font-size: 18px;
  color: var(--stone);
  justify-self: end;
  transition: color 0.2s ease, transform 0.2s ease;
}
.press-item:hover .press-arrow { color: var(--berry); transform: translateX(3px); }
@media (max-width: 700px) {
  .press-item { grid-template-columns: 1fr; gap: 8px; }
  .press-arrow { display: none; }
}

.empty-state {
  background: var(--mist);
  border-radius: 12px;
  padding: 48px;
  text-align: center;
}
.empty-state p {
  color: var(--slate);
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== CONTACT GRID ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  padding: 32px;
  background: var(--mist);
  border-radius: 12px;
}
.contact-card h3 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 10px;
}
.contact-card .contact-purpose {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.contact-card .contact-email {
  font-size: 17px;
  font-weight: 500;
  color: var(--teal-deep);
  display: inline-block;
  margin-top: 4px;
}
.contact-card p { color: var(--slate); font-size: 14px; line-height: 1.5; }

.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
@media (max-width: 800px) { .offices-grid { grid-template-columns: 1fr; gap: 24px; } }
.office {
  padding-top: 24px;
  border-top: 1px solid var(--ink);
}
.office .office-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--berry);
  margin-bottom: 12px;
}
.office h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.office address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate);
}

/* ===== CAREERS PAGE ===== */
.role-list {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
}
.role-item {
  display: grid;
  grid-template-columns: 1fr 200px 120px;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  align-items: center;
}
.role-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); }
@media (max-width: 700px) {
  .role-item { grid-template-columns: 1fr; gap: 8px; }
}
.role-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.role-meta { font-size: 14px; color: var(--slate); }
.role-cta {
  font-size: 14px;
  font-weight: 500;
  color: var(--teal-deep);
  justify-self: end;
}
@media (max-width: 700px) { .role-cta { justify-self: start; } }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
@media (max-width: 800px) { .values-grid { grid-template-columns: 1fr; gap: 24px; } }
.value h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-bottom: 12px;
  border-top: 2px solid var(--berry);
  padding-top: 16px;
  display: inline-block;
  padding-right: 24px;
}
.value p { font-size: 15px; line-height: 1.65; color: var(--slate); }

/* ===== FOOTER ===== */
.footer {
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate);
  max-width: 36ch;
  margin-top: 16px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 14px;
  color: var(--slate);
}
.footer-col a:hover { color: var(--berry); text-decoration: none; }
.footer-legal {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--stone);
  letter-spacing: 0.01em;
}
.footer-legal a { color: var(--stone); }
.footer-legal a:hover { color: var(--ink); text-decoration: none; }
