@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,500&family=Work+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg: #F6F1E7;
  --bg-alt: #EFE6D4;
  --panel: #FFFDF8;
  --ink: #2B2420;
  --ink-soft: #6B6053;
  --accent: #A8552E;
  --accent-deep: #8A4324;
  --blush: #E9C7BC;
  --blush-soft: #F3DFD6;
  --green: #4A5D3A;
  --border: #DDD2BE;
  --radius: 4px;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Work Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

h1, h2, h3, .display {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1.1em; max-width: 62ch; }
a { color: var(--accent-deep); }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Announcement bar ---------- */

.announce-bar {
  display: block;
  background: var(--accent);
  color: var(--panel);
  text-align: center;
  padding: 9px 16px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.announce-bar span { margin-left: 4px; }
.announce-bar:hover { background: var(--accent-deep); color: var(--panel); }

/* ---------- Header ---------- */

header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  display: block;
  height: 44px;
  width: auto;
}

footer.site .logo-img {
  height: 38px;
  padding: 8px 12px;
  background: var(--bg);
  border-radius: var(--radius);
}

nav.links {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav.links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.97rem;
  font-weight: 500;
}

nav.links a:hover, nav.links a.active { color: var(--accent-deep); }

/* The nav "Book a Call" button — keep its light text; nav.links a would
   otherwise override .btn's color and leave it near-invisible on the fill. */
nav.links a.btn,
nav.links a.btn:hover,
nav.links a.btn.active { color: #FFFDF8; }

.btn {
  display: inline-block;
  background: var(--accent);
  color: #FFFDF8;
  padding: 12px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.96rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}
.btn:hover { background: var(--accent-deep); color: #FFFDF8; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  padding: 11px 23px;
  border-radius: var(--radius);
  border: 1px solid var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.96rem;
}
.btn-outline:hover { border-color: var(--accent-deep); color: var(--accent-deep); }

.menu-toggle { display: none; }

/* ---------- Hero ---------- */

.hero {
  padding: 76px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 56px;
  align-items: center;
}

/* Hero client photo with floating stat bubbles */
.hero-photo {
  position: relative;
  margin: 0;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 12%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
}

.stat-bubble {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 0 12px 34px rgba(43, 36, 32, 0.16);
}

.stat-bubble-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.stat-bubble-value {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.stat-bubble--a { left: -24px; bottom: 28px; }
.stat-bubble--b { right: -24px; bottom: 104px; }

/* Hero headline with rotating condition word */
.hero-h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 24px;
}

.hero-h1-line {
  display: block;
  color: var(--ink);
}

.hero-h1-line--ink { color: var(--ink); }

.hero-h1-rotator {
  position: relative;
  display: block;
  height: 1.12em;
  perspective: 600px;
}

.hero-h1-rotator > span {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  font-style: italic;
  color: var(--accent-deep);
  opacity: 0;
  transform-origin: 50% 0;
  animation: hero-word 15s linear infinite;
}

.hero-h1-rotator > span:nth-child(1) { animation-delay: 0s; }
.hero-h1-rotator > span:nth-child(2) { animation-delay: 3s; }
.hero-h1-rotator > span:nth-child(3) { animation-delay: 6s; }
.hero-h1-rotator > span:nth-child(4) { animation-delay: 9s; }
.hero-h1-rotator > span:nth-child(5) { animation-delay: 12s; }

@keyframes hero-word {
  0%    { opacity: 0; transform: translateY(0.15em) rotateX(-90deg); }
  2%    { opacity: 1; transform: translateY(0) rotateX(0deg); }
  18%   { opacity: 1; transform: translateY(0) rotateX(0deg); }
  20%   { opacity: 0; transform: translateY(-0.15em) rotateX(90deg); }
  100%  { opacity: 0; transform: translateY(-0.15em) rotateX(90deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-h1-rotator > span { animation: none; }
  .hero-h1-rotator > span:nth-child(1) { opacity: 1; }
}

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

.hero-sub {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 30px;
}

.hero-panel {
  background: var(--blush-soft);
  border: 1px solid var(--blush);
  border-radius: var(--radius);
  padding: 30px 28px;
  position: relative;
}

.hero-panel .eyebrow {
  font-size: 0.85rem;
  color: var(--accent-deep);
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-panel ul { margin: 0; padding: 0; list-style: none; }
.hero-panel li {
  padding: 10px 0;
  border-top: 1px solid rgba(168, 85, 46, 0.18);
  font-size: 0.98rem;
  color: var(--ink);
}
.hero-panel li:first-child { border-top: none; }

/* "How coaching works" — its own section just below the hero */
.coaching-rhythm { padding: 8px 0 40px; }
.coaching-rhythm .hero-panel { max-width: 560px; }

/* Animated "rotating spotlight" — highlights each row in sequence.
   4 rows x 3s each = a 12s loop. */
.tc-spotlight-list li {
  position: relative;
  margin: 0 -14px;
  padding-left: 14px;
  padding-right: 14px;
  border-radius: var(--radius);
  animation: tc-spotlight 12s linear infinite;
}
.tc-spotlight-list li:nth-child(1) { animation-delay: 0s; }
.tc-spotlight-list li:nth-child(2) { animation-delay: 3s; }
.tc-spotlight-list li:nth-child(3) { animation-delay: 6s; }
.tc-spotlight-list li:nth-child(4) { animation-delay: 9s; }

@keyframes tc-spotlight {
  0%, 25%, 100% {
    background: transparent;
    box-shadow: inset 0 0 0 0 var(--accent-deep);
    color: var(--ink);
    transform: translateX(0);
  }
  3%, 22% {
    background: var(--panel);
    box-shadow: inset 4px 0 0 0 var(--accent-deep), 0 6px 18px rgba(43, 36, 32, 0.14);
    color: var(--accent-deep);
    transform: translateX(4px);
  }
}

/* ---------- Trust badge strip ---------- */

.trust-strip {
  padding: 30px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.trust-badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 22px;
}

.trust-badge svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent);
}

.trust-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
}

.trust-num {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}

.trust-label {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

@media (max-width: 860px) {
  .trust-badges { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .trust-badges { grid-template-columns: 1fr; }
}

/* ---------- Sections ---------- */

section { padding: 64px 0; }
section.alt { background: var(--bg-alt); }

.section-head { max-width: 60ch; margin-bottom: 40px; }
.section-head p { color: var(--ink-soft); }

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature h3 {
  color: var(--accent-deep);
  margin-bottom: 10px;
}
.feature p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Sequence (Method page) ---------- */

.sequence { position: relative; max-width: 760px; }

.seq-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding-bottom: 48px;
  position: relative;
}

.seq-item:last-child { padding-bottom: 0; }

.seq-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--panel);
  border: 2px solid var(--accent);
  color: var(--accent-deep);
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Gray track between steps */
.seq-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 52px;
  bottom: -48px;
  width: 2px;
  background: var(--border);
}

/* Accent fill drawn over the track — grown by IntersectionObserver on scroll */
.seq-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 25px;
  top: 52px;
  bottom: -48px;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.7s ease;
}

.seq-item.line-filled::after { transform: scaleY(1); }

@media (prefers-reduced-motion: reduce) {
  .seq-item:not(:last-child)::after { transition: none; }
}

.seq-item h3 { margin-bottom: 8px; }
.seq-item p { color: var(--ink-soft); }

/* ---------- Cards ---------- */

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.card.flagship {
  border: 2px solid var(--accent);
  background: #FFFBF5;
  position: relative;
}

.card .tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-deep);
  background: var(--blush-soft);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* Ribbon badge — same type treatment as .tag, filled for emphasis,
   straddling the top edge of the flagship card. */
.card .ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #FFFDF8;
  background: var(--accent);
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(43, 36, 32, 0.16);
}

.card ul { padding-left: 20px; margin: 20px 0; }
.card li { margin-bottom: 8px; color: var(--ink-soft); font-size: 0.97rem; }

.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 14px;
}

/* ---------- Program quiz ---------- */

.quiz { max-width: 640px; }

.quiz-q {
  border: none;
  padding: 0;
  margin: 0 0 26px;
}

.quiz-q legend {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 12px;
  padding: 0;
}

.quiz-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  margin-bottom: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  font-size: 0.97rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.quiz-opt:hover { border-color: var(--accent); }

.quiz-opt input {
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.quiz-opt:has(input:checked) {
  border-color: var(--accent);
  background: var(--blush-soft);
}

.quiz-error { color: var(--accent-deep); margin: 12px 0 0; }

.quiz-result {
  margin-top: 28px;
  border: 2px solid var(--accent);
  background: var(--blush-soft);
}

.quiz-result h3 { margin-bottom: 8px; }
.quiz-result .btn { margin: 8px 12px 0 0; }
.quiz-result .btn-outline { margin-top: 8px; }

.card.quiz-target { animation: quiz-flash 2s ease; }

@keyframes quiz-flash {
  0%, 100% { box-shadow: 0 0 0 0 rgba(168, 85, 46, 0); }
  20% { box-shadow: 0 0 0 4px var(--blush); }
}

@media (prefers-reduced-motion: reduce) {
  .card.quiz-target { animation: none; }
}

/* ---------- Video testimonials ---------- */

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 820px;
}

.video-card {
  padding: 0;
  overflow: hidden;
}

.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  margin: 0;
  padding: 0;
  border: 0;
  background: var(--bg-alt);
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.video-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-thumb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 36%;
  background: linear-gradient(to top, rgba(18, 13, 10, 0.82), rgba(18, 13, 10, 0));
  pointer-events: none;
}

.video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--panel);
  box-shadow: 0 4px 16px rgba(43, 36, 32, 0.3);
  transition: transform 0.18s ease, background 0.18s ease;
}

.video-play svg {
  width: 18px;
  height: 18px;
  margin-left: 2px;
}

.video-thumb:hover .video-play,
.video-thumb:focus-visible .video-play {
  transform: scale(1.1);
  background: var(--accent-deep);
}

.video-name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: 0;
  padding: 9px 12px;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  line-height: 1.3;
  text-align: left;
  color: var(--panel);
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 860px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 420px;
  }
}

@media (max-width: 460px) {
  .video-grid {
    grid-template-columns: 1fr;
    max-width: 240px;
  }
}

/* ---------- Client story cards ---------- */

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.story-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.story-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}

.story-photos figure {
  position: relative;
  margin: 0;
}

.story-photos img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: var(--bg-alt);
}

.story-photos figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--panel);
  background: rgba(43, 36, 32, 0.72);
  padding: 3px 9px;
  border-radius: 3px;
}

/* Single combined before/after image (caption already baked into the file) */
.story-photos.is-single {
  display: block;
  background: none;
  gap: 0;
}

.story-photos.is-single img,
.story-grid.is-preview .story-photos.is-single img {
  height: auto;
  max-height: 360px;
  object-fit: contain;
  object-position: top;
}

.story-body {
  padding: 22px 28px 26px;
}

.story-body .tag { margin-bottom: 12px; }
.story-body .tag:last-child { margin-bottom: 0; }

.story-meta {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 12px;
}

.story-name {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: var(--ink);
}

.story-city {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.story-quote {
  margin: 0;
  color: var(--ink-soft);
  font-style: italic;
  border-left: 2px solid var(--accent);
  padding-left: 16px;
}

/* 3-up preview strip (homepage) */
.story-grid.is-preview { grid-template-columns: repeat(3, 1fr); }
.story-grid.is-preview .story-photos img { height: 176px; }

.story-preview-more { margin: 24px 0 0; }

.link-more {
  display: inline-block;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--accent-deep);
  text-decoration: none;
}
.link-more:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .story-grid,
  .story-grid.is-preview { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .story-grid,
  .story-grid.is-preview { grid-template-columns: 1fr; }
}

/* ---------- Pull quote ---------- */

.pull-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--accent-deep);
  line-height: 1.5;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
  margin: 36px 0;
  max-width: 52ch;
}

/* ---------- About: founder portrait + story ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 52px;
  align-items: start;
}

.about-portrait {
  margin: 0;
  position: sticky;
  top: 104px;
}

.about-portrait img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(43, 36, 32, 0.12);
  background: var(--bg-alt);
}

.about-portrait figcaption {
  margin-top: 12px;
  font-family: 'Fraunces', serif;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.about-story {
  max-width: 62ch;
}

.about-story p:first-child {
  margin-top: 0;
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-portrait {
    position: static;
    max-width: 300px;
  }
}

/* ---------- FAQ ---------- */

details.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
details.faq-item summary {
  font-family: 'Fraunces', serif;
  font-size: 1.12rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  font-family: 'Work Sans', sans-serif;
  margin-left: 16px;
  flex-shrink: 0;
}
details.faq-item[open] summary::after { content: '−'; }
details.faq-item .faq-body {
  padding-top: 14px;
  color: var(--ink-soft);
  max-width: 68ch;
}

/* ---------- Footer ---------- */

footer.site {
  background: var(--ink);
  color: #E7DFD1;
  padding: 52px 0 32px;
  margin-top: 40px;
}
footer.site a { color: #E7DFD1; }
footer.site .foot-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
footer.site .logo { color: #F6F1E7; }
footer.site nav { display: flex; gap: 22px; flex-wrap: wrap; }
footer.site nav a { text-decoration: none; font-size: 0.92rem; opacity: 0.85; }
footer.site nav a:hover { opacity: 1; }
footer.site .fine {
  font-size: 0.85rem;
  opacity: 0.6;
  border-top: 1px solid rgba(231, 223, 209, 0.15);
  padding-top: 22px;
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--green);
  color: #F4F1E6;
  padding: 56px 0;
  text-align: left;
}
.cta-band h2 { color: #F4F1E6; }
.cta-band p { color: #DCE3D3; }
.cta-band .btn { background: #F4F1E6; color: var(--green); }
.cta-band .btn:hover { background: #FFFFFF; }

/* ---------- Stats bar (large Fraunces number + small label) ---------- */

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.stat-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  line-height: 1;
  color: var(--accent-deep);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--ink-soft);
  max-width: 22ch;
}

@media (max-width: 860px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr; }
}

/* ---------- Photo strip (Real Influencers) ---------- */

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.photo-strip img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
}

@media (max-width: 860px) {
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .photo-strip { grid-template-columns: 1fr; }
}

/* ---------- Flagship promo (corporate-wellness.html) ----------
   Scoped so the shared .card.flagship / .ribbon / .tag used on
   programs.html are left exactly as they were. */

.flagship-promo .card.flagship {
  border-width: 3px;
  box-shadow: 0 18px 46px rgba(43, 36, 32, 0.16);
}

.flagship-promo .ribbon {
  font-size: 1rem;
  padding: 9px 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(43, 36, 32, 0.28);
}

.flagship-promo .tag {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 18px;
  margin-bottom: 20px;
}

/* ---------- Trusted-by strip ---------- */

.trusted-strip { padding: 4px 0 48px; }

.trusted-label {
  margin: 0 0 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.trusted-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px 28px;
  list-style: none;
  margin: 0;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trusted-list li {
  font-variant: small-caps;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
}

.trusted-logo {
  display: block;
  height: 30px;
  width: auto;
}

/* Schindler's mark is a stacked icon+wordmark, so at the shared height
   it reads visually smaller than the wider landscape logos next to it. */
.trusted-logo--lg {
  height: 46px;
}

/* ---------- Utility ---------- */

.center { text-align: center; }
.small { font-size: 0.9rem; color: var(--ink-soft); }
.mt-0 { margin-top: 0; }

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { order: -1; }
  .hero-photo img { max-height: 440px; }
  .stat-bubble--a { left: 10px; bottom: 12px; }
  .stat-bubble--b { right: 10px; bottom: 84px; }
  .three-col { grid-template-columns: 1fr; }
  .program-grid { grid-template-columns: 1fr; }
  nav.links { display: none; }
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--ink);
    cursor: pointer;
  }
  nav.links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 20px 28px 26px;
    gap: 16px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .tc-spotlight-list li { animation: none; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 2px;
}
