/* ─── org-shell.css — shared styles for ET organization/team pages ─── */

/* ── Team hero (extends page-hero-shell.css) ── */
.team-hero .hero-eyebrow { background: rgba(191,87,0,0.18); border-color: rgba(191,87,0,0.3); color: #f9a875; }
.team-hero .hero-title span { color: #f9a875; }

/* ── Scope stats bar ── */
.scope-bar {
  background: #fff;
  border-bottom: 1px solid var(--border, #e2ddd8);
}
.scope-bar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.5rem 3rem;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
}
.scope-stat { display: flex; flex-direction: column; gap: 0.2rem; }
.scope-stat-value {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange, #b35000);
  line-height: 1;
  letter-spacing: -0.03em;
}
.scope-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted, #696969);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Mission band ── */
.mission-band {
  background: var(--warm-gray, #f5f1ec);
  padding: 3rem 0;
}
.mission-band-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 3rem;
}
.mission-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange, #b35000);
  margin-bottom: 0.6rem;
}
.mission-text {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-primary, #1a1a1a);
  max-width: 820px;
  font-weight: 500;
}

/* ── Capabilities section ── */
.capabilities-section {
  padding: 4rem 0;
  background: #fff;
}
.capabilities-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 3rem;
}
.capabilities-header {
  margin-bottom: 2.5rem;
}
.capabilities-header h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary, #1a1a1a);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.capabilities-header p {
  font-size: 0.95rem;
  color: var(--text-muted, #696969);
  line-height: 1.65;
  max-width: 640px;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.cap-card {
  background: var(--warm-gray, #f5f1ec);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border, #e2ddd8);
}
.cap-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: block;
}
.cap-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-primary, #1a1a1a);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.cap-card p {
  font-size: 0.85rem;
  color: var(--text-muted, #696969);
  line-height: 1.65;
}
.cap-card ul {
  margin: 0.5rem 0 0 1rem;
  display: grid;
  gap: 0.3rem;
}
.cap-card ul li {
  font-size: 0.83rem;
  color: var(--text-muted, #696969);
  line-height: 1.5;
}

/* ── Tools band ── */
.tools-band {
  background: #1b2a3b;
  padding: 3rem 0;
}
.tools-band-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}
.tools-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f9a875;
  margin-bottom: 1rem;
}
.tools-band h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}
.tools-band > .tools-band-inner > div:first-child p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  max-width: 260px;
  line-height: 1.6;
}
.tools-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.tool-chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
}

/* ── Org landing: team grid ── */
.org-intro {
  padding: 4rem 0 2rem;
  background: #fff;
}
.org-intro-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 3rem;
}
.org-intro h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary, #1a1a1a);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.org-intro p {
  font-size: 1rem;
  color: var(--text-muted, #696969);
  max-width: 680px;
  line-height: 1.7;
}
.team-grid-section {
  padding: 2rem 0 4rem;
  background: #fff;
}
.team-grid-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 3rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.team-card {
  background: var(--warm-gray, #f5f1ec);
  border: 1px solid var(--border, #e2ddd8);
  border-radius: 14px;
  padding: 1.75rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.team-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
  border-color: var(--orange, #b35000);
}
.team-card-icon {
  font-size: 1.75rem;
  display: block;
}
.team-card-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary, #1a1a1a);
  line-height: 1.3;
}
.team-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted, #696969);
  line-height: 1.65;
  flex: 1;
}
.team-card-arrow {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange, #b35000);
  margin-top: 0.25rem;
}

/* ── Content notice band (for stub pages) ── */
.content-notice {
  background: #fff8f0;
  border-top: 3px solid var(--orange, #bf5700);
  border-bottom: 1px solid #fde8cc;
  padding: 1.5rem 0;
}
.content-notice-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.content-notice-icon { font-size: 1.25rem; margin-top: 0.1rem; flex-shrink: 0; }
.content-notice strong { font-size: 0.88rem; font-weight: 700; color: #8a3a00; display: block; margin-bottom: 0.25rem; }
.content-notice p { font-size: 0.85rem; color: #6b3000; line-height: 1.6; margin: 0; }

/* ── Team footer CTA ── */
.team-cta {
  background: #111;
  padding: 3.5rem 0;
}
.team-cta-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.team-cta h3 { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 0.35rem; }
.team-cta p { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.team-cta-links { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.btn-cta-primary {
  background: var(--orange, #bf5700);
  color: #fff;
  padding: 0.65rem 1.3rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}
.btn-cta-secondary {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  padding: 0.65rem 1.3rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 900px) {
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .tools-band-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .scope-bar-inner { gap: 1.5rem; padding: 1.25rem 1.5rem; }
}
@media (max-width: 600px) {
  .cap-grid, .team-grid { grid-template-columns: 1fr; }
  .capabilities-inner, .mission-band-inner, .tools-band-inner,
  .org-intro-inner, .team-grid-inner, .content-notice-inner, .team-cta-inner { padding: 0 1.25rem; }
  .team-cta-inner { flex-direction: column; align-items: flex-start; }
}
