/* ============================================================
   Kathi Constanzo, CCIM — Shared stylesheet
   Source of truth for the whole site. All pages link to this.
   ============================================================ */

:root {
  /* CBC blue is ACCENT ONLY — italics, links, focal moments. Never large surfaces. */
  --cbc-blue: #003399;
  /* Primary darks: softer navies that sit easier than CBC blue */
  --ink: #071638;
  --navy: #0f1f4a;
  --navy-warm: #14254f;
  --blue-900: #0a1c47;
  --blue-700: #0a2872;
  --blue-500: #2256c8;
  --blue-400: #4d7ed8;
  --blue-300: #7ba0e3;
  --blue-200: #c2d2ee;
  --blue-100: #dde7f6;
  --blue-50:  #eef3fb;
  --blue-25:  #f6f9fd;
  --cream: #fbf8f2;
  --sand: #efe6d4;
  --gold: #b89968;
  --gold-soft: #d8c39a;
  --text: #0e1936;
  --text-muted: #5a6a85;
  --white: #fff;
  --border: #dde3ee;
  --display: 'Fraunces', Georgia, serif;
  --sans: 'Inter', sans-serif;
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;
  --container: 1280px;
  --container-narrow: 980px;
  --radius: 6px;
  --radius-lg: 12px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--white);
}
img, svg { max-width: 100%; display: block; }
a { color: var(--cbc-blue); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--blue-500); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--s-5); }
.container--narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--s-5); }

/* ===== TYPOGRAPHY ===== */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cbc-blue);
  display: inline-flex; align-items: center; gap: var(--s-2);
}
.eyebrow::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--cbc-blue); }
.eyebrow--light { color: var(--blue-100); }
.eyebrow--light::before { background: var(--blue-100); }
.eyebrow--gold { color: var(--gold); }
.eyebrow--gold::before { background: var(--gold); }
.eyebrow--no-line::before { display: none; }

.text-link {
  color: var(--cbc-blue);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-bottom: 1px solid rgba(20, 63, 156, 0.25);
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.text-link:hover {
  color: var(--gold-soft);
  border-bottom-color: var(--gold-soft);
}
.text-link .arrow { transition: transform .2s var(--ease); }
.text-link:hover .arrow { transform: translateX(3px); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--text);
}
h1 { font-size: clamp(38px, 4.6vw, 60px); font-weight: 300; }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: clamp(22px, 2.4vw, 30px); }
h4 { font-size: 20px; }

p { margin: 0 0 var(--s-4) 0; color: var(--text-muted); }
.lede { font-size: 19px; line-height: 1.65; color: var(--text); max-width: 56ch; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: var(--s-3);
  padding: 14px 28px;
  font-family: var(--sans);
  font-weight: 500; font-size: 14px;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.btn--primary { background: var(--cbc-blue); color: var(--white); }
.btn--primary:hover { background: var(--blue-700); color: var(--white); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--cbc-blue); border-color: var(--blue-200); }
.btn--ghost:hover { background: var(--blue-50); color: var(--cbc-blue); border-color: var(--cbc-blue); }
.btn--ghost-light { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.3); backdrop-filter: blur(8px); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.2); color: var(--white); border-color: var(--gold-soft); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ===== UTILITY BAR ===== */
.utility {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 9px 0;
}
.utility__inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 var(--s-5);
  max-width: var(--container);
  margin: 0 auto;
  gap: var(--s-3);
}
.utility a { color: rgba(255,255,255,0.65); }
.utility a:hover { color: var(--white); }
.utility__cbc { color: var(--blue-200); font-weight: 500; }
@media (max-width: 980px) {
  .utility { display: none; }
}

/* ===== NAV ===== */
.nav {
  background: linear-gradient(180deg, var(--ink) 0%, var(--navy) 100%);
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s-4) var(--s-5);
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  line-height: 1;
  text-decoration: none;
}
.brand__logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: block;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__mark {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.01em;
}
.brand__mark em { font-style: italic; color: var(--blue-200); }
.brand__creds::before { content: ", "; }
.brand__tag {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-200);
  margin-top: 4px;
}
@media (max-width: 720px) {
  .brand__logo { width: 36px; height: 36px; }
  .brand__mark { font-size: 17px; white-space: nowrap; }
  .brand__tag { display: none; }
}
@media (max-width: 380px) {
  .brand__logo { width: 32px; height: 32px; }
  .brand__mark { font-size: 15px; }
}
.nav__menu { display: flex; gap: var(--s-7); align-items: center; }
.nav__item { position: relative; }
.nav__link {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  position: relative;
  transition: color .25s var(--ease);
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer;
}
.nav__link::after {
  content: '';
  position: absolute; left: 0; bottom: -8px; height: 1px; width: 0;
  background: var(--gold);
  transition: width .25s var(--ease);
}
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { width: 100%; }
.nav__link[aria-current="page"] { color: var(--gold); }
.nav__link[aria-current="page"]::after { width: 100%; }
.nav__caret {
  width: 8px; height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s var(--ease);
}
.nav__item:hover .nav__caret,
.nav__item:focus-within .nav__caret { transform: rotate(225deg) translateY(-2px); }

/* Dropdown menu */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: -16px;
  min-width: 280px;
  background: linear-gradient(180deg, var(--ink) 0%, var(--navy) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--s-3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  z-index: 100;
}
/* Bridge — covers the gap between trigger and dropdown so hover doesn't break */
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -16px; left: 0; right: 0;
  height: 16px;
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__sublink {
  display: block;
  padding: var(--s-3) var(--s-4);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  transition: background .15s var(--ease), color .15s var(--ease);
  line-height: 1.4;
}
.nav__sublink-title {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}
.nav__sublink-desc {
  font-size: 12px;
  color: var(--blue-200);
  font-weight: 400;
}
.nav__sublink:hover {
  background: rgba(255,255,255,0.05);
  color: var(--gold-soft);
}
.nav__sublink:hover .nav__sublink-title { color: var(--gold-soft); }
.nav__dropdown-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: var(--s-3);
  padding-top: var(--s-3);
}
.nav__dropdown-footer .nav__sublink {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  padding: var(--s-2) var(--s-4);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  z-index: 101;
  position: relative;
}
.nav__toggle-line {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  margin: 6px auto;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
  transform-origin: center;
}
.nav[data-open="true"] .nav__toggle-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav[data-open="true"] .nav__toggle-line:nth-child(2) { opacity: 0; }
.nav[data-open="true"] .nav__toggle-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav__cta {
  font-size: 13px;
  padding: 10px 20px;
  background: var(--white);
  color: var(--ink);
  border: none;
}
.nav__cta:hover { background: var(--blue-100); color: var(--ink); transform: translateY(-1px); }

/* ===== HERO (homepage) ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 116px);
  max-height: 900px;
  display: flex;
  align-items: center;
  background-color: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1690002122693-bea650f7bdf5?w=2000&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      var(--ink) 0%,
      rgba(7,22,56,0.94) 12%,
      rgba(15,31,74,0.88) 50%,
      rgba(7,22,56,0.94) 90%,
      var(--ink) 100%),
    radial-gradient(ellipse at 85% 30%, rgba(184,153,104,0.08), transparent 55%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--s-7) var(--s-5);
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--s-7);
  align-items: center;
}
.hero__copy { max-width: 620px; }
.hero h1 {
  color: var(--white);
  margin: var(--s-4) 0 var(--s-5);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-shadow: 0 2px 30px rgba(0,0,0,0.2);
}
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero__lede {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  max-width: 56ch;
  margin-bottom: var(--s-6);
  font-weight: 300;
}
.hero__ctas { display: flex; gap: var(--s-3); flex-wrap: wrap; }
.hero .btn--primary { background: var(--white); color: var(--ink); }
.hero .btn--primary:hover { background: var(--blue-100); color: var(--ink); }

.hero__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: calc(100vh - 220px);
  width: auto;
  margin-left: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, var(--blue-700) 100%);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
}
.hero__portrait img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top;
}
.hero__portrait-frame {
  position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.hero__portrait-tag {
  position: absolute;
  bottom: var(--s-5); left: var(--s-5);
  background: rgba(7,22,56,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--radius);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 500;
  line-height: 1.5;
}
.hero__portrait-tag em { font-style: italic; color: var(--gold-soft); font-weight: 400; text-transform: none; letter-spacing: 0; }
.hero__portrait-tag-title {
  display: block;
  margin-top: 3px;
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--blue-200);
}

.hero__cue {
  position: absolute;
  bottom: var(--s-6); left: 50%; transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: var(--s-2);
}
.hero__cue::after {
  content: '';
  display: block;
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
}

/* ===== SUB-PAGE HERO (shorter, single-column) — now with photo bg ===== */
.page-hero {
  position: relative;
  background-color: var(--ink);
  color: var(--white);
  padding: var(--s-9) 0 var(--s-9);
  overflow: hidden;
}
/* Background photo (Unsplash CRE photography) — full opacity, overlay handles the wash */
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
/* Heavy navy overlay so photo whispers through behind the text — matches homepage hero pattern */
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      var(--ink) 0%,
      rgba(7,22,56,0.92) 18%,
      rgba(15,31,74,0.85) 55%,
      rgba(7,22,56,0.92) 88%,
      var(--ink) 100%),
    radial-gradient(ellipse at 85% 30%, rgba(184,153,104,0.08), transparent 55%);
}
.page-hero__inner {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: end;
}
.page-hero__copy { max-width: 600px; }
.page-hero h1 {
  color: var(--white);
  margin: var(--s-4) 0 var(--s-4);
  font-weight: 300;
  letter-spacing: -0.02em;
}
.page-hero h1 em { font-style: italic; color: var(--gold-soft); }
.page-hero__lede {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  max-width: 56ch;
  margin: 0;
  font-weight: 300;
}
.page-hero__crumbs {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--s-5);
}
.page-hero__crumbs a { color: var(--blue-200); }
.page-hero__crumbs a:hover { color: var(--gold-soft); }
.page-hero__crumbs span { margin: 0 var(--s-2); opacity: 0.5; }

/* ===== STUB / COMING-SOON SECTION ===== */
.stub {
  padding: var(--s-10) 0;
  background: var(--blue-25);
}
.stub__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--s-5);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
}
.stub__card {
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: var(--s-7);
}
.stub__card h3 {
  margin: 0 0 var(--s-3);
  color: var(--ink);
}
.stub__card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: var(--s-4);
}
.stub__contact-card {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--s-7);
}
.stub__contact-card h3 {
  color: var(--white);
  margin: 0 0 var(--s-3);
}
.stub__contact-card h3 em { font-style: italic; color: var(--gold-soft); }
.stub__contact-card p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--s-4);
}
.stub__contact-list {
  list-style: none; padding: 0; margin: 0;
}
.stub__contact-list li {
  padding: var(--s-2) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px;
}
.stub__contact-list li:last-child { border-bottom: none; }
.stub__contact-list a { color: var(--gold-soft); font-weight: 500; }

/* Related links (cross-link block under stubs) */
.related {
  background: var(--white);
  padding: var(--s-9) 0 var(--s-10);
  border-top: 1px solid var(--border);
}
.related__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.related h3 {
  font-size: 22px;
  margin: 0 0 var(--s-5);
  color: var(--ink);
}
.related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
.related__card {
  border: 1px solid var(--blue-100);
  border-radius: var(--radius);
  padding: var(--s-5);
  background: var(--white);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
  display: block;
}
.related__card:hover { border-color: var(--gold-soft); transform: translateY(-2px); }
.related__card-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cbc-blue);
  margin-bottom: var(--s-2);
}
.related__card-title {
  font-family: var(--display);
  font-size: 18px;
  color: var(--text);
  margin-bottom: var(--s-2);
}
.related__card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===== CREDENTIAL STRIP ===== */
.creds {
  background: var(--blue-50);
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--blue-100);
}
.creds__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-7);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.cred { display: flex; flex-direction: column; gap: 4px; }
.cred__label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cbc-blue);
  font-weight: 600;
}
.cred__value {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* ===== TRUST ===== */
.trust {
  padding: var(--s-7) 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust__label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--s-5);
  font-weight: 500;
}
.trust__row {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--s-7);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.trust__item {
  font-family: var(--display);
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 400;
}
a.trust__item {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
a.trust__item:hover {
  color: var(--cbc-blue);
  border-bottom-color: var(--blue-200);
}

/* ===== ABOUT ===== */
.about {
  padding: var(--s-10) 0;
  background: var(--blue-25);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--s-9);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.about__photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, var(--blue-300), var(--cbc-blue));
  box-shadow: 0 30px 70px rgba(7,22,56,0.18);
  position: relative;
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__photo-tag {
  position: absolute;
  top: var(--s-5); left: var(--s-5);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: var(--s-2) var(--s-4);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cbc-blue);
  font-weight: 600;
  border-radius: 100px;
}
.about__body h2 { margin: var(--s-4) 0 var(--s-5); }
.about__body h2 em { font-style: italic; color: var(--cbc-blue); }
.about__body p { font-size: 17px; line-height: 1.7; color: var(--text); }

/* ===== SERVICES ===== */
.services {
  padding: var(--s-10) 0 var(--s-9);
  background: var(--blue-25);
}
.services__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: var(--s-7);
  max-width: var(--container);
  margin-left: auto; margin-right: auto;
  padding: 0 var(--s-5);
  gap: var(--s-6);
  flex-wrap: wrap;
}
.services__title h2 { max-width: 18ch; margin-top: var(--s-4); }
.services__title h2 em { font-style: italic; color: var(--cbc-blue); }
.services__intro { font-size: 17px; color: var(--text-muted); max-width: 46ch; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.service {
  background: var(--white);
  padding: var(--s-7);
  border-radius: var(--radius-lg);
  border: 1px solid var(--blue-100);
  display: flex; flex-direction: column;
  gap: var(--s-3);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  min-height: 280px;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(7,22,56,0.08);
  border-color: var(--gold-soft);
}
.service__num {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--cbc-blue);
  letter-spacing: 0.05em;
}
.service h3 { font-size: 26px; color: var(--ink); }
.service__desc { font-size: 15px; line-height: 1.6; color: var(--text-muted); margin: 0; }
.service__link {
  margin-top: auto;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cbc-blue);
  display: inline-flex; align-items: center; gap: var(--s-2);
}

/* ===== STATS ===== */
.stats {
  background: linear-gradient(180deg, var(--navy) 0%, var(--ink) 100%);
  color: var(--white);
  padding: var(--s-9) 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(123,160,227,0.12), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(184,153,104,0.08), transparent 50%);
}
.stats__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.stats__head { text-align: center; margin-bottom: var(--s-8); }
.stats__head h2 { color: var(--white); font-weight: 300; }
.stats__head h2 em { font-style: italic; color: var(--blue-200); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
}
.stat {
  text-align: center;
  padding: var(--s-5);
  border-left: 1px solid rgba(255,255,255,0.12);
}
.stat:first-child { border-left: none; }
.stat__value {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
}
.stat__value em { font-style: italic; color: var(--blue-200); font-size: 36px; }
.stat__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-200);
  margin-top: var(--s-3);
  font-weight: 500;
}

/* ===== TESTIMONIAL ===== */
.testimonial {
  padding: var(--s-10) 0;
  background: var(--blue-50);
}
.testimonial__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--s-5);
  text-align: center;
}
.testimonial__quote-mark {
  font-family: var(--display);
  font-size: 120px;
  font-style: italic;
  color: var(--blue-300);
  line-height: 0.8;
  margin-bottom: var(--s-3);
  opacity: 0.5;
}
.testimonial__text {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.35;
  font-weight: 300;
  color: var(--text);
  margin: 0 0 var(--s-6);
}
.testimonial__text em { font-style: italic; color: var(--cbc-blue); }
.testimonial__author {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
}
.testimonial__role { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ===== FINAL CTA ===== */
.cta {
  position: relative;
  background: linear-gradient(180deg, var(--navy) 0%, var(--ink) 100%);
  color: var(--white);
  padding: var(--s-10) 0;
  overflow: hidden;
}
.cta__bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1690002122693-bea650f7bdf5?w=1800&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
}
.cta__inner {
  position: relative; z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--s-5);
  text-align: center;
}
.cta h2 {
  color: var(--white);
  font-weight: 300;
  margin: var(--s-4) auto var(--s-5);
  max-width: 22ch;
}
.cta h2 em { font-style: italic; color: var(--blue-200); }
.cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 50ch;
  margin: 0 auto var(--s-7);
}
.cta__row { display: flex; justify-content: center; gap: var(--s-3); flex-wrap: wrap; }
.cta .btn--primary { background: var(--white); color: var(--ink); }
.cta .btn--primary:hover { background: var(--gold-soft); color: var(--ink); }

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: var(--s-9) 0 var(--s-5);
}
.footer__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-7);
  margin-bottom: var(--s-8);
}
.footer__logo {
  width: 64px;
  height: 64px;
  display: block;
  margin-bottom: var(--s-4);
}
.footer__brand-mark {
  font-family: var(--display);
  font-size: 22px;
  color: var(--white);
  font-weight: 400;
  line-height: 1;
  margin-bottom: var(--s-2);
  white-space: nowrap;
}
.footer__tagline {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-200);
  line-height: 1;
  margin-bottom: var(--s-5);
}
.footer h5 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 var(--s-4);
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: var(--s-3); }
.footer a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer a:hover { color: var(--white); }
.footer__city {
  color: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: 1px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.footer__city:hover {
  color: var(--gold-soft);
  border-bottom-color: var(--gold-soft);
}
.footer__contact { font-size: 14px; line-height: 1.7; }
.footer__contact strong { color: var(--white); font-weight: 500; display: block; margin-bottom: var(--s-2); }
.footer__legal {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--s-5) var(--s-5) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .hero { display: block; min-height: 0; max-height: none; padding: 0; }
  .hero__inner {
    display: block;
    padding-top: var(--s-7);
    padding-right: var(--s-5);
    padding-bottom: var(--s-8);
    padding-left: var(--s-5);
  }
  .hero__copy { margin-bottom: var(--s-7); }
  .hero .eyebrow--light { display: none; }
  .hero__portrait {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    max-height: none;
    overflow: hidden;
  }
  .hero__portrait-tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 12px 16px;
    background: rgba(7, 22, 56, 0.94);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    line-height: 1.4;
    z-index: 10;
  }
  .hero__portrait-tag-title {
    font-size: 13px;
    line-height: 1.4;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.9);
  }
  .hero__cue { display: none; }
  .page-hero__inner { grid-template-columns: 1fr; }
  .creds__inner { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: var(--s-7); }
  .services__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stub__inner { grid-template-columns: 1fr; }
  .related__grid { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, var(--ink) 0%, var(--navy) 100%);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 88px var(--s-5) var(--s-6);
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    z-index: 100;
    overflow-y: auto;
    box-shadow: -12px 0 40px rgba(0,0,0,0.35);
  }
  .nav[data-open="true"] .nav__menu { transform: translateX(0); }
  .nav__item { width: 100%; }
  .nav__link {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav__link::after { display: none; }
  .nav__caret { display: none; }
  .nav__dropdown {
    position: static;
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 4px 0 var(--s-3) var(--s-4);
    min-width: 0;
    width: 100%;
  }
  .nav__sublink {
    padding: 10px 0;
    border-bottom: none;
  }
  .nav__sublink-title { font-size: 14px; }
  .nav__sublink-desc { font-size: 12px; opacity: 0.7; }
  .nav__dropdown-footer { border-top: 1px solid rgba(255,255,255,0.08); margin-top: var(--s-2); padding-top: var(--s-2); }
  .nav__cta {
    margin-top: var(--s-5);
    text-align: center;
  }
  .nav__contact {
    display: block;
    margin-top: auto;
    padding-top: var(--s-6);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav__contact-label {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue-200);
    margin-bottom: var(--s-2);
  }
  .nav__contact-phone {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    line-height: 1;
  }
  .nav__contact-email {
    font-family: var(--sans);
    font-size: 13px;
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    display: block;
    margin-bottom: var(--s-4);
    word-break: break-all;
  }
  .nav__contact-social {
    display: flex;
    gap: var(--s-3);
  }
  .nav__contact-social a {
    color: rgba(255,255,255,0.65);
    display: inline-flex;
    padding: 6px;
    margin: -6px;
  }
  .nav__contact-social svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
  }
  .nav__contact-social a:hover {
    color: var(--gold-soft);
  }
}
.nav__contact { display: none; }
@media (max-width: 680px) {
  .stat { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding-top: var(--s-5); }
  .stat:first-child { border-top: none; }
  .stats__grid { grid-template-columns: 1fr; gap: var(--s-2); }
  .footer__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LONG-FORM PAGE SECTIONS — bio, journey, affiliation,
   awards lists, community lists, testimonial grid, client roster.
   Used on /about and /clients now. Reusable for /services/*
   and /areas/* once those get content.
   ============================================================ */

/* Generic content section wrapper */
.section {
  padding: var(--s-10) 0;
}
.section--wash { background: var(--blue-25); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--dark { background: linear-gradient(180deg, var(--ink) 0%, var(--navy) 100%); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.85); }
.section--dark .eyebrow { color: var(--gold-soft); }
.section--dark .eyebrow::before { background: var(--gold-soft); }

.section__head { max-width: var(--container); margin: 0 auto var(--s-7); padding: 0 var(--s-5); }
.section__head h2 { margin: var(--s-3) 0 var(--s-3); font-weight: 300; letter-spacing: -0.015em; max-width: 22ch; }
.section__head h2 em { font-style: italic; color: var(--cbc-blue); }
.section--dark .section__head h2 em { color: var(--gold-soft); }
.section__intro { font-size: 17px; line-height: 1.65; color: var(--text-muted); max-width: 65ch; margin: 0; }
.section--dark .section__intro { color: rgba(255,255,255,0.78); }

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

/* Bio: photo + narrative, like home about but expanded */
.bio {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--s-9);
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.bio__photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, var(--blue-700) 100%);
  box-shadow: 0 30px 70px rgba(7,22,56,0.18);
  position: sticky;
  top: 120px;
}
.bio__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.bio__body h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: var(--s-7) 0 var(--s-4);
  color: var(--ink);
}
.bio__body h3:first-child { margin-top: 0; }
.bio__body h3 em { font-style: italic; color: var(--cbc-blue); }
.bio__body p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: var(--s-4);
}
.bio__body p strong { color: var(--ink); font-weight: 600; }
.bio__pullquote {
  margin: var(--s-7) 0;
  padding: var(--s-5) var(--s-6);
  border-left: 3px solid var(--gold);
  background: var(--blue-25);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
}
.bio__pullquote em { font-style: italic; color: var(--cbc-blue); }

/* Affiliation block — CBC/Team Ukropina */
.affiliation {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-9);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.affiliation__copy h2 { color: var(--white); margin-bottom: var(--s-5); max-width: 18ch; }
.affiliation__copy h2 em { font-style: italic; color: var(--gold-soft); }
.affiliation__copy p { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.85); }
.affiliation__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--s-7);
}
.affiliation__card-eyebrow {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-soft); font-weight: 600; margin-bottom: var(--s-3);
}
.affiliation__card h4 {
  font-family: var(--display);
  font-size: 24px;
  color: var(--white);
  font-weight: 400;
  margin: 0 0 var(--s-3);
}
.affiliation__card-list {
  list-style: none; padding: 0; margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}
.affiliation__card-list li { padding: var(--s-2) 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.affiliation__card-list li:last-child { border-bottom: none; }
.affiliation__card-list strong { color: var(--gold-soft); font-weight: 500; }

/* Awards list — 2-column striped */
.awards-list {
  list-style: none;
  margin: 0 auto;
  padding: 0 var(--s-5);
  columns: 2;
  column-gap: var(--s-7);
  max-width: var(--container);
}
.awards-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: var(--s-4);
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--blue-100);
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
  break-inside: avoid;
}
.awards-list .awards-year {
  font-family: var(--display);
  font-weight: 500;
  color: var(--cbc-blue);
  font-size: 16px;
}
.section--dark .awards-list li { border-bottom-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); }
.section--dark .awards-list .awards-year { color: var(--gold-soft); }

/* Community list — clean bullets */
.community-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3) var(--s-7);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.community-list li {
  font-size: 15px;
  color: var(--text);
  padding: var(--s-3) 0;
  padding-left: var(--s-5);
  border-bottom: 1px solid var(--blue-100);
  position: relative;
  line-height: 1.5;
}
.community-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* Family / personal note block */
.personal-note {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--s-5);
  text-align: center;
}
.personal-note h2 { margin-bottom: var(--s-4); }
.personal-note h2 em { font-style: italic; color: var(--cbc-blue); }
.personal-note p {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: var(--text);
  font-weight: 300;
}

/* WSJ feature callout */
.feature-callout {
  background: var(--cream);
  padding: var(--s-7);
  border-radius: var(--radius-lg);
  max-width: var(--container);
  margin: 0 auto;
  border-left: 4px solid var(--gold);
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--s-5);
  align-items: center;
}
.feature-callout__mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 40px;
  color: var(--gold);
  text-align: center;
  line-height: 1;
}
.feature-callout__body h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 var(--s-2);
}
.feature-callout__body p {
  font-family: var(--display);
  font-size: 19px;
  font-style: italic;
  color: var(--ink);
  margin: 0;
  line-height: 1.4;
  font-weight: 400;
}
.feature-callout__body p strong { font-style: normal; font-weight: 500; color: var(--cbc-blue); }

/* Testimonials grid — for /clients */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: var(--s-7);
  display: flex;
  flex-direction: column;
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-soft);
  box-shadow: 0 12px 32px rgba(7,22,56,0.06);
}
.testimonial-card__mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 56px;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: var(--s-2);
  opacity: 0.6;
}
.testimonial-card__text {
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.55;
  color: var(--text);
  font-weight: 300;
  margin: 0 0 var(--s-5);
  flex-grow: 1;
}
.testimonial-card__text em { font-style: italic; color: var(--cbc-blue); }
.testimonial-card__author {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
}
.testimonial-card__role {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  font-style: italic;
  font-family: var(--display);
}

/* Client roster — categorized lists */
.client-roster {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-7);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.client-roster__group h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cbc-blue);
  font-weight: 600;
  margin: 0 0 var(--s-4);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--blue-100);
}
.client-roster__group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.client-roster__group li {
  font-family: var(--display);
  font-size: 16px;
  color: var(--text);
  padding: var(--s-2) 0;
  font-weight: 400;
}

/* Credential summary — top of clients page */
.cred-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.cred-summary__item {
  text-align: center;
  padding: var(--s-5) var(--s-4);
  border-left: 1px solid var(--blue-100);
}
.cred-summary__item:first-child { border-left: none; }
.cred-summary__value {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 300;
  color: var(--cbc-blue);
  line-height: 1;
  letter-spacing: -0.02em;
}
.cred-summary__value em { font-style: italic; color: var(--gold); font-size: 24px; }
.cred-summary__label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: var(--s-3);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 980px) {
  .bio { grid-template-columns: 1fr; gap: var(--s-7); }
  .bio__photo { position: static; max-width: 420px; margin: 0 auto; }
  .affiliation { grid-template-columns: 1fr; gap: var(--s-7); }
  .awards-list { columns: 1; }
  .community-list { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .client-roster { grid-template-columns: 1fr; gap: var(--s-5); }
  .cred-summary { grid-template-columns: repeat(2, 1fr); }
  .cred-summary__item { border-left: none; border-top: 1px solid var(--blue-100); padding-top: var(--s-5); }
  .cred-summary__item:nth-child(-n+2) { border-top: none; }
  .feature-callout { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 680px) {
  .cred-summary { grid-template-columns: 1fr; }
  .cred-summary__item { border-top: none; padding-top: var(--s-4); }
}

/* ============================================================
   PRESS & COVERAGE — used on /clients
   ============================================================ */
.press-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.press-item {
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: var(--s-5) var(--s-6);
  display: block;
  transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.press-item:hover {
  border-color: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(7,22,56,0.06);
}
.press-item__meta {
  display: flex; align-items: center; gap: var(--s-3);
  margin-bottom: var(--s-3);
  flex-wrap: wrap;
}
.press-item__source {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cbc-blue);
  font-weight: 600;
}
.press-item__date {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.press-item__date::before {
  content: '·';
  margin-right: var(--s-2);
  color: var(--text-muted);
}
.press-item__type {
  font-family: var(--display);
  font-style: italic;
  font-size: 12px;
  color: var(--gold);
  margin-left: auto;
}
.press-item__headline {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 var(--s-2);
}
.press-item:hover .press-item__headline { color: var(--cbc-blue); }
.press-item__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 var(--s-3);
}
.press-item__arrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: var(--s-2);
}

/* ============================================================
   COMMUNITY HIGHLIGHT — homepage section
   ============================================================ */
.community-highlight {
  padding: var(--s-10) 0;
  background: var(--cream);
  border-top: 1px solid var(--warm-line, #e6dec8);
}
.community-highlight__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s-9);
  align-items: center;
}
.community-highlight__copy h2 { margin: var(--s-4) 0 var(--s-5); font-weight: 300; }
.community-highlight__copy h2 em { font-style: italic; color: var(--cbc-blue); }
.community-highlight__copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: var(--s-6);
  max-width: 50ch;
}
.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
.community-tile {
  background: var(--white);
  border: 1px solid var(--warm-line, #e6dec8);
  border-radius: var(--radius-lg);
  padding: var(--s-5) var(--s-6);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.community-tile:hover { border-color: var(--gold); transform: translateY(-2px); }
.community-tile__count {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  color: var(--cbc-blue);
  line-height: 1;
  margin-bottom: var(--s-3);
  letter-spacing: -0.01em;
}
.community-tile__count em { font-style: italic; color: var(--gold); }
.community-tile__label {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
}
.community-tile__label strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   IMPACT AREAS — /community page
   ============================================================ */
.impact-areas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.impact-area {
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: var(--s-7);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.impact-area__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-25);
  border-radius: var(--radius);
  color: var(--cbc-blue);
  font-family: var(--display);
  font-size: 24px;
  font-style: italic;
  margin-bottom: var(--s-3);
}
.impact-area h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 var(--s-3);
  letter-spacing: -0.01em;
}
.impact-area h3 em { font-style: italic; color: var(--cbc-blue); }
.impact-area__lede {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 var(--s-4);
}
.impact-area__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--blue-100);
  padding-top: var(--s-4);
}
.impact-area__list li {
  padding: var(--s-2) 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
}
.impact-area__list li::before {
  content: '—';
  color: var(--gold);
  font-weight: 500;
  flex-shrink: 0;
}
.impact-area__list li strong { color: var(--ink); font-weight: 600; }
.impact-area__list li em { font-style: italic; color: var(--text-muted); }

/* Responsive */
@media (max-width: 980px) {
  .press-list { grid-template-columns: 1fr; }
  .community-highlight__inner { grid-template-columns: 1fr; gap: var(--s-7); }
  .community-grid { grid-template-columns: 1fr 1fr; }
  .impact-areas { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .community-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CITY / MARKET PAGES — submarkets, city facts, FAQ
   Used on /areas/* pages. Designed to be evergreen so they
   don't need ongoing updates.
   ============================================================ */

/* Hero photo strip — big landmark photo between hero and content */
.area-photo {
  width: 100%;
  height: 380px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.area-photo__caption {
  position: absolute;
  bottom: var(--s-5); left: 50%;
  transform: translateX(-50%);
  background: rgba(7,22,56,0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  padding: var(--s-3) var(--s-5);
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}

/* "Why Kathi here" block — single column with eyebrow + h2 + body */
.why-here {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.why-here h2 { margin: var(--s-3) 0 var(--s-5); }
.why-here h2 em { font-style: italic; color: var(--cbc-blue); }
.why-here p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: var(--s-4);
}
.why-here p strong { color: var(--ink); font-weight: 600; }

/* Submarkets — corridor cards */
.submarkets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.submarket {
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.submarket:hover { border-color: var(--gold-soft); transform: translateY(-2px); }
.submarket__eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--s-2);
}
.submarket h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 var(--s-3);
  letter-spacing: -0.01em;
}
.submarket h3 em { font-style: italic; color: var(--cbc-blue); }
.submarket__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* Service tiles geo-modified — for "Services in [city]" */
.services-in-city {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.service-tile {
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: var(--s-5);
  display: flex; flex-direction: column;
  gap: var(--s-2);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.service-tile:hover { border-color: var(--gold-soft); transform: translateY(-2px); }
.service-tile__num {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--cbc-blue);
  letter-spacing: 0.05em;
}
.service-tile h4 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.service-tile__arrow {
  margin-top: auto;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cbc-blue);
  font-weight: 600;
  padding-top: var(--s-4);
}

/* City profile — 2-column data with category headers */
.city-profile {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-7);
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.city-fact {
  border-top: 1px solid var(--blue-100);
  padding-top: var(--s-5);
}
.city-fact h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cbc-blue);
  font-weight: 600;
  margin: 0 0 var(--s-3);
}
.city-fact p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 var(--s-3);
}
.city-fact p:last-child { margin-bottom: 0; }
.city-fact ul {
  margin: 0; padding: 0; list-style: none;
}
.city-fact ul li {
  padding: var(--s-2) 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--blue-100);
}
.city-fact ul li:last-child { border-bottom: none; }
.city-fact ul li strong { color: var(--ink); font-weight: 600; }

/* FAQ — CSS-only accordion using <details> */
.faq {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.faq-item {
  border-bottom: 1px solid var(--blue-100);
}
.faq-item:first-child { border-top: 1px solid var(--blue-100); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color .2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--cbc-blue); }
.faq-item summary::after {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--cbc-blue);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform .25s var(--ease), background .2s var(--ease);
}
.faq-item[open] summary::after {
  content: '–';
  background: var(--gold-soft);
  color: var(--ink);
}
.faq-item__body {
  padding: 0 0 var(--s-5) 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  max-width: 70ch;
}
.faq-item__body p { margin: 0 0 var(--s-3); color: var(--text); }
.faq-item__body p:last-child { margin-bottom: 0; }
.faq-item__body a {
  color: var(--cbc-blue);
  border-bottom: 1px solid var(--blue-200);
  font-weight: 500;
}
.faq-item__body a:hover { border-bottom-color: var(--cbc-blue); }

/* Cross-link footer block on city pages */
.area-cross {
  background: var(--blue-25);
  padding: var(--s-9) 0;
  border-top: 1px solid var(--blue-100);
}
.area-cross__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--s-7);
  align-items: center;
}
.area-cross__copy h3 {
  font-size: 24px;
  margin: 0 0 var(--s-3);
  color: var(--ink);
}
.area-cross__copy h3 em { font-style: italic; color: var(--cbc-blue); }
.area-cross__copy p { font-size: 14px; color: var(--text-muted); margin: 0; }
.area-cross__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
.area-cross__link {
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius);
  padding: var(--s-4) var(--s-5);
  display: block;
  transition: border-color .2s var(--ease);
}
.area-cross__link:hover { border-color: var(--gold-soft); }
.area-cross__link-name {
  font-family: var(--display);
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 2px;
}
.area-cross__link-corr {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

@media (max-width: 980px) {
  .area-photo { height: 280px; }
  .submarkets { grid-template-columns: 1fr; }
  .services-in-city { grid-template-columns: repeat(2, 1fr); }
  .city-profile { grid-template-columns: 1fr; gap: var(--s-5); }
  .area-cross__inner { grid-template-columns: 1fr; gap: var(--s-5); }
  .area-cross__links { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .services-in-city { grid-template-columns: 1fr; }
}

/* ============================================================
   VIDEO CARDS — Instagram reel previews
   ============================================================ */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.video-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.video-card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(7,22,56,0.08);
}
.video-card__thumb {
  aspect-ratio: 9 / 16;
  background: linear-gradient(160deg, var(--navy) 0%, var(--blue-700) 100%);
  position: relative;
  overflow: hidden;
}
.video-card__thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  background: var(--ink);
}
.video-card__meta { padding: var(--s-4) var(--s-5) var(--s-5); }
.video-card__title {
  font-family: var(--display);
  font-size: 16px;
  color: var(--ink);
  margin: 0 0 var(--s-2);
  line-height: 1.3;
}
.video-card__cat {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cbc-blue);
  font-weight: 600;
  margin-bottom: var(--s-2);
}
.video-card__arrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ============================================================
   SOCIAL ICONS — utility bar + footer
   ============================================================ */
.social-icons {
  display: inline-flex;
  gap: var(--s-3);
  align-items: center;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  color: currentColor;
  opacity: 0.7;
  transition: opacity .2s var(--ease), background .2s var(--ease);
}
.social-icon:hover {
  opacity: 1;
  background: rgba(255,255,255,0.08);
}
.social-icon svg { width: 15px; height: 15px; fill: currentColor; }
.social-icon--footer { width: 36px; height: 36px; }
.social-icon--footer svg { width: 18px; height: 18px; }

/* "Follow Kathi" CTA block */
.follow-block {
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: var(--s-6) var(--s-7);
  max-width: var(--container-narrow);
  margin: var(--s-7) auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  flex-wrap: wrap;
}
.follow-block__copy h4 {
  font-family: var(--display);
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 var(--s-2);
  font-weight: 500;
}
.follow-block__copy h4 em { font-style: italic; color: var(--cbc-blue); }
.follow-block__copy p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.follow-block__btns {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .videos-grid { grid-template-columns: 1fr; gap: var(--s-3); }
  .follow-block { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   CONTACT PAGE — methods, map, guidance
   ============================================================ */

/* Phone-first headline — biggest, boldest contact signal on the page */
.phone-first {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep, var(--cream)) 100%);
  padding: var(--s-10) 0 var(--s-9);
  text-align: center;
  border-bottom: 1px solid var(--warm-line, var(--blue-100));
}
.phone-first__eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: var(--s-4);
  display: inline-block;
}
.phone-first__number {
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  display: inline-block;
  margin: 0 0 var(--s-5);
  transition: color .25s var(--ease);
}
.phone-first__number:hover { color: var(--cbc-blue); }
.phone-first__lede {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.4;
  color: var(--text);
  max-width: 36ch;
  margin: 0 auto var(--s-6);
  font-weight: 300;
}
.phone-first__lede strong { font-style: normal; color: var(--cbc-blue); font-weight: 500; }
.phone-first__sub {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Contact methods grid */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.contact-method {
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: var(--s-7);
  display: flex; flex-direction: column;
  gap: var(--s-3);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.contact-method:hover {
  border-color: var(--gold-soft);
  transform: translateY(-3px);
}
.contact-method__eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cbc-blue);
  font-weight: 600;
}
.contact-method h3 {
  font-family: var(--display);
  font-size: 22px;
  color: var(--ink);
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.contact-method h3 a {
  color: var(--ink);
  border-bottom: 1px solid var(--blue-200);
}
.contact-method h3 a:hover {
  color: var(--cbc-blue);
  border-bottom-color: var(--cbc-blue);
}
.contact-method__detail {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}
.contact-method__detail strong { color: var(--ink); font-weight: 500; }

/* Map embed */
.map-frame {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.map-frame__inner {
  aspect-ratio: 16 / 7;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--blue-100);
  box-shadow: 0 16px 40px rgba(7,22,56,0.06);
}
.map-frame iframe {
  width: 100%; height: 100%; border: none; display: block;
}

@media (max-width: 980px) {
  .contact-methods { grid-template-columns: 1fr; }
  .map-frame__inner { aspect-ratio: 4 / 3; }
}

/* =============================================
   Professional Affiliations (used on /about)
   ============================================= */
.affiliations {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.affiliations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-7);
}
.affiliation-card {
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  display: flex; flex-direction: column;
  gap: var(--s-3);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.affiliation-card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-2px);
}
.affiliation-card__eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cbc-blue);
  font-weight: 600;
}
.affiliation-card__name {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.affiliation-card__name a {
  color: var(--ink);
  border-bottom: 1px solid var(--blue-200);
}
.affiliation-card__name a:hover {
  color: var(--cbc-blue);
  border-bottom-color: var(--cbc-blue);
}
.affiliation-card__detail {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}
.affiliation-card__detail strong { color: var(--ink); font-weight: 500; }

@media (max-width: 980px) {
  .affiliations__grid { grid-template-columns: 1fr; }
}

/* =============================================
   Footer "Member of" block
   ============================================= */
.footer__member-of {
  max-width: var(--container);
  margin: 0 auto var(--s-6);
  padding: var(--s-6) var(--s-5) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__member-of-label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  margin-bottom: var(--s-4);
}
.footer__member-of-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-7);
  align-items: baseline;
}
.footer__member-of-list li {
  font-family: var(--display);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.005em;
  color: rgba(255,255,255,0.78);
  font-weight: 400;
}
.footer__member-of-list a {
  color: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: 2px;
  font-size: 15px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.footer__member-of-list a:hover {
  color: var(--gold-soft);
  border-bottom-color: var(--gold-soft);
}

@media (max-width: 720px) {
  .footer__member-of-list { gap: var(--s-3) var(--s-5); }
}
