/* Therapist starter — page templates stylesheet.
 *
 * Loaded by parent theme as {child}/assets/css/therapist-pages.css
 * (copied during install). Two cohorts:
 *
 *   1. Inner pages (Services / About / FAQ / Contact) — default .t-root
 *      scope. Fraunces + Instrument Sans + warmer #FAF3EC palette.
 *   2. Home page — every .t-root selector qualified with .t-home so its
 *      Newsreader + Geist + cooler #F5F1EC palette only applies when the
 *      .php template adds the .t-home class to its outermost wrapper.
 *
 * Some selectors appear in both cohorts (e.g. .t-section). CSS cascade
 * resolves overlaps: the cohort-2 (.t-home) version wins on the home
 * page; the cohort-1 (default) version applies everywhere else.
 *
 * Fonts are loaded externally:
 *   - Newsreader + Geist via @import in starter-templates/therapist/site.css
 *   - Fraunces + Instrument Sans via tokens.typography (Google Fonts Manager)
 */

/* === Cohort 1: Inner pages (Fraunces + Instrument Sans) === */
/* --- Tokens + base --------------------------------------------------- */
.t-root {
  --t-cream: #FAF3EC;
  --t-cream-alt: #F0E5DA;
  --t-ink: #2B1F18;
  --t-ink-soft: rgba(43, 31, 24, 0.72);
  --t-terra: #B0543A;
  --t-terra-dark: #8A3E27;
  --t-muted: #5C4A3E;
  --t-subtle: #8A6E5F;
  --t-border: #E6D4C2;
  --t-ease: cubic-bezier(.2, .7, .2, 1);
  color: var(--t-ink);
  font-family: 'Instrument Sans', 'Helvetica Neue', system-ui, sans-serif;
  font-feature-settings: "ss01";
}
.t-root *, .t-root *::before, .t-root *::after { box-sizing: border-box; }

/* --- Typography ------------------------------------------------------- */
.t-display {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 0;
  font-weight: 450;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.t-serif {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: "opsz" 32, "SOFT" 60;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.t-italic {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.t-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75em;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--t-terra);
  margin: 0;
}
.t-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  display: inline-block;
  transform-origin: left;
  animation: t-rule-in 0.9s var(--t-ease) both;
  animation-delay: 0.05s;
}
.t-eyebrow-center { justify-content: center; }
.t-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--t-terra);
  margin: 2rem 0;
  border: 0;
  transform-origin: left;
  animation: t-rule-in 0.9s var(--t-ease) both;
}
.t-rule-center { margin-left: auto; margin-right: auto; transform-origin: center; }

@keyframes t-rule-in { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* --- Hero word reveal ------------------------------------------------- */
.t-hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(1.1rem);
  animation: t-rise 1.1s var(--t-ease) forwards;
}
.t-hero-word:nth-child(1) { animation-delay: 0s; }
.t-hero-word:nth-child(2) { animation-delay: .08s; }
.t-hero-word:nth-child(3) { animation-delay: .16s; }
.t-hero-word:nth-child(4) { animation-delay: .24s; }
.t-hero-word:nth-child(5) { animation-delay: .32s; }
.t-hero-word:nth-child(6) { animation-delay: .40s; }
.t-hero-word:nth-child(7) { animation-delay: .48s; }
.t-hero-word:nth-child(8) { animation-delay: .56s; }
.t-hero-word .amp { color: var(--t-terra); font-style: italic; }
@keyframes t-rise { to { opacity: 1; transform: translateY(0); } }

.t-fade-in {
  opacity: 0;
  animation: t-fade 0.9s var(--t-ease) forwards;
  animation-delay: .55s;
}
@keyframes t-fade { to { opacity: 1; } }

/* --- Scroll-driven reveals ------------------------------------------- */
@supports (animation-timeline: view()) {
  .t-reveal {
    opacity: 0;
    transform: translateY(32px);
    animation: t-reveal-in linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 35%;
  }
}
@keyframes t-reveal-in { to { opacity: 1; transform: translateY(0); } }

/* --- Scroll progress indicator --------------------------------------- */
@supports (animation-timeline: scroll(root)) {
  .t-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px; width: 100%;
    background: var(--t-terra);
    transform-origin: left;
    transform: scaleX(0);
    z-index: 99;
    animation: t-scroll-bar linear;
    animation-timeline: scroll(root);
  }
}
@keyframes t-scroll-bar { to { transform: scaleX(1); } }

/* --- Link underline --------------------------------------------------- */
.t-link {
  position: relative;
  color: var(--t-terra);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  padding-bottom: 2px;
}
.t-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--t-ease);
}
.t-link:hover::after { transform: scaleX(1); }
.t-link:hover .t-arrow { transform: translateX(4px); }
.t-arrow { display: inline-block; transition: transform .4s var(--t-ease); }

/* --- Primary button --------------------------------------------------- */
.t-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: 1rem 2.25rem;
  border-radius: 999px;
  background: var(--t-terra);
  color: var(--t-cream) !important;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform .4s var(--t-ease), box-shadow .4s var(--t-ease);
}
.t-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--t-ink);
  z-index: -1;
  transform: translateY(101%);
  transition: transform .55s var(--t-ease);
}
.t-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -18px rgba(176, 84, 58, 0.55);
}
.t-btn:hover::before { transform: translateY(0); }
.t-btn:hover .t-arrow { transform: translateX(6px); }
.t-btn-ghost {
  background: transparent;
  color: var(--t-cream) !important;
  border: 1px solid rgba(250, 243, 236, 0.35);
}
.t-btn-ghost::before { background: rgba(250, 243, 236, 0.08); }
/* --- Dark CTA --------------------------------------------------------- */
.t-cta-dark {
  position: relative;
  overflow: hidden;
  background: var(--t-ink);
  color: var(--t-cream);
}
.t-cta-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 30%, rgba(176, 84, 58, 0.22), transparent 55%),
    radial-gradient(circle at 78% 78%, rgba(176, 84, 58, 0.14), transparent 60%);
  pointer-events: none;
  opacity: 0.9;
}
.t-cta-dark > * { position: relative; }
.t-cta-h {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  font-weight: 450;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  /* Explicit color — parent theme's `h1...h6 { color: ... }` directly
     hits this <h2> and overrides the inherited cream from .t-cta-dark.
     Set 0,1,0 specificity to win the cascade. */
  color: var(--t-cream);
}
.t-cta-h em {
  font-style: italic;
  color: #E8A896;
}
.t-cta-sub {
  color: rgba(230, 212, 194, 0.85);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 1.25rem 0 0;
}
.t-cta-meta {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(230, 212, 194, 0.6);
  margin: 2.5rem 0 0;
  font-weight: 500;
}

/* --- Portrait treatment ---------------------------------------------- */
.t-portrait {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(43, 31, 24, 0.05),
    0 30px 60px -25px rgba(43, 31, 24, 0.28);
  isolation: isolate;
}
.t-portrait img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 3s var(--t-ease);
}
.t-portrait:hover img { transform: scale(1.04); }
.t-portrait-caption {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  padding: .4rem .85rem;
  background: var(--t-cream);
  color: var(--t-ink);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
}

/* --- Pull quote ------------------------------------------------------- */
.t-pullquote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  line-height: 1.3;
  letter-spacing: -0.018em;
  color: var(--t-ink);
  position: relative;
  padding-left: 2rem;
  border-left: 1px solid var(--t-terra);
  margin: 0;
}
.t-pullquote-cite {
  display: block;
  margin-top: 1.5rem;
  font-style: normal;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: .72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--t-subtle);
  font-weight: 600;
}

/* --- Refined details / accordion ------------------------------------- */
.t-faq { margin: 0; }
.t-detail {
  border-top: 1px solid var(--t-border);
  transition: background-color .4s var(--t-ease);
}
.t-detail:last-child { border-bottom: 1px solid var(--t-border); }
.t-detail[open] { background: rgba(240, 229, 218, 0.4); }
.t-detail summary {
  list-style: none;
  position: relative;
  padding: 1.5rem 3rem 1.5rem 0;
  cursor: pointer;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  letter-spacing: -0.01em;
  color: var(--t-ink);
  transition: color .3s var(--t-ease), padding-left .4s var(--t-ease);
}
.t-detail summary::-webkit-details-marker { display: none; }
.t-detail summary:hover { color: var(--t-terra); padding-left: .5rem; }
.t-detail[open] summary { color: var(--t-terra); padding-left: .5rem; }
.t-detail summary::after {
  content: '';
  position: absolute;
  right: .5rem; top: 50%;
  width: 14px; height: 14px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-75%) rotate(45deg);
  transition: transform .4s var(--t-ease);
}
.t-detail[open] summary::after {
  transform: translateY(-25%) rotate(-135deg);
}
.t-detail-body {
  padding: 0 2rem 1.75rem .5rem;
  color: var(--t-muted);
  line-height: 1.75;
  max-width: 60ch;
}
/* --- Reduced motion -------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .t-hero-word,
  .t-fade-in,
  .t-reveal,
  .t-rule,
  .t-eyebrow::before {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .t-btn,
  .t-link::after,
  .t-detail summary,
  .t-portrait img {
    transition: none !important;
  }
}

/* --- Layout helpers --------------------------------------------------- */
.t-wrap { max-width: 1120px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.t-wrap-sm { max-width: 720px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.t-wrap-md { max-width: 880px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.t-section { padding: clamp(4.5rem, 10vw, 8rem) 0; }
.t-section-sm { padding: clamp(3rem, 6vw, 5rem) 0; }
.t-bg-cream { background: var(--t-cream); }
.t-bg-alt { background: var(--t-cream-alt); }
.t-center { text-align: center; }
.t-grid-2 { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.t-grid-about { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.t-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; }
.t-grid-contact { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 768px) {
  .t-grid-about, .t-grid-contact { grid-template-columns: 1fr; }
}

.t-lede {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: "opsz" 32, "SOFT" 80;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  line-height: 1.45;
  letter-spacing: -0.012em;
  color: var(--t-muted);
}

.t-prose p { color: var(--t-muted); line-height: 1.75; margin: 0 0 1.25rem; font-size: 1.05rem; }
.t-prose p:last-child { margin-bottom: 0; }

/* --- Contact ---------------------------------------------------------- */
.t-contact-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.25rem 0;
  border-top: 1px solid var(--t-border);
  gap: 1rem;
}
.t-contact-row:last-child { border-bottom: 1px solid var(--t-border); }
.t-contact-label {
  font-size: .72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--t-subtle);
  font-weight: 600;
  white-space: nowrap;
}
.t-contact-value {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--t-ink);
  text-align: right;
}
.t-contact-value a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--t-border); transition: border-color .3s var(--t-ease); }
.t-contact-value a:hover { border-color: var(--t-terra); }

.t-map {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 50px -20px rgba(43, 31, 24, 0.22);
  filter: saturate(.85) contrast(1.02);
}
.t-map iframe { display: block; width: 100%; height: 100%; border: 0; }
/* --- Credentials list ------------------------------------------------ */
.t-credentials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}
.t-credentials li {
  display: flex;
  gap: 2rem;
  align-items: baseline;
  padding: 1.1rem 0;
  border-top: 1px solid var(--t-border);
  color: var(--t-ink);
  font-size: 1rem;
  line-height: 1.5;
}
.t-credentials li:last-child { border-bottom: 1px solid var(--t-border); }
.t-credentials li::before {
  content: attr(data-year);
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  color: var(--t-terra);
  font-size: .9rem;
  min-width: 3rem;
  flex-shrink: 0;
}

/* --- Step ladder ----------------------------------------------------- */
.t-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  counter-reset: step;
}
.t-step { counter-increment: step; position: relative; padding-top: 2.5rem; }
.t-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: .9rem;
  letter-spacing: 0.15em;
  color: var(--t-terra);
  font-weight: 500;
}
.t-step::after {
  content: '';
  position: absolute;
  top: .95rem;
  left: 2rem;
  right: 0;
  height: 1px;
  background: var(--t-border);
}
.t-step:last-child::after { display: none; }
.t-step h4 { margin: 0 0 .5rem; font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: 1.25rem; letter-spacing: -0.01em; }
.t-step p { color: var(--t-muted); line-height: 1.65; margin: 0; font-size: .98rem; }
@media (max-width: 640px) {
  .t-step::after { display: none; }
}

/* === Cohort 2: Home page (Newsreader + Geist, scoped under .t-home) === */
/* Newsreader + Geist load via starter-templates/therapist/site.css site-wide. */

/* --- Tokens + base --------------------------------------------------- */
.t-root.t-home {
  --t-cream: #F5F1EC;
  --t-cream-alt: #EAE5DE;
  --t-ink: #1F1B17;
  --t-ink-soft: rgba(31, 27, 23, 0.72);
  --t-terra: #B0543A;
  --t-terra-dark: #8A3E27;
  --t-muted: #4A4540;
  --t-subtle: #7A736C;
  --t-border: #DDD5CB;
  --t-ease: cubic-bezier(.2, .7, .2, 1);
  color: var(--t-ink);
  font-family: 'Geist', 'Helvetica Neue', system-ui, sans-serif;
  font-feature-settings: "ss01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.t-root.t-home *, .t-root.t-home *::before, .t-root.t-home *::after { box-sizing: border-box; }

/* --- Typography ------------------------------------------------------- */
.t-home .t-display {
  font-family: 'Newsreader', 'Iowan Old Style', Georgia, serif;
  font-weight: 450;
  letter-spacing: -0.022em;
  line-height: 1.04;
  font-optical-sizing: auto;
}
.t-home .t-display .accent { color: var(--t-terra); font-weight: 600; }
.t-home .t-italic {
  font-family: 'Newsreader', 'Iowan Old Style', Georgia, serif;
  font-style: italic;
  color: var(--t-terra);
  font-weight: 500;
}
.t-home .t-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--t-terra);
  margin: 2rem 0;
  border: 0;
  transform-origin: left;
  animation: t-rule-in 0.9s var(--t-ease) both;
}
@keyframes t-rule-in { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* --- Hero word reveal ------------------------------------------------- */
.t-home .t-hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(1.1rem);
  animation: t-rise 1.1s var(--t-ease) forwards;
  margin-right: 0.28em;
}
.t-home .t-hero-word:last-child { margin-right: 0; }
.t-home .t-hero-word:nth-child(1) { animation-delay: 0s; }
.t-home .t-hero-word:nth-child(2) { animation-delay: .08s; }
.t-home .t-hero-word:nth-child(3) { animation-delay: .16s; }
.t-home .t-hero-word:nth-child(4) { animation-delay: .24s; }
.t-home .t-hero-word:nth-child(5) { animation-delay: .32s; }
.t-home .t-hero-word:nth-child(6) { animation-delay: .40s; }
@keyframes t-rise { to { opacity: 1; transform: translateY(0); } }

.t-home .t-fade-in {
  opacity: 0;
  animation: t-fade 0.9s var(--t-ease) forwards;
  animation-delay: .55s;
}
@keyframes t-fade { to { opacity: 1; } }

/* --- Scroll-driven reveals ------------------------------------------- */
@supports (animation-timeline: view()) {
  .t-home .t-reveal {
    opacity: 0;
    transform: translateY(32px);
    animation: t-reveal-in linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 35%;
  }
}
@keyframes t-reveal-in { to { opacity: 1; transform: translateY(0); } }

/* --- Scroll progress indicator --------------------------------------- */
@supports (animation-timeline: scroll(root)) {
  .t-home .t-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px; width: 100%;
    background: var(--t-terra);
    transform-origin: left;
    transform: scaleX(0);
    z-index: 99;
    animation: t-scroll-bar linear;
    animation-timeline: scroll(root);
  }
}
@keyframes t-scroll-bar { to { transform: scaleX(1); } }

/* --- Link underline --------------------------------------------------- */
.t-home .t-link {
  position: relative;
  color: var(--t-terra);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  padding-bottom: 2px;
}
.t-home .t-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--t-ease);
}
.t-home .t-link:hover::after { transform: scaleX(1); }
.t-home .t-link:hover .t-arrow { transform: translateX(4px); }
.t-home .t-arrow { display: inline-block; transition: transform .4s var(--t-ease); }

/* --- Primary button --------------------------------------------------- */
.t-home .t-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: 1rem 2.25rem;
  border-radius: 999px;
  background: var(--t-terra);
  color: var(--t-cream) !important;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform .4s var(--t-ease), box-shadow .4s var(--t-ease);
}
.t-home .t-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--t-ink);
  z-index: -1;
  transform: translateY(101%);
  transition: transform .55s var(--t-ease);
}
.t-home .t-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -18px rgba(176, 84, 58, 0.55);
}
.t-home .t-btn:hover::before { transform: translateY(0); }
.t-home .t-btn:hover .t-arrow { transform: translateX(6px); }
.t-home .t-btn-ghost {
  background: transparent;
  color: var(--t-cream) !important;
  border: 1px solid rgba(245, 241, 236, 0.35);
}
.t-home .t-btn-ghost::before { background: rgba(245, 241, 236, 0.08); }

/* --- Dark CTA --------------------------------------------------------- */
.t-home .t-cta-dark {
  position: relative;
  overflow: hidden;
  background: var(--t-ink);
  color: var(--t-cream);
}
.t-home .t-cta-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 30%, rgba(176, 84, 58, 0.22), transparent 55%),
    radial-gradient(circle at 78% 78%, rgba(176, 84, 58, 0.14), transparent 60%);
  pointer-events: none;
  opacity: 0.9;
}
.t-home .t-cta-dark > * { position: relative; }
.t-home .t-cta-h {
  font-family: 'Newsreader', 'Iowan Old Style', Georgia, serif;
  font-weight: 450;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: -0.022em;
  line-height: 1.06;
  margin: 0;
  font-optical-sizing: auto;
  /* Explicit color: inheritance from .t-cta-dark is overridden by upstream
     h2 rules in parent / child theme stylesheets, leaving the heading
     nearly invisible (dark-on-dark). Set explicitly so 0,1,0 specificity
     beats any plain `h2` rule (0,0,1). */
  color: var(--t-cream);
}
.t-home .t-cta-h em { font-style: italic; color: var(--t-terra); font-weight: 500; }
.t-home .t-cta-sub {
  color: rgba(221, 213, 203, 0.85);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 1.25rem 0 0;
}
.t-home .t-cta-meta {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(221, 213, 203, 0.6);
  margin: 2.5rem 0 0;
  font-weight: 500;
}

/* --- Portrait treatment ---------------------------------------------- */
.t-home .t-portrait {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(31, 27, 23, 0.05),
    0 30px 60px -25px rgba(31, 27, 23, 0.28);
  isolation: isolate;
  aspect-ratio: 4 / 5;
  background: var(--t-cream-alt);
}
.t-home .t-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 3s var(--t-ease);
}
.t-home .t-portrait:hover img { transform: scale(1.04); }
.t-home .t-portrait-caption {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  padding: .4rem .85rem;
  background: var(--t-cream);
  color: var(--t-ink);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
}

/* --- Pull quote ------------------------------------------------------- */
.t-home .t-pullquote {
  font-family: 'Newsreader', 'Iowan Old Style', Georgia, serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  line-height: 1.32;
  letter-spacing: -0.012em;
  color: var(--t-ink);
  position: relative;
  padding-left: 2rem;
  border-left: 1px solid var(--t-terra);
  margin: 0;
  font-optical-sizing: auto;
}
.t-home .t-pullquote-cite {
  display: block;
  margin-top: 1.5rem;
  font-style: normal;
  font-family: 'Geist', system-ui, sans-serif;
  font-size: .72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--t-subtle);
  font-weight: 600;
}

/* --- Layout helpers --------------------------------------------------- */
.t-home .t-wrap { max-width: 1120px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.t-home .t-wrap-sm { max-width: 720px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.t-home .t-wrap-md { max-width: 880px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.t-home .t-section { padding: clamp(4.5rem, 10vw, 8rem) 0; }
.t-home .t-section-sm { padding: clamp(3rem, 6vw, 5rem) 0; }
.t-home .t-bg-cream { background: var(--t-cream); }
.t-home .t-bg-alt { background: var(--t-cream-alt); }
.t-home .t-center { text-align: center; }
.t-home .t-grid-about { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 768px) {
  .t-home .t-grid-about { grid-template-columns: 1fr; }
}

.t-home .t-lede {
  font-family: 'Newsreader', 'Iowan Old Style', Georgia, serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--t-muted);
  font-optical-sizing: auto;
}

.t-home .t-prose p { color: var(--t-muted); line-height: 1.75; margin: 0 0 1.25rem; font-size: 1.05rem; }
.t-home .t-prose p:last-child { margin-bottom: 0; }

/* --- Blog teaser layout ---------------------------------------------- */
/* Card styling for [bp_recent_posts] (.bp-recent-*) lives in site.css. */
.t-home .t-articles-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  flex-wrap: wrap;
}

/* --- Reduced motion -------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .t-home .t-hero-word, .t-home .t-fade-in, .t-home .t-reveal, .t-home .t-rule {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .t-home .t-btn, .t-home .t-link::after, .t-home .t-portrait img {
    transition: none !important;
  }
}
