/* ── CSS custom properties bridging theme.json to patterns ── */
:root {
  --she-teal:        #349F8B;
  --she-teal-deep:   #1F7A6B;
  --she-teal-soft:   #D8ECE6;
  --she-ink:         #14110D;
  --she-ink-2:       #2E2A23;
  --she-ink-3:       #5E574B;
  --she-ink-4:       #968E7D;
  --she-paper:       #F8F4ED;
  --she-paper-2:     #EFE9DC;
  --she-paper-3:     #E4DDC9;
  --she-accent:      #349F8B;
  --she-accent-soft: #D8ECE6;
  --she-rule:        rgba(20,17,13,0.13);
  --she-maxw:        1180px;
  --she-gutter:      clamp(20px, 4vw, 56px);
}

/* Body-level type rendering — smoother weights, better kerning. */
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* When a layout:constrained group sits directly inside an alignfull section,
 * constrain the group itself to the content size — so its children share a
 * single 1180px content column centred in the viewport, instead of each child
 * getting auto-margins relative to the full viewport. */
.alignfull > .wp-block-group.is-layout-constrained {
  max-width: var(--wp--style--global--content-size);
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Remove the WP-injected block-gap above the footer so the dark CTA strip
 * flushes straight into the dark footer with no paper-coloured strip. A
 * 1px hairline separates the two ink areas. */
.wp-site-blocks > footer.wp-block-template-part {
  margin-block-start: 0;
}
.wp-site-blocks > footer.wp-block-template-part > .she-footer {
  border-top: 1px solid rgba(248, 244, 237, 0.15);
}

/* she/section block — constrained mode (default).
 * The block IS the constrained container; centred at 1180px. Full-width mode
 * adds .alignfull and uses the rule above to constrain its inner group. */
.wp-block-she-section:not(.alignfull) {
  max-width: var(--she-maxw);
  margin-left: auto;
  margin-right: auto;
}

/* When a section has rule-top / rule-bottom toggled on, draw the rules at
 * the inner content edge (inset by the section's horizontal gutter) instead
 * of at the box edge. This keeps the rules aligned with the content of
 * neighbouring sections, which sit inside the same gutter padding. */
.wp-block-she-section.she-section-rule-top,
.wp-block-she-section.she-section-rule-bottom {
  position: relative;
  border-top: 0;
  border-bottom: 0;
}
.wp-block-she-section.she-section-rule-top::before,
.wp-block-she-section.she-section-rule-bottom::after {
  content: "";
  position: absolute;
  left: var(--she-gutter);
  right: var(--she-gutter);
  height: 1px;
  background: var(--she-rule);
}
.wp-block-she-section.she-section-rule-top::before { top: 0; }
.wp-block-she-section.she-section-rule-bottom::after { bottom: 0; }
/* On full-width sections, the rule extends to the viewport edges. */
.wp-block-she-section.alignfull.she-section-rule-top::before,
.wp-block-she-section.alignfull.she-section-rule-bottom::after {
  left: 0;
  right: 0;
}
/* Constrained sections no longer carry their own gutter (parent provides it),
 * so the rule sits flush to the section edge. */
.wp-block-she-section:not(.alignfull).she-section-rule-top::before,
.wp-block-she-section:not(.alignfull).she-section-rule-bottom::after {
  left: 0;
  right: 0;
}

/* ── Paragraph defaults (matches design styles.css) ── */
p {
  margin: 0 0 1em;
  color: var(--she-ink-2);
}
p:last-child { margin-bottom: 0; }

/* ── Eyebrow ── */
.she-eyebrow {
  font-family: var(--wp--preset--font-family--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--she-ink-3);
}
.she-eyebrow-teal { color: var(--she-teal); }
.she-eyebrow-teal-deep { color: var(--she-teal-deep); }
.she-eyebrow-paper-50 { color: rgba(255,255,255,0.55); }

/* ── Display heading (hero) ── */
.she-h-display {
  font-family: var(--wp--preset--font-family--display);
  font-weight: 400;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  text-wrap: pretty;
}
/* ── Heading utilities (named scales) ── */
.she-h-1 {
  font-family: var(--wp--preset--font-family--display);
  font-weight: 400;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.012em;
  margin: 0;
  text-wrap: pretty;
}
.she-h-2 {
  font-family: var(--wp--preset--font-family--display);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.008em;
  margin: 0;
  text-wrap: pretty;
}
.she-h-3 {
  font-family: var(--wp--preset--font-family--display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  margin: 0;
}
.she-h-4 {
  font-family: var(--wp--preset--font-family--display);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  margin: 0;
}
.she-h-display em,
.she-h-1 em,
.she-h-2 em {
  font-style: italic;
  color: var(--she-accent);
}
[data-headings="teal"] .she-h-display,
[data-headings="teal"] .she-h-1,
[data-headings="teal"] .she-h-2,
[data-headings="teal"] .she-h-3 { color: var(--she-teal); }
[data-headings="teal"] .she-h-display em { color: var(--she-ink); }

/* ── Lede ── */
.she-lede {
  font-family: var(--wp--preset--font-family--display);
  font-weight: 400;
  font-size: clamp(19px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--she-ink-2);
  max-width: 60ch;
  text-wrap: pretty;
}

/* ── Sticky header (full-width bar, edge-to-edge border) ── */
.wp-block-template-part > .she-header,
header .she-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--she-paper) 88%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--she-rule);
}
.she-header__inner {
  /* Outer width includes the gutter so the inner content area lines up
   * exactly with constrained page sections (which sit at 1180px inside
   * post-content's has-global-padding). */
  max-width: calc(var(--she-maxw) + 2 * var(--she-gutter));
  margin: 0 auto;
  padding: 14px var(--she-gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
@media (max-width: 880px) {
  .she-header__inner {
    grid-template-columns: auto auto;
    gap: 12px;
  }
}

/* ── Brand (hardcoded logo in header) ── */
.she-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--she-ink);
  flex-shrink: 0;
}
.she-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.she-footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.she-brand__text {
  font-family: var(--wp--preset--font-family--display);
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--she-ink-3);
}
.she-brand__text small {
  display: block;
  font-family: var(--wp--preset--font-family--body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--she-ink-3);
  margin-top: 2px;
}

/* ── Nav link hover — targeting WP navigation block rendered HTML ── */
.wp-block-navigation-item .wp-block-navigation-item__content {
  font-size: 14px;
  font-weight: 500;
  color: var(--she-ink-2);
  letter-spacing: 0.005em;
  padding: 6px 0;
  border-bottom: 1.5px solid transparent;
  transition: color .15s, border-color .15s;
  text-decoration: none;
}
.wp-block-navigation-item:hover .wp-block-navigation-item__content {
  color: var(--she-ink);
  border-bottom-color: var(--she-teal);
}
/* When a nav item matches the current page, colour the label teal as well as
 * showing the underline. Targets both the item-level and link-level cues
 * because WP renders aria-current on the <a> while still applying
 * .current-menu-item to the wrapping <li>. */
.wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content,
.wp-block-navigation-item[aria-current="page"] .wp-block-navigation-item__content,
.wp-block-navigation-item .wp-block-navigation-item__content[aria-current="page"] {
  color: var(--she-teal-deep);
  border-bottom-color: var(--she-teal);
}

/* ── Buttons ── */
.wp-block-button__link {
  border-radius: 999px !important;
  font-family: var(--wp--preset--font-family--body);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 24px;
  transition: transform .15s, background .15s;
}
.wp-block-button__link:hover { transform: translateY(-1px); }
.wp-block-button.she-btn-primary .wp-block-button__link {
  background: var(--she-teal);
  color: #fff;
}
.wp-block-button.she-btn-primary .wp-block-button__link:hover {
  background: var(--she-teal-deep);
}
/* Nav CTA — ink background (dark), hover teal-deep (matches design) */
.wp-block-button.she-btn-nav-cta .wp-block-button__link {
  background: var(--she-ink);
  color: var(--she-paper);
  padding: 10px 18px;
  font-size: 14px;
}
.wp-block-button.she-btn-nav-cta .wp-block-button__link:hover {
  background: var(--she-teal-deep);
  transform: none;
}

/* Header CTA (custom block) — same look as the legacy nav CTA but with no
 * inline styles, so the editor never marks it as needing recovery. */
.she-header-cta {
  display: inline-block;
  background: var(--she-ink);
  color: var(--she-paper);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color .15s;
}
.she-header-cta:hover {
  background: var(--she-teal-deep);
  color: var(--she-paper);
}
.wp-block-button.she-btn-ghost .wp-block-button__link {
  background: transparent;
  color: var(--she-ink);
  border: 1px solid var(--she-ink);
}
.wp-block-button.she-btn-ghost .wp-block-button__link:hover {
  background: var(--she-ink);
  color: var(--she-paper);
}
/* Animated arrow appendage — add she-btn-arrow class to a button to get → */
.wp-block-button.she-btn-arrow .wp-block-button__link::after {
  content: "→";
  display: inline-block;
  margin-left: 8px;
  font-size: 17px;
  transition: transform .2s;
}
.wp-block-button.she-btn-arrow .wp-block-button__link:hover::after {
  transform: translateX(3px);
}
/* Smaller button variant */
.wp-block-button.she-btn-sm .wp-block-button__link { font-size: 14px; padding: 8px 18px 10px; }
/* Ghost button on dark backgrounds */
.wp-block-button.she-btn-ghost-dark .wp-block-button__link {
  background: transparent;
  color: var(--she-paper);
  border: 1px solid rgba(255,255,255,0.3);
}
.wp-block-button.she-btn-ghost-dark .wp-block-button__link:hover {
  background: var(--she-paper);
  color: var(--she-ink);
  border-color: var(--she-paper);
}
/* Ink button (dark, paper text) */
.wp-block-button.she-btn-ink .wp-block-button__link {
  background: var(--she-ink);
  color: var(--she-paper);
}
.wp-block-button.she-btn-ink .wp-block-button__link:hover {
  background: var(--she-teal-deep);
}

/* ── Cards ── */
.she-card {
  background: var(--she-paper);
  border: 1px solid var(--she-rule);
  padding: 32px;
  border-radius: 2px;
  transition: border-color .2s, transform .2s;
}
.she-card:hover {
  border-color: var(--she-teal);
  transform: translateY(-2px);
}
.she-card--ink {
  background: var(--she-ink);
  color: var(--she-paper);
  border-color: var(--she-ink);
}

/* ── Prose grid (article) ── */
.she-prose-grid {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
}
@media (max-width: 900px) {
  .she-prose-grid { grid-template-columns: 1fr; }
  .she-prose-side { display: none; }
}
.she-prose-main {
  max-width: 68ch;
}
.she-prose-main p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--she-ink-2);
  margin: 0 0 22px;
}

/* ── Long-form prose (legal pages, accessibility statements, etc.) ── */
.she-prose {
  max-width: var(--she-maxw);
  margin-left: auto;
  margin-right: auto;
}
/* Trim the section's top padding when it wraps a long-form prose group. */
.wp-block-she-section:has(> .she-prose) {
  padding-top: 4vw;
}
.she-prose > :first-child { margin-top: 0; }
.she-prose > :last-child { margin-bottom: 0; }
.she-prose h1,
.she-prose .wp-block-heading[class*="h1"] {
  font-family: var(--wp--preset--font-family--display);
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--she-ink);
  margin: 0 0 24px;
}
.she-prose h2 {
  font-family: var(--wp--preset--font-family--display);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.2;
  color: var(--she-ink);
  margin: 56px 0 16px;
}
.she-prose h3 {
  font-family: var(--wp--preset--font-family--display);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.3;
  color: var(--she-ink);
  margin: 40px 0 12px;
}
.she-prose h2:first-child,
.she-prose h3:first-child { margin-top: 0; }
.she-prose p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--she-ink-2);
  margin: 0 0 22px;
}
.she-prose p:last-child { margin-bottom: 0; }
.she-prose strong { color: var(--she-ink); font-weight: 600; }
.she-prose em { font-style: italic; }
.she-prose a {
  color: var(--she-teal-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .15s;
}
.she-prose a:hover { color: var(--she-accent); }
.she-prose ul,
.she-prose ol {
  margin: 0 0 22px;
  padding-left: 24px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--she-ink-2);
}
.she-prose li { margin: 0 0 10px; }
.she-prose li:last-child { margin-bottom: 0; }
.she-prose li > ul,
.she-prose li > ol { margin: 10px 0 0; }
.she-prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
  background: var(--she-paper-2);
  color: var(--she-ink);
  padding: 1px 6px;
  border-radius: 4px;
}
.she-prose hr {
  border: 0;
  border-top: 1px solid var(--she-rule);
  margin: 48px 0;
}

/* ── 2×2 grid ── */
.she-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 720px) {
  .she-grid-2x2 { grid-template-columns: 1fr; }
}

/* ── Footer ── */
.she-footer {
  background: var(--she-ink);
  color: var(--she-paper);
}
.she-footer a { color: var(--she-paper); }
.she-footer a:hover { color: var(--she-teal); }
.she-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 880px) {
  .she-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .she-footer-grid { grid-template-columns: 1fr; }
}

/* Footer brand block — mirrors header brand */
.she-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.she-footer-brand .she-brand__text { color: rgba(255,255,255,0.72); }
.she-footer-brand .she-brand__text small { color: rgba(255,255,255,0.55); }

/* Footer link lists — strip default list styling */
ul.wp-block-list.she-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
ul.wp-block-list.she-footer-links li { margin: 0; }
ul.wp-block-list.she-footer-links a {
  font-size: 14px;
  text-decoration: none;
}

/* Footer brand tagline + footer column eyebrow heading */
.she-footer-brand__tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 34ch;
  margin: 16px 0 0;
}
.she-footer-col h4.she-eyebrow,
.she-footer-col .she-eyebrow {
  color: rgba(255,255,255,0.55);
  margin: 0 0 10px;
}
.she-footer-col { display: flex; flex-direction: column; gap: 10px; }

/* Footer copyright row — viewport-wide hairline above, content centred
 * vertically between the line and the bottom of the page. */
.she-footer-copyright {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  padding: 32px var(--she-gutter);
  margin-top: 48px;
}
.she-footer-copyright::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: rgba(255,255,255,0.12);
}
.she-footer-copyright p { margin: 0; color: inherit; }
.she-footer-copyright__links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.she-footer-copyright__links a {
  color: inherit;
  text-decoration: none;
}
.she-footer-copyright__links a:hover { color: var(--she-teal); }

/* ── Trusted-by strip ── */
.she-trusted-by {
  border-top: 1px solid var(--she-rule);
  border-bottom: 1px solid var(--she-rule);
  padding: 36px 0;
}
/* The wp:group block already supplies flex + wrap + center via its layout
 * attribute. Just add the gap and uniform vertical alignment. */
.she-logo-strip {
  align-items: center;
  column-gap: clamp(24px, 4vw, 56px) !important;
  row-gap: clamp(20px, 2.5vw, 32px) !important;
}
.she-logo-strip .wp-block-image {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  flex: 0 0 auto;
}
.she-logo-strip .wp-block-image img {
  max-height: 40px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(1);
  transition: opacity 0.2s ease;
}
.she-logo-strip .wp-block-image img:hover {
  opacity: 1;
}

/* ── CTA strip ── */
/* CTA strip — full-bleed dark band at the foot of the page.
 * Two-column grid: text-left, buttons-right (stacked vertically). */
.wp-block-she-cta-strip,
.she-cta-strip {
  background: var(--she-ink);
  color: var(--she-paper);
  padding: clamp(60px, 7vw, 110px) var(--she-gutter);
  margin-bottom: 0;
}
.she-cta-strip__inner {
  max-width: var(--she-maxw);
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: end;
}
.she-cta-strip__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 50ch;
}
.she-cta-strip__eyebrow { margin: 0; }
.she-cta-strip__heading {
  margin: 0;
  font-family: var(--wp--preset--font-family--display);
  font-weight: 400;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--she-paper);
  text-wrap: balance;
}
.she-cta-strip__lede {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(248, 244, 237, 0.78);
  text-wrap: pretty;
  max-width: 50ch;
}
.she-cta-strip__buttons {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.she-cta-strip__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--wp--preset--font-family--body);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
}
.she-cta-strip__btn--primary {
  background: var(--she-teal);
  color: var(--she-paper);
  border: 1px solid var(--she-teal);
}
.she-cta-strip__btn--primary:hover {
  background: var(--she-teal-deep);
  border-color: var(--she-teal-deep);
  color: var(--she-paper);
}
.she-cta-strip__btn--secondary {
  background: transparent;
  color: var(--she-paper);
  border: 1px solid rgba(248, 244, 237, 0.4);
}
.she-cta-strip__btn--secondary:hover {
  border-color: var(--she-paper);
}
.she-cta-strip__btn-arrow { font-size: 18px; line-height: 1; }
@media (max-width: 760px) {
  .she-cta-strip__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }
}

/* ── Pullquote ── */
.she-pullquote.she-section {
  margin-top: 0 !important;
}
.she-pullquote blockquote {
  font-family: var(--wp--preset--font-family--display);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.35;
  font-style: italic;
  text-align: right;
  max-width: 34ch;
  margin: 0 0 0 auto;
}
/* Pullquote figure — right-aligned with avatar circle */
.she-pullquote-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.she-pullquote-figure blockquote {
  margin: 0;
  font-family: var(--wp--preset--font-family--display);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.35;
  color: var(--she-ink);
  font-weight: 400;
  font-style: italic;
  text-wrap: pretty;
  max-width: 34ch;
}
.she-pullquote-figure figcaption {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.she-pullquote-cite {
  font-size: 14px;
  text-align: right;
  display: flex;
  flex-direction: column;
}
.she-pullquote-cite strong {
  color: var(--she-ink);
  font-weight: 600;
}
.she-pullquote-cite span {
  color: var(--she-ink-3);
  font-size: 13px;
}
.she-pullquote-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--she-paper-2);
  flex-shrink: 0;
  border: 1px solid var(--she-rule);
}
img.she-pullquote-avatar,
.she-pullquote-avatar--image,
.she-pullquote-avatar--default {
  object-fit: cover;
  display: block;
  background: transparent;
  border: 1px solid var(--she-rule);
}

/* ── Article drop cap ── */
.she-dropcap::first-letter {
  float: left;
  font-family: var(--wp--preset--font-family--display);
  font-size: 88px;
  line-height: 0.85;
  padding-right: 14px;
  padding-top: 8px;
  font-style: italic;
}

/* ── Section spacing ── */
.she-section { padding: clamp(60px, 7vw, 110px) var(--she-gutter); }
.she-section-tight { padding: clamp(40px, 5vw, 70px) var(--she-gutter); }
/* Constrained sections sit inside post-content's has-global-padding, which
 * already supplies the horizontal gutter — drop the duplicate so content
 * aligns with alignfull sections. */
.wp-block-she-section:not(.alignfull).she-section,
.wp-block-she-section:not(.alignfull).she-section-tight {
  padding-left: 0;
  padding-right: 0;
}
/* Modifier: section without horizontal gutter (used when child handles gutter) */
.she-section.she-section-flush { padding-left: 0; padding-right: 0; }
.she-section-pt-0,
.she-section-tight.she-section-pt-0 { padding-top: 0; }
.she-section-rule-bottom { border-bottom: 1px solid var(--she-rule); }
.she-section-rule-tb {
  border-top: 1px solid var(--she-rule);
  border-bottom: 1px solid var(--she-rule);
}

/* Press list (about page) — wraps a stack of she/press-row blocks. */
.she-press-list {
  display: flex;
  flex-direction: column;
}
.she-press-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 40px;
  gap: 24px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--she-rule);
  text-decoration: none;
  color: inherit;
}
.she-press-list > .she-press-row:first-child {
  border-top: 1px solid var(--she-ink);
}
.she-press-list > .she-press-row:last-child {
  border-bottom: 0;
}
.she-press-row--linked:hover .she-press-row__name {
  color: var(--she-teal-deep);
}
.she-press-row__kind {
  color: var(--she-teal-deep);
}
.she-press-row__main {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.she-press-row__name {
  font-family: var(--wp--preset--font-family--display);
  font-size: 18px;
  color: var(--she-ink);
}
.she-press-row__detail {
  font-size: 13px;
  color: var(--she-ink-3);
}
.she-press-row__arrow {
  color: var(--she-ink-3);
  text-align: right;
}
@media (max-width: 600px) {
  .she-press-row {
    grid-template-columns: 1fr 32px;
  }
  .she-press-row__kind {
    grid-column: 1 / -1;
    margin-bottom: 4px;
  }
}

/* Principles grid (about page) — wraps a grid of she/principle-card blocks.
 * Outer top + left rules combine with each card's bottom + right to draw a
 * complete hairline grid around every cell. */
.she-principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  border-top: 1px solid var(--she-rule);
  border-left: 1px solid var(--she-rule);
}
.she-principle-card {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 36px);
  border-right: 1px solid var(--she-rule);
  border-bottom: 1px solid var(--she-rule);
}
.she-principle-card__number {
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  font-size: 14px;
  color: var(--she-accent);
  margin-bottom: 16px;
}
.she-principle-card__heading {
  font-weight: 400;
  color: var(--she-ink);
  margin: 0 0 14px;
  text-wrap: balance;
}
.she-principle-card__body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--she-ink-2);
  margin: 0;
  text-wrap: pretty;
}

/* Image grid (about page) — four figures across a 12-column grid.
 * Spans and placeholder variants are position-driven. Each media keeps a
 * 4/3 aspect ratio so heights vary by span — the staggered editorial layout. */
.she-image-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(12px, 1.5vw, 24px);
}
.she-image-grid__figure {
  margin: 0;
}
.she-image-grid__figure:nth-child(1) { grid-column: span 7; }
.she-image-grid__figure:nth-child(2) { grid-column: span 5; }
.she-image-grid__figure:nth-child(3) { grid-column: span 5; }
.she-image-grid__figure:nth-child(4) { grid-column: span 7; }
.she-image-grid__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  box-sizing: border-box;
}
.she-image-grid__figure:nth-child(-n+2) .she-image-grid__media { min-height: 280px; }
.she-image-grid__figure:nth-child(n+3) .she-image-grid__media { min-height: 240px; }
.she-image-grid__figure:nth-child(2) .she-image-grid__media.she-imgph {
  background: var(--she-teal-soft);
  color: var(--she-teal-deep);
}
.she-image-grid__figure:nth-child(4) .she-image-grid__media.she-imgph {
  background: var(--she-accent-soft);
}
.she-image-grid__caption {
  margin-top: 10px;
}
@media (max-width: 600px) {
  .she-image-grid__figure:nth-child(n) {
    grid-column: 1 / -1;
  }
}

/* List + image — two-column composition: text left (60%), image right (40%). */
.she-list-image {
  display: grid;
  grid-template-columns: minmax(0, 60fr) minmax(0, 40fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}
.she-list-image__body {
  display: flex;
  flex-direction: column;
}
.she-list-image__eyebrow {
  margin-bottom: 14px;
}
.she-list-image__heading {
  margin: 0 0 32px;
  max-width: 18ch;
}
.she-list-image__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.she-list-image__item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  position: relative;
}
.she-list-image__number {
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  font-size: 14px;
  color: var(--she-accent);
  flex: 0 0 32px;
}
.she-list-image__body-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--she-ink-2);
  text-wrap: pretty;
  max-width: 44ch;
  flex: 1 1 auto;
}
.she-list-image__add {
  margin-top: 20px;
  align-self: flex-start;
}
.she-list-image__remove {
  opacity: 0.6;
}
.she-list-image__remove:hover { opacity: 1; }
.she-list-image__figure {
  margin: 0;
}
.she-list-image__media {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  box-sizing: border-box;
}
.she-list-image__caption {
  margin-top: 14px;
}
@media (max-width: 720px) {
  .she-list-image {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .she-list-image__heading {
    max-width: none;
  }
}

/* Image + quote — two-column composition: image left (40%), quote right (60%). */
.she-image-quote {
  display: grid;
  grid-template-columns: minmax(0, 40fr) minmax(0, 60fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}
.she-image-quote__figure {
  margin: 0;
}
.she-image-quote__media {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  box-sizing: border-box;
}
.she-image-quote__caption {
  margin-top: 14px;
}
.she-image-quote__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.she-image-quote__quote {
  margin: 0;
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  color: var(--she-ink);
  text-wrap: pretty;
  max-width: 34ch;
}
.she-image-quote__attribution {
  color: var(--she-ink-3);
}
@media (max-width: 720px) {
  .she-image-quote {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .she-image-quote__quote {
    max-width: none;
  }
}

/* Timeline (about page) — wraps a stack of she/timeline-row blocks. */
.she-timeline {
  border-top: 1px solid var(--she-ink);
}
.she-timeline-row {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  border-bottom: 1px solid var(--she-rule);
}
.she-timeline > .she-timeline-row:last-child {
  border-bottom: 0;
}
.she-timeline-meta {
  padding: 32px 32px 32px 0;
  border-right: 1px solid var(--she-rule);
}
.she-timeline-content {
  padding: 32px 0 32px 32px;
}
@media (max-width: 720px) {
  .she-timeline-row { grid-template-columns: 1fr; }
  .she-timeline-meta { border-right: 0; padding: 28px 0 0; }
  .she-timeline-content { padding: 14px 0 28px; }
}
.she-timeline-duration {
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  font-size: 13px;
  color: var(--she-accent);
  margin: 0 0 8px;
  letter-spacing: 0.04em;
}
.she-timeline-years {
  font-family: var(--wp--preset--font-family--display);
  font-size: 22px;
  color: var(--she-ink);
  margin: 0;
}
.she-timeline-place {
  font-size: 12px;
  color: var(--she-ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 4px 0 0;
}
.she-timeline-title {
  font-family: var(--wp--preset--font-family--display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  margin: 0 0 12px;
  color: var(--she-ink);
}
.she-timeline-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--she-ink-2);
  margin: 0;
  max-width: 60ch;
}

/* Stats strip layout */
.she-stats-strip {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 3vw, 48px);
  justify-content: space-between;
  align-items: flex-start;
}
.she-stats-strip > .she-stat-cell {
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Header nav: desktop ≥ 881px, hamburger overlay ≤ 880px ── */
.wp-block-navigation.she-nav-mobile { display: none !important; }

@media (max-width: 880px) {
  .wp-block-navigation.she-nav-desktop { display: none !important; }
  .she-nav-cta { display: none !important; }
  .wp-block-navigation.she-nav-mobile { display: block !important; justify-self: end; }

  /* Move the header CTA into the overlay (anchored to the bottom) when open */
  .she-header:has(.wp-block-navigation__responsive-container.is-menu-open) .she-nav-cta {
    display: flex !important;
    position: fixed;
    left: clamp(24px, 6vw, 56px);
    right: clamp(24px, 6vw, 56px);
    bottom: calc(env(safe-area-inset-bottom, 0px) + clamp(24px, 6vw, 56px));
    z-index: 101;
  }
  .she-header:has(.wp-block-navigation__responsive-container.is-menu-open) .she-nav-cta .wp-block-button,
  .she-header:has(.wp-block-navigation__responsive-container.is-menu-open) .she-nav-cta .wp-block-button__link,
  .she-header:has(.wp-block-navigation__responsive-container.is-menu-open) .she-nav-cta .she-header-cta {
    width: 100%;
    text-align: center;
  }
  .she-header:has(.wp-block-navigation__responsive-container.is-menu-open) .she-nav-cta .wp-block-button__link,
  .she-header:has(.wp-block-navigation__responsive-container.is-menu-open) .she-nav-cta .she-header-cta {
    padding: 16px 24px;
    font-size: 16px;
  }
}

/* Hamburger button styling — match brand ink, not the WP default blue */
.she-nav-mobile .wp-block-navigation__responsive-container-open {
  color: var(--she-ink);
  padding: 6px;
  background: transparent;
  border: 0;
}
.she-nav-mobile .wp-block-navigation__responsive-container-open svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Release the header's backdrop-filter containing block when the menu is open,
 * so the fixed-position overlay can cover the viewport instead of being
 * trapped inside the sticky header. */
.wp-block-template-part > .she-header:has(.wp-block-navigation__responsive-container.is-menu-open),
header .she-header:has(.wp-block-navigation__responsive-container.is-menu-open) {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Overlay panel — paper background, full viewport, generous padding.
 * box-sizing must be border-box, otherwise WP's `width: 100vw` + our padding
 * makes the container 48px wider than the viewport and pushes content offscreen. */
.she-nav-mobile .wp-block-navigation__responsive-container.is-menu-open {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  box-sizing: border-box !important;
  background: var(--she-paper) !important;
  color: var(--she-ink) !important;
  padding: clamp(64px, 12vw, 96px) clamp(24px, 6vw, 56px) clamp(120px, 18vw, 160px) !important;
  z-index: 100;
  overflow-y: auto;
}
.she-nav-mobile .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container,
.wp-block-navigation.she-nav-mobile .wp-block-navigation__responsive-container.is-menu-open ul.wp-block-navigation__container {
  gap: clamp(28px, 6vw, 48px) !important;
  row-gap: clamp(28px, 6vw, 48px) !important;
  align-items: flex-start;
}
.wp-block-navigation.she-nav-mobile .wp-block-navigation__responsive-container.is-menu-open {
  --wp--style--block-gap: clamp(28px, 6vw, 48px);
}
/* Belt-and-braces — apply the spacing as bottom margin on each item, since
 * something downstream is collapsing the flex `gap` on the nav container. */
.wp-block-navigation.she-nav-mobile .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item {
  margin-bottom: clamp(28px, 6vw, 48px) !important;
}
.wp-block-navigation.she-nav-mobile .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item:last-child {
  margin-bottom: 0 !important;
}
.she-nav-mobile .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
  font-family: var(--wp--preset--font-family--display);
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 400;
  color: var(--she-ink) !important;
  letter-spacing: -0.01em;
  line-height: 1.1;
  padding: 4px 0;
}

/* Suppress the browser's blue focus ring on click; keep it for keyboard users */
.she-nav-mobile .wp-block-navigation__responsive-container.is-menu-open a:focus,
.she-nav-mobile .wp-block-navigation__responsive-container.is-menu-open button:focus,
.she-nav-mobile .wp-block-navigation__responsive-container-open:focus,
.she-nav-mobile .wp-block-navigation__responsive-container-close:focus {
  outline: none;
  box-shadow: none;
}
.she-nav-mobile .wp-block-navigation__responsive-container.is-menu-open a:focus-visible,
.she-nav-mobile .wp-block-navigation__responsive-container.is-menu-open button:focus-visible,
.she-nav-mobile .wp-block-navigation__responsive-container-open:focus-visible,
.she-nav-mobile .wp-block-navigation__responsive-container-close:focus-visible {
  outline: 2px solid var(--she-ink);
  outline-offset: 4px;
  border-radius: 2px;
}

/* WP applies an identity transform to the responsive container after the open
 * animation, which creates a containing block and breaks viewport-relative
 * positioning of fixed descendants. Force it off so position:fixed below works. */
.wp-block-navigation.she-nav-mobile .wp-block-navigation__responsive-container.is-menu-open {
  transform: none !important;
}

/* Close (X) button — pinned top-right of the viewport, aligned with the header gutter. */
.wp-block-navigation.she-nav-mobile .wp-block-navigation__responsive-container-close {
  position: fixed !important;
  top: 14px !important;
  right: var(--she-gutter) !important;
  left: auto !important;
  color: var(--she-ink) !important;
  background: transparent !important;
  border: 0 !important;
  padding: 6px !important;
  z-index: 102 !important;
}
.admin-bar .wp-block-navigation.she-nav-mobile .wp-block-navigation__responsive-container-close {
  top: calc(32px + 14px) !important;
}
@media (max-width: 782px) {
  .admin-bar .wp-block-navigation.she-nav-mobile .wp-block-navigation__responsive-container-close {
    top: calc(46px + 14px) !important;
  }
}
.wp-block-navigation.she-nav-mobile .wp-block-navigation__responsive-container-close svg {
  width: 32px !important;
  height: 32px !important;
  fill: currentColor !important;
}

/* ── Form card — paper-coloured panel that wraps a form ── */
.she-form-card {
  background: var(--she-paper);
  border: 1px solid var(--she-rule);
  padding: 24px clamp(28px, 4vw, 48px) clamp(28px, 4vw, 48px);
}

/* Contact form chip controls (also used by insights filter chips) */
.cf-label {
  font-family: var(--wp--preset--font-family--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--she-ink-3);
}
.cf-chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--wp--preset--font-family--body);
  font-size: 13px;
  font-weight: 500;
  background: var(--she-paper-2);
  border: 1px solid var(--she-rule);
  color: var(--she-ink-2);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.cf-chip:hover { border-color: var(--she-ink); }
.cf-chip.is-on {
  background: var(--she-ink);
  color: var(--she-paper);
  border-color: var(--she-ink);
}

/* Hero / feature images — aspect-ratio constraints (used by wp:image blocks) */
.she-hero-image {
  max-width: 460px;
  margin-inline-start: auto;
}
.she-hero-image img {
  aspect-ratio: 4 / 5;
  min-height: 360px;
  max-height: 560px;
  width: 100%;
  object-fit: cover;
}

/* WP core ships rules for vertically aligned columns but they're not landing
 * here, so re-enforce them. Without these, columns stretch to the tallest
 * sibling and inner text always flows to the top. */
.wp-block-columns.are-vertically-aligned-top { align-items: flex-start; }
.wp-block-columns.are-vertically-aligned-center { align-items: center; }
.wp-block-columns.are-vertically-aligned-bottom { align-items: flex-end; }
.wp-block-column.is-vertically-aligned-top { align-self: flex-start; }
.wp-block-column.is-vertically-aligned-center { align-self: center; }
.wp-block-column.is-vertically-aligned-bottom { align-self: flex-end; }

/* Home hero — wider column gap and constrained heading measure. */
.she-home-hero .wp-block-columns {
  gap: clamp(32px, 5vw, 80px) !important;
}
.she-home-hero .she-h-display {
  max-width: 14ch;
}
.she-home-hero .she-lede {
  max-width: 46ch;
}

.she-feature-image img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  margin-bottom: 28px;
}

/* Image placeholder primitive — use a div with class she-imgph instead of <img>
   while photography is being commissioned. Optional caption via <span class="she-imgph__cap">. */
.she-imgph {
  background: var(--she-paper-2);
  border: 1px solid var(--she-rule);
  border-radius: 2px;
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  position: relative;
  overflow: hidden;
  color: var(--she-ink-3);
  font-size: 12px;
  letter-spacing: 0.02em;
}
.she-imgph::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, transparent 49.5%, var(--she-rule) 49.5%, var(--she-rule) 50.5%, transparent 50.5%);
  opacity: 0.5;
}
.she-imgph__cap {
  position: relative;
  background: var(--she-paper);
  padding: 6px 10px;
  border: 1px solid var(--she-rule);
  font-family: var(--wp--preset--font-family--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--she-ink-3);
}
.she-imgph--teal { background: var(--she-teal-soft); color: var(--she-teal-deep); }
.she-imgph--accent { background: var(--she-accent-soft); }

/* Card variants */
.she-card.she-card-quiet,
.she-card-quiet {
  background: var(--she-paper-2);
  border-color: transparent;
}

/* Figure caption — italic serif */
.she-figcap {
  margin-top: 14px;
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  font-size: 14px;
  color: var(--she-ink-3);
  max-width: 60ch;
}

/* Contact routes — 3-column bordered grid (matches design grid-2x2 idiom) */
.she-routes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--she-rule);
  border-left: 1px solid var(--she-rule);
}
@media (max-width: 720px) {
  .she-routes-grid { grid-template-columns: 1fr; }
}
.she-route-cell {
  padding: clamp(28px, 3vw, 40px);
  border-right: 1px solid var(--she-rule);
  border-bottom: 1px solid var(--she-rule);
  display: flex;
  flex-direction: column;
}
.she-route-cell .she-eyebrow { margin: 0 0 28px; }
.she-route-cell .she-h-3 { margin: 0 0 16px; }
.she-route-cell > p {
  margin: 0 0 32px;
  flex-grow: 1;
}
.she-route-cell .wp-block-buttons { margin-top: auto; }

/* ── Gravity Forms: reset to match design ── */
.gform_wrapper {
  max-width: 100%;
}
.gform_wrapper .gfield_label,
.gform_wrapper .gfield .gfield_label {
  font-family: var(--wp--preset--font-family--body) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--she-ink-3) !important;
  margin-bottom: 8px !important;
}
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="url"],
.gform_wrapper input[type="number"],
.gform_wrapper textarea,
.gform_wrapper select {
  background: var(--she-paper-2) !important;
  border: 1px solid var(--she-rule) !important;
  border-radius: 0 !important;
  color: var(--she-ink) !important;
  font-family: var(--wp--preset--font-family--body) !important;
  font-size: 15px !important;
  padding: 14px 16px !important;
  outline: none !important;
  transition: border-color .15s !important;
  width: 100% !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}
.gform_wrapper input:focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus {
  border-color: var(--she-teal) !important;
  box-shadow: none !important;
}
/* Field spacing */
.gform_wrapper .gfield {
  margin-bottom: 22px;
}
.gform_wrapper .gform_fields {
  row-gap: 0;
}
/* Submit button */
.gform_wrapper .gform_footer,
.gform_wrapper .gform_page_footer {
  padding-top: 24px;
  border-top: 1px solid var(--she-rule);
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.gform_wrapper .gform_footer .gform_button,
.gform_wrapper .gform_page_footer .gform_button {
  background: var(--she-teal) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 999px !important;
  font-family: var(--wp--preset--font-family--body) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  padding: 14px 24px !important;
  cursor: pointer !important;
  transition: background .15s, transform .15s !important;
  box-shadow: none !important;
}
.gform_wrapper .gform_footer .gform_button:hover,
.gform_wrapper .gform_page_footer .gform_button:hover {
  background: var(--she-teal-deep) !important;
  transform: translateY(-1px);
}
/* Contact form (GF form 1) layout — reorder fields to match design and
 * lay name + email as a 2-col row. Field IDs are stable per GF form 1. */
.she-form-card .gform_fields {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  column-gap: 16px !important;
  row-gap: 22px !important;
}
.she-form-card .gform_fields > .gfield {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.she-form-card .gform_fields > .gfield > .gfield_label,
.she-form-card .gform_fields > .gfield > legend.gfield_label {
  display: block !important;
  width: 100% !important;
}
.she-form-card .gform_fields > .gfield .ginput_container { width: 100% !important; }
.she-form-card #field_1_4 { grid-column: 1 / -1 !important; order: 1; }
.she-form-card #field_1_1 { grid-column: 1 !important; order: 2; }
.she-form-card #field_1_2 { grid-column: 2 !important; order: 2; }
.she-form-card #field_1_3 { grid-column: 1 / -1 !important; order: 3; }
.she-form-card #field_1_5 { grid-column: 1 / -1 !important; order: 4; }
.she-form-card #field_1_6 { grid-column: 1 / -1 !important; order: 5; }
.she-form-card .gform_hidden { display: none !important; }
@media (max-width: 640px) {
  .she-form-card .gform_fields { grid-template-columns: 1fr !important; }
  .she-form-card #field_1_1,
  .she-form-card #field_1_2 { grid-column: 1 / -1 !important; }
}

/* Radio choices in the contact form chip group — flex row, not stacked. */
.she-form-card .ginput_container_radio,
.she-form-card .gfield_radio {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  width: 100%;
}
.she-form-card .ginput_container_radio { margin-top: 0 !important; }
.she-form-card .gchoice {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  width: auto !important;
  margin: 0 !important;
}

/* Hide the verbose "(Required)" text — keep the required indicator subtle. */
.she-form-card .gfield_required_text { display: none; }
.she-form-card .gfield_required {
  color: var(--she-teal);
  margin-left: 4px;
}

/* GF select — match input styling with custom caret.
 * !important needed to override Gravity Forms Orbital framework defaults. */
.she-form-card .gfield_select,
.she-form-card select {
  background-color: var(--she-paper-3) !important;
  border: 1px solid transparent !important;
  padding: 0 40px 0 16px !important;
  font-family: var(--wp--preset--font-family--body) !important;
  font-size: 15px !important;
  color: var(--she-ink) !important;
  width: 100% !important;
  box-sizing: border-box !important;
  border-radius: 0 !important;
  outline: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: linear-gradient(45deg, transparent 50%, var(--she-ink-3) 50%),
                    linear-gradient(-45deg, transparent 50%, var(--she-ink-3) 50%) !important;
  background-position: calc(100% - 20px) center, calc(100% - 14px) center !important;
  background-size: 6px 6px, 6px 6px !important;
  background-repeat: no-repeat !important;
  transition: border-color .15s;
  height: 38px !important;
  line-height: 1 !important;
}
.she-form-card .gfield_select:focus,
.she-form-card select:focus { border-color: var(--she-ink) !important; }

/* Submit footer — agreement copy on the left, submit pill on the right. */
.she-form-card .gform_footer {
  display: grid !important;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--she-rule);
  margin-top: 8px;
}
.she-form-card .gform_footer::before {
  content: "By sending this you agree to Sarah holding your message to reply. No newsletter sign-up unless you opt in.";
  font-size: 13px;
  line-height: 1.5;
  color: var(--she-ink-3);
  max-width: 36ch;
}
@media (max-width: 640px) {
  .she-form-card .gform_footer { grid-template-columns: 1fr; }
}

/* Event Pro Portal waitlist form (GF id=5) — field ordering and an opt-in
 * agreement line that overrides the contact-form default above. */
.she-form-card--waitlist #field_5_3 { grid-column: 1 / -1 !important; order: 1; }
.she-form-card--waitlist #field_5_1 { grid-column: 1 !important; order: 2; }
.she-form-card--waitlist #field_5_2 { grid-column: 2 !important; order: 2; }
.she-form-card--waitlist #field_5_4 { grid-column: 1 / -1 !important; order: 3; }
@media (max-width: 640px) {
  .she-form-card--waitlist #field_5_1,
  .she-form-card--waitlist #field_5_2 { grid-column: 1 / -1 !important; }
}
.she-form-card--waitlist .gform_footer::before {
  content: "No marketing. One email when courses go live, plus a free sample lesson before launch. Unsubscribe in one click.";
}

/* Dark background form variant */
.she-form-dark .gform_wrapper .gfield_label { color: rgba(255,255,255,0.55) !important; }
.she-form-dark .gform_wrapper input,
.she-form-dark .gform_wrapper textarea {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.18) !important;
  color: var(--she-paper) !important;
}

/* ── Gravity Forms: radio buttons styled as chips ── */
.gform_wrapper .ginput_container_radio {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.gform_wrapper .ginput_container_radio .gchoice {
  display: inline-flex;
  position: relative;
}
.gform_wrapper .ginput_container_radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.gform_wrapper .ginput_container_radio label {
  display: inline-flex !important;
  align-items: center !important;
  font-family: var(--wp--preset--font-family--body) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  background: var(--she-paper-2) !important;
  border: 1px solid var(--she-rule) !important;
  color: var(--she-ink-2) !important;
  padding: 8px 14px !important;
  border-radius: 999px !important;
  cursor: pointer !important;
  transition: background .15s, border-color .15s, color .15s !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  margin: 0 !important;
}
.gform_wrapper .ginput_container_radio label:hover {
  border-color: var(--she-ink) !important;
}
.gform_wrapper .ginput_container_radio input[type="radio"]:checked + label {
  background: var(--she-ink) !important;
  color: var(--she-paper) !important;
  border-color: var(--she-ink) !important;
}
/* Validation error */
.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error textarea {
  border-color: #c0392b !important;
}
.gform_wrapper .validation_message {
  font-family: var(--wp--preset--font-family--body) !important;
  font-size: 12px !important;
  color: #c0392b !important;
  margin-top: 6px !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
}

/* ── Layout utilities ──────────────────────────────────────── */
/* Measure utilities (max-width constraints).
 * Override WP core .is-layout-constrained which applies margin: 0 auto !important
 * to any child with max-width — without this, every measure-constrained element
 * would be centred inside its section instead of left-aligned. */
[class*="she-measure-"] {
  margin-left: 0 !important;
  margin-right: auto !important;
}
.she-measure-14 { max-width: 14ch; }
.she-measure-16 { max-width: 16ch; }
.she-measure-18 { max-width: 18ch; }
.she-measure-20 { max-width: 20ch; }
.she-measure-22 { max-width: 22ch; }
.she-measure-24 { max-width: 24ch; }
.she-measure-32 { max-width: 32ch; }
.she-measure-34 { max-width: 34ch; }
.she-measure-36 { max-width: 36ch; }
.she-measure-38 { max-width: 38ch; }
.she-measure-40 { max-width: 40ch; }
.she-measure-44 { max-width: 44ch; }
.she-measure-46 { max-width: 46ch; }
.she-measure-50 { max-width: 50ch; }
.she-measure-54 { max-width: 54ch; }
.she-measure-58 { max-width: 58ch; }
.she-measure-60 { max-width: 60ch; }
.she-measure-220px { max-width: 220px; }

/* Flex grow utility */
.she-flex-grow { flex: 1; }

/* Sticky column utility (used by contact form intro column) */
@media (min-width: 782px) {
  .she-sticky-col {
    position: sticky;
    top: 100px;
    align-self: flex-start;
  }
}

/* ── Inline-style replacements (added during pattern refactor) ─────── */
/* Body copy at common scales */
[class*="she-body-"] { text-wrap: pretty; }
.she-body-12 { font-size: 12px; line-height: 1.5; }
.she-body-13 { font-size: 13px; line-height: 1.55; }
.she-body-14 { font-size: 14px; line-height: 1.6; }
.she-body-15 { font-size: 15px; line-height: 1.65; }
.she-body-16 { font-size: 16px; line-height: 1.65; }
.she-body-17 { font-size: 17px; line-height: 1.6; }
.she-body-18 { font-size: 18px; line-height: 1.5; }

/* Display-font snippets (italic taglines, numerals, etc.) */
.she-display { font-family: var(--wp--preset--font-family--display); }
.she-italic { font-style: italic; }
.she-italic-quote {
  font-family: var(--wp--preset--font-family--display);
  font-size: 16px;
  font-style: italic;
  line-height: 1.5;
}
.she-prose-lede {
  font-family: var(--wp--preset--font-family--display);
  font-size: 19px;
  line-height: 1.65;
  color: var(--she-ink-2);
}
.she-prose-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--she-ink-2);
}

/* Stat display number */
.she-stat {
  font-family: var(--wp--preset--font-family--display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--she-ink);
}

/* Common text colors */
.she-text-ink     { color: var(--she-ink); }
.she-text-ink-2   { color: var(--she-ink-2); }
.she-text-ink-3   { color: var(--she-ink-3); }
.she-text-ink-4   { color: var(--she-ink-4); }
.she-text-paper   { color: var(--she-paper); }
.she-text-teal       { color: var(--she-teal); }
.she-text-teal-deep  { color: var(--she-teal-deep); }
.she-text-accent     { color: var(--she-accent); }
.she-text-paper-50 { color: rgba(255,255,255,0.55); }
.she-text-paper-72 { color: rgba(255,255,255,0.72); }
.she-text-paper-78 { color: rgba(255,255,255,0.78); }

/* Background colours via class (where backgroundColor slug isn't an option) */
.she-bg-paper-2 { background-color: var(--she-paper-2); }
.she-bg-ink     { background-color: var(--she-ink); color: var(--she-paper); }

/* Padding utilities */
.she-pad-24 { padding: 24px; }
.she-pad-28 { padding: 28px; }
.she-pad-32 { padding: 32px; }
.she-pad-36 { padding: 36px; }
.she-pad-clamp-24-36 { padding: clamp(24px, 3vw, 36px); }

/* Margin top / bottom */
.she-mt-2   { margin-top: 2px; }
.she-mt-4   { margin-top: 4px; }
.she-mt-6   { margin-top: 6px; }
.she-mt-8   { margin-top: 8px; }
.she-mt-10  { margin-top: 10px; }
.she-mt-12  { margin-top: 12px; }
.she-mt-14  { margin-top: 14px; }
.she-mt-16  { margin-top: 16px; }
.she-mt-20  { margin-top: 20px; }
.she-mt-24  { margin-top: 24px; }
.she-mt-28  { margin-top: 28px; }
.she-mt-32  { margin-top: 32px; }
.she-mt-36  { margin-top: 36px; }
.she-mt-40  { margin-top: 40px; }
.she-mt-48  { margin-top: 48px; }
.she-mt-56  { margin-top: 56px; }
.she-mt-auto { margin-top: auto; }
.she-mb-4   { margin-bottom: 4px; }
.she-mb-8   { margin-bottom: 8px; }
.she-mb-12  { margin-bottom: 12px; }
.she-mb-14  { margin-bottom: 14px; }
.she-mb-16  { margin-bottom: 16px; }
.she-mb-20  { margin-bottom: 20px; }
.she-mb-24  { margin-bottom: 24px; }
.she-mb-32  { margin-bottom: 32px; }
.she-mb-40  { margin-bottom: 40px; }
.she-mb-48  { margin-bottom: 48px; }

/* Stat cluster row (used inside columns) */
.she-stat-row {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--she-rule);
}

/* Stat unit (number above small uppercase caption) */
.she-stat-unit { color: var(--she-ink-3); font-size: 0.5em; margin-left: 6px; }
.she-stat-caption {
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--she-ink-3);
  margin-top: 12px;
}

/* Article card (preview) — top rule with date below */
.she-article-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(24px, 3vw, 40px);
}
.she-article-card {
  border-top: 1px solid var(--she-ink);
  padding-top: 24px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: color .2s;
}
.she-article-card .she-eyebrow { color: var(--she-accent); }
.she-article-card h3,
.she-article-card .wp-block-heading {
  font-family: var(--wp--preset--font-family--display);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 400;
  margin-top: 14px;
  margin-bottom: 24px;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color .2s, text-decoration-color .2s;
}
a.she-article-card:hover h3 {
  color: var(--she-accent);
  text-decoration-color: currentColor;
}
.she-article-card .she-article-meta {
  font-size: 13px;
  color: var(--she-ink-3);
}

/* Section heading row (eyebrow+h2 left, link right) */
.she-section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 40px;
}
.she-link-rule {
  border-bottom: 1px solid var(--she-rule);
  font-size: 14px;
  color: var(--she-ink-2);
  padding-bottom: 4px;
  margin: 0;
}

/* Top rule */
.she-rule-top      { border-top: 1px solid var(--she-rule); padding-top: 20px; }
.she-rule-top-32   { border-top: 1px solid var(--she-rule); padding-top: 32px; margin-top: 48px; }
.she-rule-top-paper-15 { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px; }

/* Section that has a top rule (e.g. about-how-she-works) */
.she-section-rule-top { border-top: 1px solid var(--she-rule); }

/* Horizontal gutter helper — used on inner wrappers when parent doesn't provide it */
.she-x-gutter { padding-left: var(--she-gutter); padding-right: var(--she-gutter); }

/* List reset (used for footer-like lists in patterns) */
.she-list-reset {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.she-list-reset li { margin: 0 0 8px; }

/* Contact-block (email block) */
.she-contact-block {
  border-top: 1px solid var(--she-rule);
  padding-top: 24px;
  margin-top: 32px;
}
.she-contact-block p {
  font-size: 15px;
  font-weight: 600;
  color: var(--she-ink);
  margin: 0;
}

/* Contact details list — eyebrow + value pairs above the "what happens next" box. */
.she-contact-list {
  margin: 32px 0 0;
  padding: 32px 0 0;
  border-top: 1px solid var(--she-rule);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.she-contact-list dt {
  font-family: var(--wp--preset--font-family--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--she-ink-3);
  margin: 0 0 8px;
}
.she-contact-list dd {
  margin: 0;
  font-family: var(--wp--preset--font-family--display);
  font-size: 19px;
  color: var(--she-ink);
}
.she-contact-list dd a { color: inherit; }
.she-contact-list dd a:hover { color: var(--she-teal-deep); }

/* Contact form — custom form inside .she-form-card matching the design.
 * Stacked sections with a 14px field-gap and a 24px section-gap. */
.she-cta-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.she-cta-form fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.she-cta-form legend,
.she-cta-form .cf-label {
  padding: 0;
}
.she-cta-form__chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.she-cta-form__chip-group label.cf-chip {
  cursor: pointer;
  user-select: none;
}
.she-cta-form__chip-group input[type="radio"] {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.she-cta-form__chip-group label.cf-chip:has(input:checked) {
  background: var(--she-ink);
  color: var(--she-paper);
  border-color: var(--she-ink);
}
.she-cta-form__chip-group input:focus-visible + span {
  outline: 2px solid var(--she-teal);
  outline-offset: 4px;
  border-radius: 999px;
}
.she-cta-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 640px) {
  .she-cta-form__row { grid-template-columns: 1fr; }
}
.she-cta-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.she-cta-form__field input,
.she-cta-form__field textarea,
.she-cta-form__field select {
  background: var(--she-paper-3);
  border: 1px solid transparent;
  padding: 14px 16px;
  font-family: var(--wp--preset--font-family--body);
  font-size: 15px;
  color: var(--she-ink);
  width: 100%;
  box-sizing: border-box;
  border-radius: 0;
  outline: none;
  transition: border-color .15s;
}
.she-cta-form__field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--she-ink-3) 50%),
                    linear-gradient(-45deg, transparent 50%, var(--she-ink-3) 50%);
  background-position: calc(100% - 20px) 22px, calc(100% - 14px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.she-cta-form__field input:focus,
.she-cta-form__field textarea:focus,
.she-cta-form__field select:focus {
  border-color: var(--she-ink);
}
.cf-label__opt {
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--she-ink-3);
}
.she-cta-form__field textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.55;
}
.she-cta-form__field input::placeholder,
.she-cta-form__field textarea::placeholder {
  color: var(--she-ink-3);
}
.she-cta-form__rule {
  border: 0;
  border-top: 1px solid var(--she-rule);
  margin: 4px 0;
}
.she-cta-form__footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
@media (max-width: 640px) {
  .she-cta-form__footer { grid-template-columns: 1fr; }
}
.she-cta-form__agreement {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--she-ink-3);
  max-width: 36ch;
}
.she-cta-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--she-teal);
  color: var(--she-paper);
  border: 1px solid var(--she-teal);
  border-radius: 999px;
  padding: 14px 28px;
  font-family: var(--wp--preset--font-family--body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s, border-color .15s;
  white-space: nowrap;
}
.she-cta-form__submit:hover {
  background: var(--she-teal-deep);
  border-color: var(--she-teal-deep);
}

/* Info-box (paper-2 panel with teal accent border) */
.she-info-box {
  background: var(--she-paper-2);
  border-left: 3px solid var(--she-teal);
  padding: 24px;
  margin-top: 40px;
}
.she-info-box .she-eyebrow { color: var(--she-teal-deep); margin-bottom: 10px; }
.she-info-box ol,
.she-info-box ul {
  font-size: 14px;
  line-height: 1.6;
  color: var(--she-ink-2);
  padding-left: 20px;
  margin: 0;
}

/* Event Pro Portal — eleven-course list */
.she-course-list {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--she-rule);
  border: 1px solid var(--she-rule);
}
.she-course-list__item {
  background: var(--she-paper);
  padding: 28px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  row-gap: 6px;
  align-items: baseline;
}
.she-course-list__num {
  font-family: var(--wp--preset--font-family--display);
  font-size: 22px;
  color: var(--she-teal-deep);
  letter-spacing: -0.01em;
  grid-row: 1 / span 2;
}
.she-course-list__title {
  font-family: var(--wp--preset--font-family--display);
  font-size: 20px;
  line-height: 1.2;
  color: var(--she-ink);
}
.she-course-list__note {
  font-size: 14px;
  line-height: 1.5;
  color: var(--she-ink-3);
}

/* Grid 2x2 with bordered cells (used by how-we-work-style sections) */
.she-grid-2x2.she-grid-bordered {
  border-top: 2px solid var(--she-ink);
  border-left: 1px solid var(--she-rule);
  margin-top: 56px;
}
.she-grid-2x2.she-grid-bordered-soft {
  border-top: 1px solid var(--she-rule);
  border-left: 1px solid var(--she-rule);
  margin-top: 56px;
}

/* Bordered grid cell (right + bottom border, padded) */
.she-cell {
  padding: 36px 32px 32px;
  border-right: 1px solid var(--she-rule);
  border-bottom: 1px solid var(--she-rule);
  display: flex;
  flex-direction: column;
  gap: 0 !important;
}
/* Reset default paragraph bottom margins inside cells so spacing is driven
 * by the explicit `she-mt-*` utilities, and the body grows to push the
 * button row to the bottom of the card. */
.she-cell > p { margin-bottom: 0; }
.she-cell > .she-h-3 { margin-top: 16px; }
.she-cell > .she-italic-cap { margin-top: 6px; }
.she-cell > .she-body-15 {
  flex: 1 1 auto;
  margin-top: 24px;
}
.she-cell > .wp-block-buttons { margin-top: 36px; }

/* Italic small caption (used inside cells) */
.she-italic-cap {
  font-size: 13px;
  font-style: italic;
  color: var(--she-ink-3);
  margin-top: 4px;
}

/* Pathway card heading variant — display, big */
.she-pathway-card .she-pathway-h {
  font-family: var(--wp--preset--font-family--display);
  font-size: clamp(22px, 2.1vw, 28px);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}
.she-pathway-card .she-pathway-quote {
  font-family: var(--wp--preset--font-family--display);
  font-size: 16px;
  font-style: italic;
  line-height: 1.5;
  color: var(--she-ink-3);
}
.she-card--ink .she-pathway-quote { color: rgba(255,255,255,0.78); }
.she-card--ink .she-pathway-h { color: var(--she-paper); }

.she-pathway-foot {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--she-rule);
}
.she-card--ink .she-pathway-foot {
  border-top-color: rgba(255,255,255,0.15);
}
.she-pathway-foot p { margin: 0; }
.she-pathway-foot p + p { margin-top: 8px; }
.she-pathway-foot .she-pathway-cap {
  font-size: 13px;
  color: var(--she-ink-3);
}
.she-card--ink .she-pathway-foot .she-pathway-cap { color: rgba(255,255,255,0.55); }
.she-pathway-foot .she-pathway-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--she-teal-deep);
}
.she-card--ink .she-pathway-foot .she-pathway-link,
.she-card--ink .she-pathway-foot .she-pathway-link a { color: var(--she-teal); }

/* Newsletter card (dark) */
.she-newsletter-card {
  background: var(--she-ink);
  color: var(--she-paper);
  padding: 36px;
}
.she-newsletter-card h3,
.she-newsletter-card .she-newsletter-h {
  font-family: var(--wp--preset--font-family--display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--she-paper);
  margin: 14px 0 0;
}
.she-newsletter-card .she-newsletter-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

/* Pathway card layout */
.she-pathway-card {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

/* Stack helper — vertical flow with fixed gap on a flex layout */
.she-stack-12 > * + * { margin-top: 12px; }
.she-stack-16 > * + * { margin-top: 16px; }
.she-stack-20 > * + * { margin-top: 20px; }
.she-stack-24 > * + * { margin-top: 24px; }

/* Card padding override for she-card to use bigger padding */
.she-card.she-pad-36 { padding: 36px; }
.she-card.she-pad-clamp-24-36 { padding: clamp(24px, 3vw, 36px); }

/* Eyebrow-split — 2-col section opener: small eyebrow on the left,
 * heading + body on the right. Used on consultancy + training pages. */
.she-eyebrow-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: clamp(32px, 6vw, 100px);
  align-items: start;
  margin-bottom: 56px;
}
@media (max-width: 720px) {
  .she-eyebrow-split {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }
}
.she-eyebrow-split__eyebrow { margin: 0; }
.she-eyebrow-split__body > .she-h-1,
.she-eyebrow-split__body > .she-h-2 { margin: 0; }
.she-eyebrow-split__copy {
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--she-ink-2);
  max-width: 60ch;
  text-wrap: pretty;
}

/* ─────────────────────────────────────────────────────────────────
 * Consultancy page — phases grid + engagements grid.
 * ───────────────────────────────────────────────────────────────── */

/* Phases grid (How we work together) — 2x2 with a 2px ink top rule and
 * hairline rules forming a complete grid around each card. */
.she-phases-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 56px;
  border-top: 2px solid var(--she-ink);
  border-left: 1px solid var(--she-rule);
}
@media (max-width: 640px) {
  .she-phases-grid { grid-template-columns: 1fr; }
}
.she-phase-card {
  padding: clamp(24px, 3vw, 36px);
  border-right: 1px solid var(--she-rule);
  border-bottom: 1px solid var(--she-rule);
  display: flex;
  flex-direction: column;
}
.she-phase-card__number {
  font-family: var(--wp--preset--font-family--display);
  font-size: 28px;
  color: var(--she-teal);
  font-style: italic;
  line-height: 1;
}
.she-phase-card__title {
  font-family: var(--wp--preset--font-family--display);
  font-size: 22px;
  font-weight: 500;
  margin: 14px 0 12px;
  color: var(--she-ink);
}
.she-phase-card__body {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  color: var(--she-ink-2);
  text-wrap: pretty;
}

/* Engagements grid — four packaged engagement cards in a 2x2. */
.she-engagements-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 720px) {
  .she-engagements-grid { grid-template-columns: 1fr; }
}
.she-engagement-card {
  padding: 36px;
  background: var(--she-paper);
  border: 1px solid var(--she-rule);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color .2s;
}
.she-engagement-card:hover { border-color: var(--she-ink); }
.she-engagement-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.she-engagement-card__letter {
  font-family: var(--wp--preset--font-family--display);
  font-size: 36px;
  color: var(--she-teal);
  line-height: 1;
  font-style: italic;
}
.she-engagement-card__price {
  font-family: var(--wp--preset--font-family--display);
  font-size: 17px;
  color: var(--she-ink-2);
}
.she-engagement-card__title {
  margin: 8px 0 0;
}
.she-engagement-card__desc {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  color: var(--she-ink-2);
  text-wrap: pretty;
}
.she-engagement-card__footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--she-rule);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  font-size: 12px;
}
.she-engagement-card__label {
  color: var(--she-ink-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  font-weight: 600;
}
.she-engagement-card__value {
  margin-top: 4px;
  color: var(--she-ink-2);
  font-size: 12px;
  line-height: 1.4;
}

/* ─────────────────────────────────────────────────────────────────
 * Training page (in-house) — page-specific components.
 * ───────────────────────────────────────────────────────────────── */

/* Pill buttons used across the training page (hero CTAs, form submit). */
.she-btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--wp--preset--font-family--body);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
  white-space: nowrap;
}
.she-btn-pill:hover { transform: translateY(-1px); }
.she-btn-pill--primary {
  background: var(--she-teal);
  color: var(--she-paper);
  border-color: var(--she-teal);
}
.she-btn-pill--primary:hover {
  background: var(--she-teal-deep);
  border-color: var(--she-teal-deep);
}
.she-btn-pill--ghost {
  background: transparent;
  color: var(--she-ink);
  border-color: var(--she-ink);
}
.she-btn-pill--ghost:hover {
  background: var(--she-ink);
  color: var(--she-paper);
}
.she-btn-pill--ink {
  background: var(--she-ink);
  color: var(--she-paper);
  border-color: var(--she-ink);
}
.she-btn-pill--ink:hover {
  background: var(--she-teal-deep);
  border-color: var(--she-teal-deep);
}

/* Training hero — 2-col split with overlay callout on the image. */
.she-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.she-page-hero__copy .she-eyebrow { margin-bottom: 24px; }
.she-page-hero__copy .she-h-display {
  margin: 0;
}
.she-page-hero__copy .she-lede {
  margin-top: 28px;
  max-width: 46ch;
}
.she-page-hero__buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.she-page-hero__media {
  position: relative;
}
.she-page-hero__image {
  aspect-ratio: 4 / 5;
  min-height: 360px;
  width: 100%;
}
.she-page-hero__caption {
  margin: 12px 0 0;
  font-size: 13px;
  text-align: right;
  color: var(--she-ink-3);
}
.she-page-hero__callout {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--she-teal);
  color: var(--she-paper);
  padding: 20px 24px;
  font-family: var(--wp--preset--font-family--display);
  max-width: 240px;
  font-size: 17px;
  line-height: 1.4;
}
.she-page-hero__callout .she-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--she-paper);
  opacity: 0.8;
  margin: 0 0 8px;
}
.she-page-hero__callout p {
  margin: 0;
  color: var(--she-paper);
}
@media (max-width: 880px) {
  .she-page-hero { grid-template-columns: 1fr; }
  .she-page-hero__callout { left: 0; bottom: -20px; }
}

/* Why in-house — 2-col split (eyebrow left, content right). */
.she-training-why {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: clamp(32px, 6vw, 100px);
}
@media (max-width: 720px) {
  .she-training-why { grid-template-columns: 1fr; gap: 24px; }
}

/* Formats grid — 2x2 cards. */
.she-formats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 720px) {
  .she-formats-grid { grid-template-columns: 1fr; }
}
.she-format-card {
  position: relative;
  padding: 32px;
  background: var(--she-paper);
  border: 1px solid var(--she-rule);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.she-format-card--recommended {
  border: 2px solid var(--she-teal);
}
.she-format-card__badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--she-teal);
  color: var(--she-paper);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
}
.she-format-card__tag {
  font-family: var(--wp--preset--font-family--display);
  font-size: 32px;
  color: var(--she-teal);
  font-style: italic;
  line-height: 1;
  margin: 0;
}
.she-format-card__name {
  font-family: var(--wp--preset--font-family--display);
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  color: var(--she-ink);
}
.she-format-card__price {
  font-size: 14px;
  color: var(--she-ink-3);
  margin: 0;
}
.she-format-card__desc {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  color: var(--she-ink-2);
  text-wrap: pretty;
}
.she-format-card__list {
  list-style: none;
  padding: 16px 0 0;
  margin: 0;
  border-top: 1px solid var(--she-rule);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.she-format-card__list li {
  font-size: 13px;
  color: var(--she-ink-3);
  display: flex;
  gap: 8px;
}
.she-format-card__list li > span { color: var(--she-teal); flex-shrink: 0; }

/* Topics — 2-col layout with a 2-col list inside the right column. */
.she-training-topics {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: clamp(32px, 6vw, 100px);
}
@media (max-width: 720px) {
  .she-training-topics { grid-template-columns: 1fr; gap: 32px; }
}
.she-training-topics__list {
  list-style: none;
  padding: 0;
  margin: 0;
  column-count: 2;
  column-gap: 32px;
  column-rule: 1px solid var(--she-rule);
}
@media (max-width: 720px) {
  .she-training-topics__list { column-count: 1; column-rule: 0; }
}
.she-training-topics__list li {
  break-inside: avoid;
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--she-rule);
}
.she-training-topics__num {
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  color: var(--she-teal);
  font-size: 14px;
  width: 24px;
  flex-shrink: 0;
}
.she-training-topics__list li > span:last-child {
  font-size: 15px;
  line-height: 1.4;
  color: var(--she-ink-2);
}

/* Training form — dark variant. */
.she-training-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(32px, 5vw, 80px);
}
@media (max-width: 880px) {
  .she-training-form { grid-template-columns: 1fr; }
}
.she-training-form__intro .she-eyebrow { color: var(--she-teal); }
.she-training-form__intro .she-h-1 {
  color: var(--she-paper);
  margin-top: 12px;
}
.she-training-form__lede {
  color: rgba(248, 244, 237, 0.7);
  font-size: 16px;
  max-width: 44ch;
  margin: 20px 0 0;
}
.she-training-form__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.she-training-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.she-training-form__field .cf-label {
  color: rgba(248, 244, 237, 0.55);
}
.she-training-form__field input,
.she-training-form__field textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--she-paper);
  font-family: var(--wp--preset--font-family--body);
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  border-radius: 0;
  transition: border-color .15s;
}
.she-training-form__field input:focus,
.she-training-form__field textarea:focus {
  border-color: var(--she-paper);
}
.she-training-form__field textarea {
  resize: vertical;
  line-height: 1.55;
  min-height: 120px;
}
.she-training-form__field input::placeholder,
.she-training-form__field textarea::placeholder {
  color: rgba(248, 244, 237, 0.4);
}
.she-training-form__submit {
  align-self: flex-start;
  margin-top: 8px;
}

/* ─────────────────────────────────────────────────────────────────
 * Insights page — featured article, newsletter card, topic index, article list.
 * ───────────────────────────────────────────────────────────────── */

/* Featured article — left column of the featured/newsletter row. */
.she-featured-article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.she-featured-article > .she-eyebrow:first-child { margin: 0 0 16px; }
.she-featured-article__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 280px;
  object-fit: cover;
  display: block;
  margin-bottom: 28px;
  box-sizing: border-box;
}
.she-featured-article__kicker {
  margin: 0;
  color: var(--she-accent);
}
.she-featured-article__title {
  margin: 14px 0 0;
  max-width: 24ch;
}
.she-featured-article__title a { color: inherit; }
.she-featured-article__title a:hover { color: var(--she-teal-deep); }
.she-featured-article__dek {
  margin: 18px 0 0;
  font-family: var(--wp--preset--font-family--display);
  font-size: 19px;
  line-height: 1.5;
  color: var(--she-ink-2);
  max-width: 58ch;
  text-wrap: pretty;
}
.she-featured-article__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--she-ink-3);
}
.she-featured-article__btn { margin-top: 28px; }

/* Newsletter card — right column / sticky aside. */
.she-newsletter-card {
  background: var(--she-ink);
  color: var(--she-paper);
  padding: 36px;
  position: sticky;
  top: 100px;
  align-self: start;
}
.she-newsletter-card__heading {
  font-family: var(--wp--preset--font-family--display);
  font-size: 28px;
  line-height: 1.2;
  color: var(--she-paper);
  margin: 14px 0 0;
  font-weight: 400;
}
.she-newsletter-card__body {
  color: rgba(248, 244, 237, 0.72);
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.6;
}
.she-newsletter-card__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.she-newsletter-card__field { display: block; }
.she-newsletter-card__field input {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--she-paper);
  padding: 14px 16px;
  font-family: var(--wp--preset--font-family--body);
  font-size: 15px;
  outline: none;
  border-radius: 0;
  transition: border-color .15s;
}
.she-newsletter-card__field input::placeholder {
  color: rgba(248, 244, 237, 0.4);
}
.she-newsletter-card__field input:focus {
  border-color: var(--she-paper);
}
.she-newsletter-card .she-btn-pill {
  align-self: flex-start;
  background: var(--she-teal);
  border-color: var(--she-teal);
  color: var(--she-paper);
}
.she-newsletter-card .she-btn-pill:hover {
  background: var(--she-teal-deep);
  border-color: var(--she-teal-deep);
}
.she-newsletter-card__footer {
  margin: 20px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 12px;
  color: rgba(248, 244, 237, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}
.she-newsletter-card__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--she-teal);
  flex-shrink: 0;
}

/* Topic index — auto-fit grid of topic cards. */
.she-topic-index__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.she-topic-index__head .she-eyebrow,
.she-topic-index__head .she-h-2 { margin: 0; }
.she-topic-index__meta {
  font-size: 13px;
  color: var(--she-ink-3);
}
.she-topic-index__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  border-top: 1px solid var(--she-rule);
  border-left: 1px solid var(--she-rule);
}
.she-topic-index__cell {
  padding: 24px 28px;
  border-right: 1px solid var(--she-rule);
  border-bottom: 1px solid var(--she-rule);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: background .15s;
}
a.she-topic-index__cell:hover {
  background: var(--she-paper-3);
}
.she-topic-index__num {
  font-family: var(--wp--preset--font-family--display);
  font-size: 11px;
  font-style: italic;
  color: var(--she-teal-deep);
  margin-bottom: 4px;
  grid-column: 1;
}
.she-topic-index__name {
  font-family: var(--wp--preset--font-family--display);
  font-size: 19px;
  line-height: 1.2;
  color: var(--she-ink);
  grid-column: 1;
}
.she-topic-index__count-wrap {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
  color: var(--she-ink-3);
  align-self: end;
}
.she-topic-index__count-wrap > span:last-child { color: var(--she-ink-4); }

/* Article list — long-form list of article rows. */
.she-article-list__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.she-article-list__head .she-h-2 { margin: 0; }
.she-article-list__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.she-article-list__rows {
  border-top: 1px solid var(--she-ink);
}
.she-article-list__row {
  display: grid;
  grid-template-columns: 60px 120px minmax(0, 1fr) 140px 40px;
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--she-rule);
  text-decoration: none;
  color: inherit;
}
.she-article-list__title {
  transition: color .2s;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color .2s, text-decoration-color .2s;
}
a.she-article-list__row:hover .she-article-list__title {
  color: var(--she-accent);
  text-decoration-color: currentColor;
}
.she-article-list__num {
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  color: var(--she-ink-4);
  font-size: 16px;
}
.she-article-list__kicker {
  margin: 0;
  color: var(--she-accent);
}
.she-article-list__title {
  font-family: var(--wp--preset--font-family--display);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.3;
  margin: 0;
  text-wrap: pretty;
  color: var(--she-ink);
}
.she-article-list__meta {
  font-size: 13px;
  color: var(--she-ink-3);
}
.she-article-list__arrow {
  color: var(--she-ink-3);
  text-align: right;
}
.she-article-list__load-more {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
@media (max-width: 720px) {
  .she-article-list__row {
    grid-template-columns: 40px minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    row-gap: 6px;
    column-gap: 16px;
    padding: 20px 0;
  }
  .she-article-list__num { grid-row: 1; grid-column: 1; }
  .she-article-list__kicker { grid-row: 1; grid-column: 2; }
  .she-article-list__title { grid-row: 2; grid-column: 1 / -1; }
  .she-article-list__meta { grid-row: 3; grid-column: 1 / -1; }
  .she-article-list__arrow { display: none; }
}

/* ── Booking options (mentoring) ── */
.she-booking-options { display: flex; flex-direction: column; gap: 24px; }
.she-booking-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  background: transparent;
  border: 1px solid var(--she-rule);
  text-decoration: none;
  color: inherit;
  transition: border-color .15s, background-color .15s;
}
.she-booking-card:hover { border-color: var(--she-ink); }
.she-booking-card--highlight {
  background: var(--she-paper-2);
  border-color: transparent;
}
.she-booking-card--highlight:hover { border-color: var(--she-teal); }
.she-booking-card__letter {
  font-family: var(--wp--preset--font-family--display);
  font-size: 36px;
  color: var(--she-teal);
  width: 40px;
}
.she-booking-card__title {
  font-family: var(--wp--preset--font-family--display);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 6px;
}
.she-booking-card__body {
  font-size: 14px;
  color: var(--she-ink-3);
  margin: 0;
  max-width: 54ch;
}
.she-booking-card__cta {
  color: var(--she-teal-deep);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .she-booking-card { grid-template-columns: auto 1fr; padding: 24px; gap: 16px; }
  .she-booking-card__cta { grid-column: 1 / -1; }
}

/* ── Pricing (mentoring) ── */
.she-pricing__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 16px;
}
.she-pricing__eyebrow { color: var(--she-teal); margin: 0 0 12px; }
.has-ink-background-color .she-pricing__eyebrow { color: var(--she-teal); }
.she-pricing__heading { margin: 0; }
.has-ink-background-color .she-pricing__heading { color: var(--she-paper); }
.she-pricing__intro {
  font-size: 16px;
  margin: 0;
  max-width: 36ch;
}
.has-ink-background-color .she-pricing__intro { color: rgba(255,255,255,0.7); }
.she-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.15);
}
.she-pricing-tier {
  background: var(--she-ink);
  padding: 36px 24px;
  position: relative;
  color: var(--she-paper);
}
.she-pricing-tier--featured { background: var(--she-teal-deep); }
.she-pricing-tier__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.2);
  padding: 4px 8px;
  border-radius: 999px;
}
.she-pricing-tier__num {
  font-family: var(--wp--preset--font-family--display);
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.she-pricing-tier__label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.she-pricing-tier__price {
  margin-top: 24px;
  font-family: var(--wp--preset--font-family--display);
  font-size: 28px;
}
.she-pricing-tier__sub { font-size: 12px; color: rgba(255,255,255,0.55); }
.she-pricing-tier__body {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}
.she-pricing__footnote {
  margin-top: 32px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* ── Mentoring fit grid ── */
.she-fit__heading { margin: 0; }
.she-fit-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--she-rule);
  border-left: 1px solid var(--she-rule);
}
.she-fit-cell {
  padding: 28px 32px;
  border-bottom: 1px solid var(--she-rule);
  border-right: 1px solid var(--she-rule);
}
.she-fit-cell__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.she-fit-cell__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}
.she-fit-cell__icon--yes { background: var(--she-teal); color: #fff; }
.she-fit-cell__icon--no { background: var(--she-paper-2); color: var(--she-ink-3); }
.she-fit-cell__title {
  font-family: var(--wp--preset--font-family--display);
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}
.she-fit-cell__body {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  color: var(--she-ink-3);
}
@media (max-width: 720px) {
  .she-fit-grid { grid-template-columns: 1fr; }
}


/* ── Single-post: share links ── */
.she-share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 48px 0;
  padding-top: 24px;
  border-top: 1px solid var(--she-rule);
}
.she-share-links__label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--she-ink-3);
  margin-right: 8px;
}
.she-share-links__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding: 8px 14px;
  border: 1px solid var(--she-rule);
  border-radius: 999px;
  color: var(--she-ink-2);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .15s, color .15s;
  font-family: inherit;
}
.she-share-links__btn:hover {
  border-color: var(--she-ink);
  color: var(--she-ink);
}

/* ── Single-post: author bio ── */
.she-post-author {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px;
  background: var(--she-paper-2);
  margin: 56px auto;
  max-width: 68ch;
}
.she-post-author__avatar img,
.she-post-author__img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.she-post-author__body { display: flex; flex-direction: column; gap: 8px; }
.she-post-author__body .she-eyebrow { margin: 0; }
.she-post-author__body .she-h-2 { margin: 0; }
.she-post-author__bio {
  font-size: 15px;
  line-height: 1.6;
  color: var(--she-ink-2);
  margin: 4px 0 0;
  max-width: 56ch;
}
@media (max-width: 540px) {
  .she-post-author { grid-template-columns: 1fr; padding: 24px; }
}

/* ── Single-post: related posts ── */
.she-related-posts {
  margin: 64px 0 0;
  padding-top: 48px;
  border-top: 1px solid var(--she-rule);
}
.she-related-posts__heading {
  margin: 0 0 32px;
}
