.coach-grid-card_card__F9y5G {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  min-height: 100%;
  background: var(--c-cream-light);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  overflow: hidden;
  transition: transform var(--dur-base, 200ms) var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)),
    box-shadow var(--dur-base, 200ms) var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)),
    border-color var(--dur-base, 200ms) var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1));
}

/* Lift on hover, and on keyboard focus of the inner trigger (via :has). The
   focus ring is the card's own box-shadow so the card's overflow:hidden — which
   clips the accent bar to the rounded corners — doesn't clip the ring. */
.coach-grid-card_card__F9y5G:hover,
.coach-grid-card_card__F9y5G:has(.coach-grid-card_trigger__WqMX7:focus-visible) {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(30, 20, 10, 0.09), 0 14px 32px rgba(30, 20, 10, 0.08);
  border-color: var(--c-border-mid);
}

.coach-grid-card_card__F9y5G:has(.coach-grid-card_trigger__WqMX7:focus-visible) {
  box-shadow: 0 0 0 3px rgba(100, 130, 44, 0.30), 0 2px 8px rgba(30, 20, 10, 0.09);
}

/* Stretched-link trigger: visually just the coach name, but its ::after overlays
   the entire card so the whole surface is the click target. */
.coach-grid-card_trigger__WqMX7 {
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  text-align: left;
  cursor: pointer;
}

.coach-grid-card_trigger__WqMX7::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.coach-grid-card_trigger__WqMX7:focus-visible {
  outline: none;
}

/* Top accent border — draws in on hover/focus */
.coach-grid-card_accent__f726p {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--c-golden-sand);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 240ms var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1));
  z-index: 2;
}

.coach-grid-card_card__F9y5G:hover .coach-grid-card_accent__f726p,
.coach-grid-card_card__F9y5G:has(.coach-grid-card_trigger__WqMX7:focus-visible) .coach-grid-card_accent__f726p {
  transform: scaleX(1);
}

.coach-grid-card_top__Ul_p_ {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: var(--space-4);
}

/* ── Avatar ────────────────────────────────────────────────────────────── */
.coach-grid-card_avatar__HErRl {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-cream-light);
  font-family: var(--font-heading, "Lora", serif);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.coach-grid-card_avatarInitial__EHHae {
  font-size: 28px;
  line-height: 1;
}

.coach-grid-card_toneForest__IngUT {
  background: var(--c-green-dark);
}

.coach-grid-card_toneAmber____RvR {
  background: var(--c-golden-sand);
}

.coach-grid-card_toneOak__PPd7D {
  background: var(--c-wood-oak);
}

.coach-grid-card_toneSage__g_QIW {
  background: var(--c-warm-amber);
}

/* ── Heading ───────────────────────────────────────────────────────────── */
.coach-grid-card_heading__Dm68P {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  min-width: 0;
}

.coach-grid-card_name__tZtPv {
  font-family: var(--font-heading, "Lora", serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--c-light-head);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0;
}

.coach-grid-card_years__eBOfx {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 14px;
  font-weight: 400;
  color: var(--c-light-mute);
  letter-spacing: 0;
}

.coach-grid-card_styleQuote__KL9Fy {
  font-family: var(--font-sans, "DM Sans", sans-serif);
  font-size: 14px;
  font-weight: 400;
  color: var(--c-light-body);
  line-height: 1.55;
  margin: 0;
  text-wrap: pretty;
}

.coach-grid-card_viewLink__Z_9px {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-golden-sand);
  white-space: nowrap;
  align-self: start;
  margin-top: 2px;
}

/* ── Tags ──────────────────────────────────────────────────────────────── */
.coach-grid-card_tags__oqV5g {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

/* ── Outside of coaching ───────────────────────────────────────────────── */
.coach-grid-card_outside__EPbaq {
  font-family: var(--font-sans, "DM Sans", sans-serif);
  font-size: 13px;
  color: var(--c-light-mute);
  line-height: 1.55;
  margin: 0;
  border-top: 1px solid color-mix(in srgb, var(--c-border) 60%, transparent);
  padding-top: var(--space-4);
}

.coach-grid-card_outsideLabel__a6Vln {
  font-weight: 500;
  color: var(--c-light-body);
}

.coach-grid-card_outsideText__FJer6 {
  color: var(--c-light-mute);
}

/* ── Reduced motion ─────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .coach-grid-card_card__F9y5G,
  .coach-grid-card_accent__f726p {
    transition: none;
  }
  .coach-grid-card_card__F9y5G:hover,
  .coach-grid-card_card__F9y5G:has(.coach-grid-card_trigger__WqMX7:focus-visible) {
    transform: none;
  }
}

@media (max-width: 540px) {
  .coach-grid-card_card__F9y5G {
    padding: 22px 20px 18px;
  }
  .coach-grid-card_top__Ul_p_ {
    grid-template-columns: auto 1fr;
  }
  .coach-grid-card_viewLink__Z_9px {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 4px;
  }
  .coach-grid-card_avatar__HErRl {
    width: 56px;
    height: 56px;
  }
  .coach-grid-card_avatarInitial__EHHae {
    font-size: 24px;
  }
}

.coach-profile-drawer_overlay__9a_e2 {
  position: fixed;
  inset: 0;
  background: rgba(11, 18, 25, 0.35);
  z-index: var(--z-modal, 1000);
  animation: coach-profile-drawer_drawerOverlayFade__0rsjK 0.18s ease;
}

.coach-profile-drawer_drawer__TJ8ma {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(520px, 100vw);
  background: var(--c-cream-light);
  box-shadow: -6px 0 32px rgba(30, 20, 10, 0.16);
  z-index: calc(var(--z-modal, 1000) + 1);
  padding: var(--space-7) var(--space-6) var(--space-8);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-7);
  animation: coach-profile-drawer_drawerSlideIn__D_bpa 0.22s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1));
}

.coach-profile-drawer_drawer__TJ8ma:focus {
  outline: none;
}

.coach-profile-drawer_header__wUnCx {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--c-border);
}

.coach-profile-drawer_closeBtn__KOfGi {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--c-border);
  color: var(--c-light-mute);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.coach-profile-drawer_closeBtn__KOfGi:hover,
.coach-profile-drawer_closeBtn__KOfGi:focus-visible {
  background: var(--c-cream-dark);
  color: var(--c-light-head);
  border-color: var(--c-border-mid);
}

.coach-profile-drawer_closeBtn__KOfGi:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(100, 130, 44, 0.30);
}

/* ── Avatar ────────────────────────────────────────────────────────────── */
.coach-profile-drawer_avatar__oelDT {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-cream-light);
  font-family: var(--font-serif, "Lora", serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-1);
}

.coach-profile-drawer_avatarInitial__soPac {
  font-size: 36px;
  line-height: 1;
}

.coach-profile-drawer_toneForest__CLVKk {
  background: var(--c-green-dark);
  box-shadow: 0 12px 30px -12px color-mix(in srgb, var(--c-green-dark) 70%, transparent);
}

.coach-profile-drawer_toneAmber__69vu_ {
  background: var(--c-golden-sand);
  box-shadow: 0 12px 30px -12px color-mix(in srgb, var(--c-golden-sand) 65%, transparent);
}

.coach-profile-drawer_toneOak__ov40o {
  background: var(--c-wood-oak);
  box-shadow: 0 12px 30px -12px color-mix(in srgb, var(--c-wood-oak) 65%, transparent);
}

.coach-profile-drawer_toneSage__qzRFR {
  background: var(--c-warm-amber);
  box-shadow: 0 12px 30px -12px color-mix(in srgb, var(--c-warm-amber) 65%, transparent);
}

/* ── Heading text ──────────────────────────────────────────────────────── */
.coach-profile-drawer_name__ivy2x {
  font-family: var(--font-heading, "Lora", serif);
  font-size: clamp(26px, 4.2vw, 32px);
  font-weight: 500;
  color: var(--c-light-head);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

.coach-profile-drawer_role__xOcz7 {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 14px;
  font-weight: 400;
  color: var(--c-light-mute);
  margin: 0;
}

/* Body copy → DM Sans (serif reserved for headings + QuoteBubble bodies). */
.coach-profile-drawer_styleQuote__kEfWF {
  font-family: var(--font-sans, "DM Sans", sans-serif);
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--c-light-body);
  line-height: var(--lh-snug);
  margin: var(--space-2) 0 0;
  text-wrap: pretty;
}

/* ── Section ───────────────────────────────────────────────────────────── */
.coach-profile-drawer_section__vYVVk {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.coach-profile-drawer_tags__Z0MLu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

/* ── Testimonials (QuoteBubble owns the bubble chrome + quote marks) ─────── */
.coach-profile-drawer_testimonials__1Wq1X {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* DS QuoteBubble body convention: serif, italic, 14px, line-height 1.65. */
.coach-profile-drawer_tQuote__NkEgi {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-md);
  color: var(--c-light-body);
  line-height: 1.65;
  margin: 0 0 var(--space-3);
}

.coach-profile-drawer_tMeta__PAJHQ {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
}

/* ── Outside of coaching ───────────────────────────────────────────────── */
.coach-profile-drawer_outsideText__GTHnc {
  font-family: var(--font-sans, "DM Sans", sans-serif);
  font-size: var(--fs-md);
  color: var(--c-light-body);
  line-height: var(--lh-normal);
  margin: 0;
}

/* ── CTA ───────────────────────────────────────────────────────────────── */
.coach-profile-drawer_cta__03Vje {
  border-top: 1px solid var(--c-border);
  padding-top: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: auto;
}

.coach-profile-drawer_ctaSub__ByGk_ {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 12px;
  color: var(--c-light-mute);
  text-align: center;
  margin: 0;
}

/* ── Animations ────────────────────────────────────────────────────────── */
@keyframes coach-profile-drawer_drawerOverlayFade__0rsjK {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes coach-profile-drawer_drawerSlideIn__D_bpa {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

/* Staggered content reveal — each section eases up just behind the panel
   slide, so the drawer feels composed rather than dropped in all at once. */
@media (prefers-reduced-motion: no-preference) {
  .coach-profile-drawer_drawer__TJ8ma > * {
    animation: coach-profile-drawer_drawerContentIn__4lW96 0.4s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)) both;
  }
  .coach-profile-drawer_drawer__TJ8ma > *:nth-child(1) { animation-delay: 0.08s; }
  .coach-profile-drawer_drawer__TJ8ma > *:nth-child(2) { animation-delay: 0.14s; }
  .coach-profile-drawer_drawer__TJ8ma > *:nth-child(3) { animation-delay: 0.20s; }
  .coach-profile-drawer_drawer__TJ8ma > *:nth-child(4) { animation-delay: 0.26s; }
  .coach-profile-drawer_drawer__TJ8ma > *:nth-child(5) { animation-delay: 0.32s; }
}

@keyframes coach-profile-drawer_drawerContentIn__4lW96 {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .coach-profile-drawer_overlay__9a_e2,
  .coach-profile-drawer_drawer__TJ8ma {
    animation: coach-profile-drawer_drawerOverlayFade__0rsjK 0.12s ease;
  }
}

@media (max-width: 600px) {
  .coach-profile-drawer_drawer__TJ8ma {
    width: 100vw;
    padding: 24px 22px 32px;
  }
}

.page_page__A31I7 {
  min-height: 100vh;
  background: var(--c-cream-light);
}

.page_header__VZ0_s {
  background: var(--surface-hero, var(--c-cream-light));
  padding: calc(var(--nav-height) + 64px) var(--page-gutter) 56px;
  border-bottom: 1px solid var(--c-border);
}

.page_headerInner__TEiAh {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page_eyebrow__t2kM1 {
  margin-bottom: 6px;
}

.page_heading__8s4I0 {
  font-family: var(--font-heading, "Lora", serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  color: var(--c-light-head);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0;
  text-wrap: balance;
}

.page_lead__wvo0V {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 16px;
  font-weight: 300;
  color: var(--c-light-body);
  line-height: 1.65;
  max-width: 580px;
  margin: 0;
  text-wrap: pretty;
}

.page_count__jou8E {
  font-family: var(--font-mono, "DM Mono", monospace);
  font-size: 11px;
  font-weight: 500;
  color: var(--c-wood-oak);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 8px 0 0;
}

.page_body__7noxw {
  padding: 56px var(--page-gutter) 96px;
}

.page_bodyInner__knwf_ {
  max-width: 1120px;
  margin: 0 auto;
}

.page_grid__EezV8 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.page_gridItem__u9Rlc {
  display: flex;
}

@media (max-width: 540px) {
  .page_header__VZ0_s {
    padding: calc(var(--nav-height) + 40px) var(--page-gutter) 40px;
  }
  .page_body__7noxw {
    padding: 40px var(--page-gutter) 72px;
  }
  .page_grid__EezV8 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Cards ease up in sequence on load — matches the homepage's fade-up language.
   (On-load stagger rather than view() since the small roster sits at the top of
   the page and is usually already in view.) */
@media (prefers-reduced-motion: no-preference) {
  .page_gridItem__u9Rlc {
    animation: page_coachCardIn__Fsyx8 0.5s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)) both;
  }
  .page_gridItem__u9Rlc:nth-child(1) { animation-delay: 0.05s; }
  .page_gridItem__u9Rlc:nth-child(2) { animation-delay: 0.12s; }
  .page_gridItem__u9Rlc:nth-child(3) { animation-delay: 0.19s; }
  .page_gridItem__u9Rlc:nth-child(4) { animation-delay: 0.26s; }
  .page_gridItem__u9Rlc:nth-child(5) { animation-delay: 0.33s; }
  .page_gridItem__u9Rlc:nth-child(6) { animation-delay: 0.40s; }
}

@keyframes page_coachCardIn__Fsyx8 {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

