/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform var(--dur-fast) var(--ease),
    box-shadow var(--dur-mid) var(--ease),
    background var(--dur-fast) ease,
    color var(--dur-fast) ease,
    border-color var(--dur-fast) ease;
  white-space: nowrap;
}
.btn:hover,
.btn:focus-visible {
  text-decoration: none;
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(1px) scale(0.98);
}

/* Primary = white label on black (must beat nav/link color rules) */
.btn-primary,
a.btn-primary,
a.btn-primary:visited {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 0 0 0 var(--gold-glow);
}
.btn-primary:hover,
a.btn-primary:hover,
.btn-primary:focus-visible,
a.btn-primary:focus-visible {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 8px 28px var(--gold-glow);
}

.btn-secondary,
a.btn-secondary,
a.btn-secondary:visited {
  background: transparent;
  color: var(--black);
  border-color: var(--border);
}
.btn-secondary:hover,
a.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-gold,
a.btn-gold,
a.btn-gold:visited {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover,
a.btn-gold:hover {
  background: var(--gold-light);
  color: var(--white);
  box-shadow: 0 8px 28px var(--gold-glow);
}

/* Nav CTA sits inside .nav-links a { color: ink } — force label contrast */
.nav-links a.btn,
.nav-links a.btn:visited {
  padding: 0.65rem 1.15rem;
  border-bottom: 0;
}
.nav-links a.btn::after {
  display: none;
}
.nav-links a.btn-primary,
.nav-links a.btn-primary:visited {
  color: var(--white);
  background: var(--black);
}
.nav-links a.btn-primary:hover,
.nav-links a.btn-primary:focus-visible {
  color: var(--white);
  background: var(--gold);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-fast) ease, box-shadow var(--dur-mid) var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 6px 28px rgba(35, 31, 32, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  min-height: 44px;
}
.nav-brand:hover { color: inherit; }
.nav-brand img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  padding: 0.65rem 0.15rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}
.nav-links a[aria-current="page"] { color: var(--black); }

.nav-cta { margin-left: 0.5rem; }

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--black);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 1rem var(--gutter) 1.25rem;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s;
  }
  .nav-links.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links a::after { display: none; }
  .nav-cta {
    margin: 0.75rem 0 0;
  }
  .nav-cta .btn { width: 100%; }
}

/* Cards & bento */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition:
    transform var(--dur-mid) var(--ease),
    box-shadow var(--dur-mid) var(--ease),
    border-color var(--dur-mid) var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(139, 112, 77, 0.4);
}

.card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: var(--gold-soft);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, 1fr);
}
.bento > * {
  grid-column: span 12;
  min-height: 0;
}

@media (min-width: 700px) {
  .bento-4 .span-6 { grid-column: span 6; }
  .bento-4 .span-3 { grid-column: span 6; }
  .bento-services .span-6 { grid-column: span 6; }
  .bento-move .span-3 { grid-column: span 6; }
  .bento-os .span-6 { grid-column: span 6; }
  .bento-os .span-3 { grid-column: span 6; }
}

@media (min-width: 960px) {
  .bento-4 .span-3 { grid-column: span 3; }
  .bento-4 .span-6 { grid-column: span 6; }
  .bento-4 .span-wide { grid-column: span 8; }
  .bento-4 .span-narrow { grid-column: span 4; }
  .bento-services .span-6 { grid-column: span 6; }
  .bento-services .span-3 { grid-column: span 3; }
  .bento-move .span-3 { grid-column: span 3; }
  .bento-os .span-6 { grid-column: span 6; }
  .bento-os .span-3 { grid-column: span 3; }
  .bento-os .span-wide { grid-column: span 8; }
  .bento-os .span-narrow { grid-column: span 4; }
}

/* Section shells */
.section {
  padding: var(--section-y) 0;
}
.section-cream { background: var(--cream); }
.section-dark {
  background: linear-gradient(165deg, #1F1C1C 0%, #2A2420 55%, #231F20 100%);
  color: var(--white);
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }
.section-dark .lead,
.section-dark p { color: rgba(255, 255, 255, 0.78); }
.section-dark .eyebrow { color: var(--gold-light); }

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}
.section-head.center {
  text-align: center;
  margin-inline: auto;
}
.section-head.center .lead {
  margin-inline: auto;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3.5rem, 8vw, 5.5rem);
  background:
    radial-gradient(ellipse 70% 55% at 92% 8%, rgba(139, 112, 77, 0.16), transparent 52%),
    radial-gradient(ellipse 45% 40% at 0% 100%, rgba(139, 112, 77, 0.07), transparent 48%),
    linear-gradient(180deg, #F9F6F1 0%, var(--cream) 100%);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

.hero-copy h1 {
  margin-bottom: 0.75rem;
}
.hero-copy .sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: var(--lh-snug);
  color: var(--gray);
  max-width: 34rem;
  margin-bottom: 1rem;
}
.hero-copy .promise {
  font-size: var(--fs-base);
  color: var(--ink);
  max-width: 34rem;
}

.hero-media {
  position: relative;
}
.hero-media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--cream-deep);
}
.hero-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* Caption sits INSIDE the photo, bottom-right — frosted so the image shows through */
.hero-float {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: auto;
  max-width: min(17.5rem, 72%);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1.05rem;
  box-shadow: 0 8px 28px rgba(35, 31, 32, 0.12);
  font-size: var(--fs-sm);
  line-height: 1.45;
  color: var(--ink);
}
.hero-float strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
@media (max-width: 540px) {
  .hero-float {
    right: 0.65rem;
    bottom: 0.65rem;
    left: 0.65rem;
    max-width: none;
  }
}

/* Gap cards — gold rule instead of template number badges */
.gap-card {
  position: relative;
  padding-top: 1.35rem;
}
.gap-card .card-icon {
  width: auto;
  height: auto;
  min-width: 0;
  background: transparent;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 0.65rem;
  border-radius: 0;
  display: block;
  place-items: unset;
}
.gap-card .card-icon::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--gold);
  margin-top: 0.45rem;
}
.gap-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.45rem;
}
.gap-card p {
  font-size: var(--fs-sm);
  color: var(--gray);
  margin: 0;
}

/* MOVE tiles */
.move-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem;
  height: 100%;
}
.move-tile .letter {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.move-tile h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.move-tile p {
  font-size: var(--fs-sm);
  color: var(--gray);
  margin: 0;
}

/* Trust bar — text only until real logos exist (no empty dashed slots) */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  padding: 1.5rem 1rem;
  border-block: 1px solid var(--border);
  color: var(--gray);
  font-size: var(--fs-sm);
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
  line-height: 1.55;
}

/* Services */
.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: var(--fs-sm);
  color: var(--gray);
  flex: 1;
}
.service-card .link-more {
  margin-top: 1rem;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
}
.service-card .link-more:hover { text-decoration: underline; }

/* Strategist */
.strategist {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 800px) {
  .strategist {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
  }
}
.strategist-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.strategist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* OS teaser */
.os-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.35rem;
  height: 100%;
  transition: border-color 0.25s, background 0.25s;
}
.os-card:hover {
  border-color: rgba(139, 112, 77, 0.5);
  background: rgba(139, 112, 77, 0.08);
}
.os-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.os-card p {
  font-size: var(--fs-sm);
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}
.os-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--os-accent);
  background: rgba(232, 56, 109, 0.12);
  border: 1px solid rgba(232, 56, 109, 0.3);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

/* Page hero (inner pages) */
.page-hero {
  padding: clamp(2.5rem, 5vw, 3.75rem) 0 2.5rem;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(139, 112, 77, 0.12), transparent 55%),
    linear-gradient(180deg, #F9F6F1, var(--cream));
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 0.65rem; }
.page-hero .lead { margin: 0; max-width: 36rem; }

/* Package cards clearer hierarchy */
.package {
  transition: box-shadow var(--dur-mid) var(--ease), border-color var(--dur-mid) var(--ease);
}
.package:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
}

/* Quote / testimonial + headshot */
.quote-grid {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 760px) {
  .quote-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .quote-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.quote-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  height: 100%;
  transition:
    transform var(--dur-mid) var(--ease),
    box-shadow var(--dur-mid) var(--ease),
    border-color var(--dur-mid) var(--ease);
}
.quote-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}
.quote-card blockquote {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: 1.65;
  color: var(--ink);
  flex: 1;
}
.quote-person {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 0.15rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.quote-avatar {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--cream-deep);
  box-shadow: 0 2px 8px rgba(35, 31, 32, 0.08);
  background: var(--cream-deep);
}
.quote-meta {
  min-width: 0;
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.35;
}
.quote-meta strong {
  display: block;
  color: var(--black);
  font-size: 0.92rem;
  margin-bottom: 0.12rem;
  font-weight: 700;
}

/* Package cards (How we help) */
.package {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}
.package + .package { margin-top: 1.25rem; }
.package .best-for {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* Solutions pillars */
.pillar {
  display: grid;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 800px) {
  .pillar {
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
  }
}
.pillar h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}
.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .service-list { grid-template-columns: 1fr 1fr; }
}
.service-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--chip-text);
  padding: 0.55rem 0.7rem;
  min-height: 2.65rem;
  background: var(--chip-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition:
    border-color var(--dur-fast) var(--ease),
    background var(--dur-fast) var(--ease),
    transform var(--dur-fast) var(--ease);
}
.service-list li:hover {
  border-color: var(--gold);
  background: #E8DFD0;
  transform: translateY(-1px);
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(139, 112, 77, 0.15), transparent 60%),
    var(--cream);
}
.cta-band h2 { margin-bottom: 0.5rem; }
.cta-band .lead {
  margin-inline: auto;
  margin-bottom: 0;
}
.cta-band .btn-row {
  justify-content: center;
}
/* Single primary in end band; secondary path as text, not a second pill */
.cta-sublink {
  margin-top: 1rem;
  font-size: var(--fs-sm);
  color: var(--gray);
}
.cta-sublink a {
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}
.cta-sublink a:hover { color: var(--gold); }
.contact-line {
  margin-top: 0.75rem;
  font-size: var(--fs-sm);
  color: var(--gray);
}
.contact-line a {
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
}
.contact-line a:hover { color: var(--gold); }

/* Footer */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 1.5rem;
  font-size: var(--fs-sm);
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}
.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
.site-footer a:hover { color: var(--gold-light); }
.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 0.85rem;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 18rem;
  font-size: 0.85rem;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col li + li { margin-top: 0.45rem; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-staff {
  opacity: 0.55;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-staff:hover { opacity: 1; color: var(--gold-light); }

.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.1rem;
  margin-top: 1rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}
.footer-social a:hover { color: var(--gold-light); }
.footer-social svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

/* ——— Team page ——— */
.team-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
}
.team-card {
  display: grid;
  gap: 1.15rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  transition:
    transform var(--dur-mid) var(--ease),
    box-shadow var(--dur-mid) var(--ease),
    border-color var(--dur-mid) var(--ease);
}
@media (min-width: 520px) {
  .team-card {
    grid-template-columns: 7.5rem 1fr;
    align-items: start;
  }
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}
.team-photo {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-deep);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}
.team-title {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 0.35rem;
}
.team-org {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 0.35rem;
}
.team-pending {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-mid);
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}
.team-bio {
  font-size: var(--fs-sm);
  color: var(--gray);
  margin: 0 0 0.65rem;
  line-height: 1.55;
}
.team-li {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
}
.team-li:hover { color: var(--black); }

/* Article cards — olive + brand gold (refined: deeper pair, accent bar, stronger pills) */
.articles-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .articles-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .articles-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.article-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.5rem 1.45rem 1.4rem 1.55rem;
  border-radius: 1.1rem;
  text-decoration: none;
  color: var(--black);
  border: 1px solid transparent;
  box-shadow: 0 10px 28px rgba(35, 31, 32, 0.08);
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}
.article-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
}
/* 1 olive · 2 gold · 3 olive · 4 gold · 5 olive */
.article-card:nth-child(odd) {
  background: linear-gradient(145deg, var(--olive-soft) 0%, var(--olive-mid) 100%);
  border-color: var(--olive-border);
}
.article-card:nth-child(odd)::before {
  background: var(--olive);
}
.article-card:nth-child(odd) .article-source {
  background: var(--olive);
  color: #fff;
}
.article-card:nth-child(odd) .article-cta {
  color: var(--olive-deep);
  border-top-color: rgba(79, 93, 50, 0.18);
}
.article-card:nth-child(even) {
  background: linear-gradient(145deg, var(--article-gold-bg) 0%, var(--article-gold-mid) 100%);
  border-color: var(--article-gold-border);
}
.article-card:nth-child(even)::before {
  background: var(--gold);
}
.article-card:nth-child(even) .article-source {
  background: var(--gold);
  color: #fff;
}
.article-card:nth-child(even) .article-cta {
  color: #5C4730;
  border-top-color: rgba(139, 112, 77, 0.2);
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(35, 31, 32, 0.14);
  color: var(--black);
}
.article-source {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.article-card h3 {
  font-size: 1.1rem;
  margin: 0.1rem 0 0;
  line-height: 1.32;
  color: #1A1A1A;
  font-weight: 750;
}
.article-card p {
  font-size: var(--fs-sm);
  color: #2C2F33;
  margin: 0;
  flex: 1;
  line-height: 1.55;
}
.article-cta {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 800;
  margin-top: 0.4rem;
  padding-top: 0.75rem;
  border-top: 2px solid rgba(0, 0, 0, 0.08);
}
.article-card:hover .article-cta {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.section-thinking {
  background: linear-gradient(180deg, #F7F4EF 0%, #ECE8DB 45%, #F4F1E8 100%);
}

/* ——— Client logo strip + case studies (Results) ——— */
.client-strip {
  padding: 1.75rem 0 0.5rem;
}
.client-strip-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin: 0 0 1.15rem;
}
.client-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.client-logos li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  min-width: 6.5rem;
  padding: 0.65rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  box-shadow: 0 4px 14px rgba(35, 31, 32, 0.04);
}
.client-logos img {
  display: block;
  max-height: 2.4rem;
  max-width: 7.25rem;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.08);
  opacity: 0.9;
}
.client-logos li:hover img {
  filter: none;
  opacity: 1;
}
.case-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .case-grid {
    grid-template-columns: 1fr 1fr;
  }
  .case-grid .case-card--wide {
    grid-column: 1 / -1;
  }
}
.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.65rem 1.55rem 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.case-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--olive), var(--gold));
}
.case-card--draft {
  border-style: dashed;
  border-color: var(--border-strong);
}
.case-card--draft::after {
  content: "DRAFT — for Samantha review";
  position: absolute;
  top: 0.85rem;
  right: 0.9rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--article-gold-bg);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
}
.case-org {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.15rem;
}
.case-org img {
  height: 2rem;
  width: auto;
  max-width: 5.5rem;
  object-fit: contain;
}
.case-org strong {
  font-size: 1.05rem;
  color: var(--black);
}
.case-org span {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-mid);
  font-weight: 500;
}
.case-steps {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.case-steps li {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.65rem;
  align-items: start;
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: var(--ink);
}
.case-steps .case-k {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  padding-top: 0.15rem;
}
.case-quote {
  margin: 0;
  padding: 1rem 1.1rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 0.55rem 0.55rem 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
}
.case-quote cite {
  display: block;
  margin-top: 0.65rem;
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray);
}
.case-note {
  font-size: 0.78rem;
  color: var(--gray-mid);
  margin: 0;
  line-height: 1.45;
}

/* ——— Home: From the field ticker ——— */
.field-ticker {
  overflow: hidden;
  position: relative;
  padding: 0.25rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.field-ticker-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: ticker-scroll 48s linear infinite;
}
.field-ticker-track.is-static {
  animation: none;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}
.field-ticker:hover .field-ticker-track:not(.is-static) {
  animation-play-state: paused;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-card {
  flex: 0 0 min(20rem, 78vw);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.ticker-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  color: inherit;
}
.ticker-source {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.ticker-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--black);
}
.ticker-blurb {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Home team teaser */
.team-teaser {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 800px) {
  .team-teaser {
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
  }
}
.teaser-faces {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.teaser-face {
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: 0 4px 14px rgba(35, 31, 32, 0.12);
  background: var(--cream-deep);
}
.teaser-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.teaser-face:nth-child(n + 2) {
  margin-left: -0.65rem;
}
.teaser-faces .teaser-face:first-child {
  margin-left: 0;
}

@media (prefers-reduced-motion: reduce) {
  .field-ticker-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
}

/* Media helpers */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ——— Book page (on-brand shell around Doodle) ——— */
.book-shell {
  max-width: 52rem;
  margin-inline: auto;
}
.book-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.book-panel-head {
  padding: 1.25rem 1.5rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.book-panel-head h2 {
  font-size: 1.2rem;
  margin: 0 0 0.25rem;
}
.book-panel-head p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--gray);
}
.book-frame-wrap {
  position: relative;
  background: var(--cream-deep);
  min-height: 36rem;
}
.book-frame-wrap iframe {
  display: block;
  width: 100%;
  min-height: 40rem;
  height: 70vh;
  max-height: 52rem;
  border: 0;
  background: var(--white);
}
.book-fallback {
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.book-fallback p {
  margin: 0 0 1rem;
  font-size: var(--fs-sm);
  color: var(--gray);
}
.book-note {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-mid);
}

/* Audit page — single-column story card (matches site flow) */
.audit-story {
  max-width: 40rem;
  margin-inline: auto;
}
.audit-story-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
}
.audit-story-card h2 {
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  margin-bottom: 1.15rem;
  max-width: 22ch;
}
.audit-story-card p {
  color: var(--gray);
  margin-bottom: 0.75rem;
  font-size: var(--fs-md);
  line-height: 1.6;
}
.audit-story-card p:last-child {
  margin-bottom: 0;
}
.audit-story-card .close-line {
  color: var(--black);
  font-weight: 700;
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border-strong);
}

.audit-steps {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .audit-steps { grid-template-columns: repeat(3, 1fr); }
}
.audit-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.audit-step .num {
  font-weight: 800;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
