/* ==========================================================================
   The Mindful Mirror — Stylesheet
   Palette drawn from the brand logo (lotus mark):
   Terracotta #C8704B · Sage #879771 · Olive #6B6C42 · Tan #CEB894 · Ink #3C382D
   ========================================================================== */

:root {
  --terracotta: #C8704B;
  --terracotta-dark: #A85A3A;
  --sage: #879771;
  --sage-dark: #66755A;
  --olive: #6B6C42;
  --olive-dark: #52532F;
  --tan: #CEB894;
  --tan-light: #E4D6BC;
  --cream: #FBF7F0;
  --cream-alt: #F3ECDE;
  --ink: #3C382D;
  --ink-soft: #6B6656;
  --white: #FFFFFF;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-width: 1180px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-soft: 0 12px 32px -16px rgba(60, 56, 45, 0.25);
  --shadow-card: 0 8px 24px -12px rgba(60, 56, 45, 0.18);
}

/* -------------------------------------------------------------------------
   Reset & base
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html:has(:target) { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--olive-dark);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { margin: 0 0 1.1em; }

a { color: var(--tan-light); text-decoration: none; }
a:hover { color: var(--terracotta); }

em, .accent-italic { font-family: var(--font-display); font-style: italic; color: var(--terracotta-dark); }

:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.9rem;
}

.section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}
.section--alt { background: var(--cream-alt); }
.section--olive {
  background: var(--olive-dark);
  color: var(--tan-light);
}
.section--olive h2, .section--olive h3 { color: var(--white); }
.section--olive p { color: var(--tan-light); }

.section-head {
  max-width: 700px;
  margin: 0 0 2.75rem;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* -------------------------------------------------------------------------
   Signature motif: the three-dot ego-state mark from the logo
   (terracotta / olive / sage — Parent, Adult, Child)
   ------------------------------------------------------------------------- */
.pac-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pac-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.pac-dots span:nth-child(1) { background: var(--terracotta); }
.pac-dots span:nth-child(2) { background: var(--olive); }
.pac-dots span:nth-child(3) { background: var(--sage); }

.divider-arc {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: var(--shadow-card);
}
.btn-primary:hover { background: var(--terracotta-dark); color: var(--white); }
.btn-outline {
  background: transparent;
  border-color: var(--olive);
  color: var(--olive-dark);
}
.btn-outline:hover { background: var(--olive); border-color: var(--olive); color: var(--white); }
.btn-ghost-light {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.15); color: var(--white); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* -------------------------------------------------------------------------
   Header / Nav
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(107, 108, 66, 0.15);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--olive-dark);
}
.brand img { height: 90px; width: auto; }
.brand .brand-word .mirror-word { color: var(--terracotta); }

.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.3rem 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--terracotta);
  transition: right 0.25s ease;
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { right: 0; }
.main-nav a[aria-current="page"] { color: var(--terracotta-dark); }

.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--olive-dark);
  margin: 5px 0;
  transition: 0.25s ease;
}

@media (max-width: 880px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(107,108,66,0.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .main-nav.open { max-height: 400px; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 0.5rem 1.5rem 1.2rem; }
  .main-nav li { border-top: 1px solid rgba(107,108,66,0.1); }
  .main-nav a { display: block; padding: 0.85rem 0; }
  .nav-cta .btn-primary { display: none; }
  .nav-toggle { display: block; }
}

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
}
.hero::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -220px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1.5px solid var(--sage);
  opacity: 0.35;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -260px;
  left: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1.5px solid var(--tan);
  opacity: 0.4;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.hero-copy p.lede {
  font-size: 1.15rem;
  max-width: 46ch;
}
.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-art img {
  max-width: 380px;
  filter: drop-shadow(var(--shadow-soft));
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy p.lede { margin-left: auto; margin-right: auto; }
  .btn-row { justify-content: center; }
  .hero-art { order: -1; }
  .hero-art img { max-width: 260px; }
}

/* -------------------------------------------------------------------------
   Cards / grids
   ------------------------------------------------------------------------- */
.grid { display: grid; gap: 1.75rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(107, 108, 66, 0.08);
}
.card h3 { margin-bottom: 0.6rem; }
.card p:last-child { margin-bottom: 0; }

.card--vision { border-top: 4px solid var(--sage); }
.card--mission { border-top: 4px solid var(--terracotta); }

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  background: var(--cream-alt);
  color: var(--terracotta-dark);
}
.icon-badge svg { width: 26px; height: 26px; }

/* Who can attend chips */
.chip-cloud { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.chip {
  background: var(--white);
  border: 1px solid rgba(107,108,66,0.2);
  color: var(--olive-dark);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 600;
}
.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--tan-light);
}
@media (max-width: 620px) { .stats-row { grid-template-columns: 1fr; gap: 2rem; } }

/* Testimonials */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  box-shadow: var(--shadow-card);
  position: relative;
}
.testimonial::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--tan);
  position: absolute;
  top: 0.6rem;
  left: 1.4rem;
  line-height: 1;
}
.testimonial p.quote {
  font-style: italic;
  color: var(--ink);
  position: relative;
  z-index: 1;
  padding-top: 1rem;
}
.testimonial .attribution {
  font-weight: 600;
  color: var(--olive-dark);
  font-size: 0.9rem;
}

/* Founder */
.founder-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 800px) { .founder-grid { grid-template-columns: 1fr; } }
.founder-portrait {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--tan-light), var(--sage) 120%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-align: center;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}
.credential-list { list-style: none; margin: 1.5rem 0; padding: 0; display: grid; gap: 0.7rem; }
.credential-list li { display: flex; gap: 0.7rem; align-items: flex-start; }
.credential-list li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 0.5em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}

/* -------------------------------------------------------------------------
   Services tabs
   ------------------------------------------------------------------------- */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  border-bottom: 2px solid rgba(107,108,66,0.15);
  margin-bottom: 2.5rem;
}
.tab-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink-soft);
  padding: 0.9rem 1.3rem;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.tab-btn:hover { color: var(--olive-dark); }
.tab-btn.active {
  color: var(--terracotta-dark);
  border-bottom-color: var(--terracotta);
}
.tab-panel { display: none; animation: fadein 0.35s ease; }
.tab-panel.active { display: block; }
@keyframes fadein { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.service-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.service-intro {  }

.program-accordion { border-top: 1px solid rgba(107,108,66,0.18); }
.acc-item { border-bottom: 1px solid rgba(107,108,66,0.18); }
.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  text-align: left;
  padding: 1.15rem 0.25rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--olive-dark);
  cursor: pointer;
}
.acc-trigger .plus {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--terracotta);
  color: var(--terracotta-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}
.acc-item.open .acc-trigger .plus { transform: rotate(45deg); }
.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.acc-panel-inner { padding: 0 0.25rem 1.3rem; color: var(--ink-soft); }
.acc-panel-inner ul { margin: 0; padding-left: 1.2rem; }
.acc-panel-inner li { margin-bottom: 0.4rem; }

.subservice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (max-width: 760px) { .subservice-grid { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------------
   TA page — ego state diagram
   ------------------------------------------------------------------------- */
.ego-diagram {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 340px;
  margin: 0 auto;
}
.ego-tier {
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--shadow-card);
}
.ego-tier span.dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.75); flex-shrink: 0; }
.ego-tier.parent { background: var(--terracotta); }
.ego-tier.adult { background: var(--olive); }
.ego-tier.child { background: var(--sage-dark); }

.ta-principle-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.4rem; }
.ta-principle-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: flex-start;
}
.ta-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--tan);
  min-width: 2.2ch;
}

/* -------------------------------------------------------------------------
   Contact form
   ------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-card {
  background: var(--olive-dark);
  color: var(--tan-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-info-card h3 { color: var(--white); }
.contact-info-list { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 1.3rem; }
.contact-info-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-info-list .ci-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-list .ci-icon svg { width: 18px; height: 18px; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 1.2rem; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--olive-dark);
  margin-bottom: 0.4rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid rgba(107,108,66,0.25);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--terracotta);
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.3rem; }
.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  display: none;
}
.form-status.show { display: block; }
.form-status.success { background: rgba(135,151,113,0.2); color: var(--olive-dark); }

/* -------------------------------------------------------------------------
   CTA band
   ------------------------------------------------------------------------- */
.cta-band {
  background: var(--terracotta);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 55ch; margin-left: auto; margin-right: auto; }
.cta-band .btn-row { justify-content: center; }
.cta-band .btn-primary { background: var(--white); color: var(--terracotta-dark); }
.cta-band .btn-primary:hover { background: var(--cream); }
.cta-band .btn-outline { border-color: rgba(255,255,255,0.7); color: var(--white); }
.cta-band .btn-outline:hover { background: rgba(255,255,255,0.15); }

/* -------------------------------------------------------------------------
   Breadcrumb
   ------------------------------------------------------------------------- */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding: 1.2rem 0 0;
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb .sep { margin: 0 0.4rem; }
.breadcrumb .current { color: var(--olive-dark); font-weight: 600; }

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--olive-dark);
  color: var(--tan-light);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; font-size: 1.3rem; }
.footer-brand img { height: 40px; }
.footer-brand span { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); }
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.65rem; }
.site-footer a { color: var(--tan-light); }
.site-footer a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--tan-light);
}
.footer-bottom p {color: var(--tan-light);
}
.footer-brand  p {color: var(--tan-light);
}

/* -------------------------------------------------------------------------
   Utility
   ------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--terracotta);
  color: var(--white);
  padding: 0.8rem 1.2rem;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
.text-center { text-align: center; }
.mt-lg { margin-top: 3rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* -------------------------------------------------------------------------
   Photo Gallery (session / workshop photography)
   ------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/5;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.9rem 1rem 0.7rem;
  background: linear-gradient(180deg, rgba(60,56,45,0) 0%, rgba(60,56,45,0.72) 100%);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

/* Card with photo (used in Services subservice grid) */
.card--photo { padding: 0; overflow: hidden; }
.card--photo .card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.card--photo .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card--photo .card-body { padding: 1.75rem 2rem 2rem; }

/* Inline photo used alongside TA concept explanations */
.concept-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.concept-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.concept-photo-caption {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-align: center;
  font-style: italic;
}
