/* === DARK HERO === */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
  background: var(--navy-deep);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg,
    rgba(13, 27, 42, 0.75) 0%,
    rgba(20, 42, 66, 0.70) 40%,
    rgba(27, 58, 92, 0.65) 100%);
  z-index: 1;
}
.hero-bottom-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg), transparent);
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { animation: none; }
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
.hero-text { max-width: 620px; }
.hero-eyebrow {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero h1 {
  font-family: var(--heading);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--slate-light);
}
.hero-desc {
  font-size: 1.05rem; line-height: 1.7;
  color: var(--slate-light);
  max-width: 50ch;
  margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; align-items: center;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s forwards;
}
@media (max-width: 768px) {
  .hero { min-height: 85dvh; }
  .hero-desc { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary--hero,
  .hero-actions .btn-secondary--hero { text-align: center; }
}

/* === LOGO BAR === */
.logo-bar {
  padding: 3.5rem clamp(1.5rem, 4vw, 3rem);
  max-width: 1400px;
  margin: 0 auto;
}
.logo-bar-label {
  text-align: center;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem 3rem;
  align-items: center;
  justify-items: center;
}
.logo-grid img {
  width: 140px; height: 40px;
  object-fit: contain;
  opacity: 0.3;
  transition: opacity 0.3s;
}
.logo-grid img:hover { opacity: 0.55; }
@media (max-width: 768px) {
  .logo-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 2rem; }
  .logo-grid img { width: 110px; height: 32px; }
  .logo-bar { padding: 2.5rem clamp(1.5rem, 4vw, 3rem); }
  .logo-bar-label { margin-bottom: 1.5rem; }
}

/* === PRACTICE ROWS === */
.practice-list { border-top: 1px solid var(--border); }
.practice-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 3rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.practice-row:hover { padding-left: 1rem; }
.practice-row h3 {
  font-family: var(--heading);
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  font-weight: 400;
  white-space: nowrap;
  transition: color 0.3s;
}
.practice-row:hover h3 { color: var(--navy); }
.practice-row p {
  font-size: 0.9rem; line-height: 1.5;
  color: var(--text-secondary);
  text-align: right;
  max-width: 420px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .practice-row { flex-direction: column; gap: 0.5rem; }
  .practice-row p { text-align: left; max-width: none; }
}

/* === TEAM === */
.team-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.team-layout .section-label,
.team-layout .section-heading,
.team-layout .section-desc { text-align: left; margin-left: 0; margin-right: 0; }
.team-partners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}
.team-card { text-align: center; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); text-decoration: none; color: inherit; display: block; }
.team-card:hover { transform: translateY(-4px); }
.team-avatar {
  position: relative;
  width: 100%;
  max-width: 260px;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #dce3ec, #c8d2de);
  border-radius: 12px;
  margin: 0 auto 1rem;
  overflow: hidden;
  transition: box-shadow 0.4s;
}
.team-card:hover .team-avatar { box-shadow: 0 12px 32px rgba(26, 34, 51, 0.1); }
.team-avatar img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter 0.4s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-card:hover .team-avatar img { filter: grayscale(0%); transform: scale(1.03); }
.team-name { font-family: var(--heading); font-size: 1rem; font-weight: 400; margin-bottom: 0.2rem; }
.team-title { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.04em; transition: color 0.3s; }
.team-card:hover .team-title { color: var(--navy); }
@media (max-width: 768px) {
  .team-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .team-layout .section-label,
  .team-layout .section-heading,
  .team-layout .section-desc { text-align: center; margin-left: auto; margin-right: auto; }
  .team-layout .btn-primary { display: none; }
  .team-partners { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

/* === INSIGHTS CARDS (homepage) === */
.insights-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
}
.insight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.insight-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 34, 51, 0.06);
}
.insight-card.featured { grid-row: 1 / 3; min-height: 380px; background: linear-gradient(180deg, var(--accent-light), var(--bg-card)); }
.insight-date { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.insight-card h3 {
  font-family: var(--heading);
  font-size: 1.2rem; font-weight: 300;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}
.insight-card.featured h3 { font-size: 1.6rem; }
.insight-category { font-size: 0.7rem; color: var(--navy); font-weight: 500; letter-spacing: 0.06em; }
.insights-view-all {
  text-align: center;
  margin-top: 2rem;
}
.insights-view-all a {
  font-size: 0.85rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.insights-view-all a:hover { color: var(--slate-deep); }
@media (max-width: 768px) {
  .insights-grid { grid-template-columns: 1fr; }
  .insight-card.featured { grid-row: auto; min-height: auto; }
}
