/* ===================================
   The Complexity Perspective
   Base Styles - Accessibility-First
   =================================== */

:root {
  --blue: #2e7ec4;
  --green: #3a8f5c;
  --ink: #1a1a2e;
  --muted: #4a5568;
  --light-text: #6b7280;
  --cream: #f5f7fb;
  --warm-white: #fafcff;
  --soft-blue: #e3eef8;
  --soft-green: #e0f0e6;
  --soft-purple: #bec6d9;
  --border: #d1d8e0;
  --white: #ffffff;
  --focus: #2e7ec4;
  --max-width: 1140px;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---- Reduced motion: kill ALL transitions/animations ---- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---- Base ---- */
html {
  scroll-behavior: smooth;
}

.hero {
  overflow-x: hidden;
}

body {
  font-family: "Tinos", serif;
  background: var(--warm-white);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue);
}
a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 2px;
}

h1,
h2,
h3,
h4 {
  font-family: "Tinos", serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* ---- Skip link (accessibility) ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 6px 6px;
  z-index: 9999;
  font-size: 0.9rem;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

/* Screen-reader only (visually hidden but accessible) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===================================
   Land Acknowledgement
   =================================== */
.land-ack {
  background: var(--soft-purple);
  color: var(--muted);
  text-align: center;
  padding: 0.65rem 2rem;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
}
.land-ack strong {
  color: var(--ink);
  font-weight: 500;
}

/* ===================================
   Navigation
   =================================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 252, 255, 0.95);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: "Tinos", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--green);
}

.nav-links .nav-cta {
  background: var(--green);
  color: var(--white);
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  border-bottom: none;
}
.nav-links .nav-cta:hover {
  background: #327d50;
  color: var(--white);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ink);
  padding: 0.25rem;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
  }
  .nav-links.open {
    display: flex;
  }
}

/* ===================================
   Layout Containers
   =================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 2rem;
}

.section--cream {
  background: var(--cream);
}
.section--white {
  background: var(--white);
}
.section--soft-blue {
  background: var(--soft-blue);
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  max-width: 640px;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  font-weight: 400;
  margin-bottom: 3.5rem;
}

#team .section-title,
.section-intro {
  max-width: 900px;
}

/* ===================================
   Buttons
   =================================== */
.btn {
  display: inline-block;
  padding: 0.8rem 1.75rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
}
.btn--primary:hover {
  background: #327d50;
}

.btn--secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn--secondary:hover {
  border-color: var(--green);
  color: var(--green);
}

/* ===================================
   Hero
   =================================== */
.hero {
  padding: 5rem 2rem 4rem;
  background: var(--cream);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-image {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
}

.hero-image img {
  max-width: 100%;
  height: clamp(400px, 30vw, 520px);
  object-fit: cover;
  border-radius: 12px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
  padding: 0.3rem 0.85rem;
  background: var(--soft-blue);
  border-radius: 4px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-body {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 65ch;
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.85;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-cards {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.hero-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03),
    0 20px 25px -5px rgba(0, 0, 0, 0.02);
}
.hero-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.hero-card p {
  font-size: 0.95rem;
  color: var(--light-text);
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-cards {
    display: none;
  }
}

/* ===================================
   Two-Column Section (Mission, etc.)
   =================================== */
.two-col {
  display: grid;
  grid-template-columns: 2.5fr 1.5fr;
  gap: clamp(2rem, 6vw, 10rem);
  align-items: start;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.blockquote {
  font-family: "Tinos", serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  color: var(--ink);
  border-left: 4px solid var(--green);
  padding-left: 0.8rem;
  margin: 1.5rem 0;
}

.body-text {
  color: var(--muted);
  font-weight: 400;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.85;
  max-width: 65ch;
}

/* ===================================
   Value Chips / Tags
   =================================== */
.chip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  width: 100%;
}

.chip {
  background: var(--soft-blue);
  border-radius: 8px;
  padding: 1.5rem 1.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 400;
}

.chip strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.chip--green {
  background: var(--soft-green);
}
.chip--green strong {
  color: var(--green);
}

.chip p,
.chip {
  color: var(--muted);
}

/* ===================================
   Card Grids (Pillars, Audience, etc.)
   =================================== */
.card-grid {
  display: grid;
  gap: 1.75rem;
}

.card-grid--4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.card-grid--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.card-grid--stacked {
  grid-template-columns: 1fr;
  gap: 3rem;
}

.card.card--green {
  background-color: var(--soft-green);
}
.card.card--purple {
  background-color: var(--soft-purple);
}

@media (max-width: 900px) {
  .card-grid--3 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .card-grid--2 {
    grid-template-columns: 1fr;
  }
}

.card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.5rem;
  background-color: var(--soft-blue);
}
.card--green {
  background: var(--soft-green);
}

.card__number {
  font-family: "Tinos", serif;
  font-size: 2rem;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 0.75rem;
  z-index: 100;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.card p {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.7;
}

.card__list {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.card__list li {
  font-size: 0.85rem;
  color: var(--muted);
  padding-left: 1.1rem;
  position: relative;
}
.card__list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 600;
}

/* ===================================
   Team Cards
   =================================== */
.team-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2.5rem;
  border: 1px solid var(--border);
}

.team-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-direction: column-reverse;
}

.team-card__text-content {
  flex: 1;
}
.team-card__text-content p {
  margin-bottom: 0;
}

.team-card__photo-wrapper {
  width: 60%;
  max-width: 100%;
  flex-shrink: 0;
}

.team-card__photo_nola {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

.team-card__photo_bonnie {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 550px) {
  .team-card__header {
    flex-direction: column-reverse;
    gap: 1rem;
  }
}
.team-card__initials {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Tinos", serif;
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.team-card__initials--blue {
  background: var(--soft-blue);
  color: var(--blue);
}
.team-card__initials--green {
  background: var(--soft-green);
  color: var(--green);
}

.team-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.team-card__role {
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.team-card p {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

.credential {
  font-size: 0.75rem;
  padding: 0.25rem 0.65rem;
  background: var(--soft-blue);
  border-radius: 4px;
  color: var(--blue);
  font-weight: 500;
}

/* ===================================
   Forms
   =================================== */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: "Tinos", serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(46, 126, 196, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-note {
  font-size: 0.82rem;
  color: var(--light-text);
  margin-top: 0.75rem;
}

.form-toggle {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.form-toggle button {
  padding: 0.65rem 1.4rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  font-family: "Tinos", serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
}

.form-toggle button[aria-selected="true"] {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.form-panel {
  display: none;
}
.form-panel.active {
  display: block;
}

/* ===================================
   Newsletter / CTA
   =================================== */
.cta-block {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.cta-block .section-title {
  margin: 0 auto 0.75rem;
}

.cta-block .section-intro {
  margin: 0 auto 2rem;
}

.email-row {
  display: flex;
  gap: 0.75rem;
}

.email-row input {
  flex: 1;
  padding: 0.8rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: "Tinos", serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
}
.email-row input:focus {
  outline: none;
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(46, 126, 196, 0.15);
}

@media (max-width: 600px) {
  .email-row {
    flex-direction: column;
  }
}

/* ===================================
   Podcast Page
   =================================== */
.podcast-header {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.section--tight-bottom {
  padding-bottom: 2rem;
}

.platform-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}
.platform-link:hover {
  border-color: var(--green);
  color: var(--green);
}

.episode-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.episode {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.episode__info {
  flex: 1;
}

.episode__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-text);
  margin-bottom: 0.2rem;
}

.episode__title {
  font-family: "Tinos", serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.35;
}

.episode__meta {
  font-size: 0.8rem;
  color: var(--light-text);
  margin-top: 0.25rem;
}

.episode__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--green);
  text-decoration: none;
  white-space: nowrap;
}
.episode__link:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .episode {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===================================
   Coming Soon / Placeholder
   =================================== */
.placeholder-block {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 540px;
  margin: 0 auto;
}

.placeholder-block h2 {
  margin-bottom: 1rem;
}

.placeholder-block p {
  color: var(--muted);
  font-weight: 300;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ===================================
   Footer
   =================================== */
.site-footer {
  background: var(--soft-purple);
  color: var(--muted);
  padding: 3.5rem 2rem 2.5rem;
}

.site-footer .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  font-family: "Tinos", serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.site-footer p {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 300;
}
.footer-links a:hover {
  color: var(--ink);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--light-text);
  display: flex;
  justify-content: space-between;
  grid-column: 1 / -1;
}

/*Dots*/
.carousel-wrapper {
  display: flex;
  flex-direction: column;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  width: 100%;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(26, 26, 46, 0.2);
  transition: all 0.2s ease;
}

.dot.active {
  width: 18px;
  border-radius: 999px;
  background: var(--ink);
}

.carousel-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ===================================
   Mobile Overrides Cleanup (Max-Width: 768px)
   =================================== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.6rem;
  }
  .site-footer .container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  /* Fix the Skip Link canvas calculation bug */
  .skip-link {
    top: 0;
    left: -10000px;
  }
  .skip-link:focus {
    left: 1rem;
  }

  /* Fixes the grid gap layout breakout */
  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Navigation adjustments */
  .nav-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
  }
  .nav-links.open {
    display: flex;
  }

  /* Hero: mobile presentation layout */
  .hero {
    padding-left: 0;
    padding-right: 0;
  }
  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-cards {
    display: none;
  }

  .hero-image {
    height: auto;
    order: -1;
    justify-content: center;
  }
  .hero-image img {
    max-width: 100%;
    max-height: 280px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero-body {
    font-size: 1rem;
  }

  .section {
    padding-right: 0;
    padding-left: 0;
  }

  /* Team layout and flex gap constraints */
  .team-card {
    padding: 1.75rem;
  }
  .team-card__photo-wrapper {
    width: 100%;
    max-width: 100%;
  }
  .team-card__header {
    flex-direction: column-reverse;
    gap: 1.5rem;
  }

  .carousel-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
  }

  .carousel-track::-webkit-scrollbar {
    display: none;
  }

  .carousel-track .card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    border-radius: 16px;
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
  }
}

@media (min-width: 769px) {
  .carousel-dots {
    display: none;
  }
}

@media (max-width: 600px) {
  .chip strong {
    text-transform: none;
    letter-spacing: 0.06em;
  }

  .chip {
    padding: 1rem;
  }
}

.newsletter-success {
  text-align: center;
  color: var(--green);
  font-weight: 500;
  font-size: 1.1rem;
  padding: 2rem 0;
}
