:root {
  --dark-coffee: #362A19;
  --oxford-navy: #052F5F;
  --sky-blue: #8AC8EC;
  --vanilla-custard: #EADDA6;
  --cornsilk: #FFFAE2;

  --finance-tag: #052F5F;
  --strategy-tag: #8AC8EC;
  --marketing-tag: #EADDA6;
  --sustainability-tag: #2F6B3F;
  --current-tag: #362A19;
  --completed-tag: #F3E9C6;

  --text-main: #362A19;
  --text-muted: #6B604F;
  --border-soft: rgba(54, 42, 25, 0.18);
  --white-soft: #fffdf2;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cornsilk);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

section {
  scroll-margin-top: 120px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 48px;
  background: var(--dark-coffee);
  border-bottom: 1px solid rgba(255, 250, 226, 0.16);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 270px;
  max-height: 86px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: rgba(255, 250, 226, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--vanilla-custard);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--cornsilk);
}

.nav-links a:hover::after {
  width: 100%;
}

.hero {
  padding: 92px 48px 76px;
  border-bottom: 1px solid var(--border-soft);
}

.hero-content {
  max-width: 1180px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--oxford-navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 980px;
  margin-bottom: 24px;
  color: var(--dark-coffee);
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-copy {
  max-width: 710px;
  margin-bottom: 34px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 46px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary-button {
  background: var(--oxford-navy);
  color: var(--cornsilk);
}

.secondary-button {
  border: 1px solid var(--oxford-navy);
  color: var(--oxford-navy);
}

.secondary-button:hover {
  background: var(--oxford-navy);
  color: var(--cornsilk);
}

.hero-focus {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: center;
  padding: 34px;
  background: var(--white-soft);
  border: 1px solid var(--border-soft);
  box-shadow: 14px 14px 0 var(--vanilla-custard);
  overflow: hidden;
}

.thesis-label {
  margin-bottom: 10px;
  color: var(--oxford-navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.thesis-copy h2 {
  max-width: 680px;
  margin-bottom: 16px;
  color: var(--dark-coffee);
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.thesis-copy p:not(.thesis-label) {
  max-width: 790px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
}

.thesis-side {
  position: relative;
  min-height: 260px;
  padding: 22px;
  background: var(--cornsilk);
  border: 1px solid var(--border-soft);
}

.thesis-logo {
  width: 190px;
  max-height: 76px;
  object-fit: contain;
  margin-bottom: 26px;
}

.thesis-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.thesis-points div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(54, 42, 25, 0.12);
  transition: transform 0.2s ease, background 0.2s ease, padding 0.2s ease;
}

.thesis-points div:last-child {
  border-bottom: none;
}

.thesis-points div:hover {
  transform: translateX(4px) scale(1.02);
  background: rgba(234, 221, 166, 0.3);
  padding-left: 8px;
}

.thesis-points span {
  color: var(--oxford-navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.thesis-points p {
  color: var(--dark-coffee);
  font-size: 13px;
  font-weight: 800;
}

.quote-bar {
  padding: 28px 48px;
  background: var(--vanilla-custard);
  border-bottom: 1px solid var(--border-soft);
}

.quote-bar p {
  max-width: 980px;
  color: var(--dark-coffee);
  font-size: 20px;
  font-style: italic;
}

.section {
  padding: 76px 48px;
  border-bottom: 1px solid var(--border-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.with-action {
  max-width: none;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-end;
}

.section-heading.with-action > div {
  max-width: 760px;
}

.section-heading.narrow {
  max-width: 620px;
}

.section-heading h2,
.contact-section h2 {
  margin-bottom: 16px;
  color: var(--dark-coffee);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-heading p {
  color: var(--text-muted);
  font-size: 16px;
}

.section-action-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 14px;
}

.close-all-button {
  cursor: pointer;
  border: 1px solid rgba(5, 47, 95, 0.28);
  background: transparent;
  color: var(--oxford-navy);
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.close-all-button:hover {
  background: var(--oxford-navy);
  color: var(--cornsilk);
  transform: translateY(-2px);
}

.accordion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.accordion-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dropdown-card,
.case-dropdown {
  background: var(--white-soft);
  border: 1px solid var(--border-soft);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dropdown-card:hover,
.case-dropdown:hover {
  transform: translateY(-3px);
  border-color: rgba(5, 47, 95, 0.35);
}

.dropdown-card[open],
.case-dropdown[open] {
  border-color: rgba(5, 47, 95, 0.42);
  box-shadow: 10px 10px 0 rgba(234, 221, 166, 0.9);
}

.current-client-case {
  border-left: 5px solid var(--dark-coffee);
}

.dropdown-card summary,
.case-dropdown summary {
  cursor: pointer;
  list-style: none;
}

.dropdown-card summary::-webkit-details-marker,
.case-dropdown summary::-webkit-details-marker {
  display: none;
}

.service-dropdown summary {
  display: grid;
  grid-template-columns: 52px 1fr 28px;
  gap: 18px;
  align-items: start;
  padding: 26px;
}

.advantage-dropdown summary {
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 18px;
  align-items: center;
  padding: 24px;
}

.summary-number {
  color: var(--oxford-navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.dropdown-card h3,
.case-dropdown h3,
.process-step h3 {
  margin-bottom: 8px;
  color: var(--dark-coffee);
  font-size: 20px;
  line-height: 1.2;
}

.dropdown-card summary p,
.case-dropdown summary p {
  color: var(--text-muted);
  font-size: 14px;
}

.plus-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: var(--oxford-navy);
  border: 1px solid rgba(5, 47, 95, 0.3);
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

details[open] > summary .plus-icon {
  transform: rotate(45deg);
  background: var(--oxford-navy);
  color: var(--cornsilk);
}

.dropdown-content {
  padding: 0 26px 26px;
  color: var(--text-muted);
  font-size: 14px;
}

.advantage-dropdown .dropdown-content {
  padding: 0 24px 24px;
}

.dropdown-content p {
  margin-bottom: 14px;
}

.dropdown-content ul,
.case-detail ul {
  padding-left: 18px;
}

.dropdown-content li,
.case-detail li {
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 14px;
}

.suite-section {
  background: var(--white-soft);
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1120px;
}

.skill-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  background: var(--cornsilk);
  border: 1px solid var(--border-soft);
  color: var(--text-muted);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.skill-tags span:hover {
  transform: translateY(-2px);
  border-color: rgba(5, 47, 95, 0.38);
  color: var(--oxford-navy);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 58px;
  background: var(--cornsilk);
}

.work-section {
  background: var(--cornsilk);
}

.case-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.case-dropdown summary {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto 28px;
  gap: 24px;
  align-items: center;
  padding: 28px;
}

.case-logo-wrap {
  width: 104px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(54, 42, 25, 0.12);
  border-radius: 2px;
  padding: 10px;
}

.case-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.michigan-logo-wrap {
  background: var(--oxford-navy);
}

.michigan-logo {
  max-height: 58px;
}

.case-summary-main h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.case-tag {
  display: inline-block;
  padding: 5px 9px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}

.tag-finance {
  background: var(--finance-tag);
  color: var(--cornsilk);
}

.tag-strategy {
  background: rgba(138, 200, 236, 0.45);
  color: var(--oxford-navy);
}

.tag-marketing {
  background: var(--marketing-tag);
  color: var(--dark-coffee);
}

.tag-sustainability {
  background: var(--sustainability-tag);
  color: var(--cornsilk);
}

.tag-current {
  background: var(--dark-coffee);
  color: var(--vanilla-custard);
}

.tag-completed {
  background: var(--completed-tag);
  color: var(--dark-coffee);
  border: 1px solid rgba(54, 42, 25, 0.14);
}

.case-summary-meta {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 8px;
  min-width: 132px;
}

.case-summary-meta span {
  color: var(--oxford-navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 28px 30px;
  border-top: 1px solid var(--border-soft);
}

.case-detail > div {
  padding-top: 24px;
}

.detail-label {
  margin-bottom: 10px;
  color: var(--oxford-navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-detail p {
  color: var(--text-muted);
  font-size: 14px;
}

.process-section {
  background: var(--vanilla-custard);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(54, 42, 25, 0.25);
  border-bottom: 1px solid rgba(54, 42, 25, 0.25);
}

.process-step {
  padding: 28px;
  border-right: 1px solid rgba(54, 42, 25, 0.25);
}

.process-step:last-child {
  border-right: none;
}

.process-step span {
  display: block;
  margin-bottom: 42px;
  color: var(--oxford-navy);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.process-step p {
  color: var(--text-muted);
  font-size: 14px;
}

.contact-section {
  padding: 86px 48px;
  background: var(--oxford-navy);
  color: var(--cornsilk);
  text-align: center;
}

.contact-section .eyebrow {
  color: var(--sky-blue);
}

.contact-section h2 {
  color: var(--cornsilk);
}

.contact-section p {
  max-width: 650px;
  margin: 0 auto 30px;
  color: rgba(255, 250, 226, 0.8);
  font-size: 17px;
}

.contact-button {
  background: var(--cornsilk);
  color: var(--oxford-navy);
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 26px 48px;
  background: var(--dark-coffee);
  color: rgba(255, 250, 226, 0.82);
  font-size: 13px;
}

.footer-logo {
  width: 210px;
  max-height: 72px;
  object-fit: contain;
}

.footer-info {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 6px;
}

.footer a {
  color: var(--vanilla-custard);
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-logo {
    width: 240px;
  }

  .hero-focus,
  .accordion-grid,
  .case-detail,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section,
  .hero-focus {
    grid-template-columns: 1fr;
  }

  .case-dropdown summary {
    grid-template-columns: 96px 1fr 28px;
  }

  .case-summary-meta {
    align-items: flex-start;
    flex-direction: row;
    grid-column: 2 / -1;
    order: 3;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    padding: 18px 22px;
  }

  .brand-logo {
    width: 220px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .hero {
    padding: 56px 22px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-focus {
    padding: 22px;
    box-shadow: 10px 10px 0 var(--vanilla-custard);
  }

  .accordion-grid,
  .case-detail,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .quote-bar,
  .section,
  .contact-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .section-heading.with-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-action-row {
    justify-content: flex-start;
  }

  .service-dropdown summary,
  .advantage-dropdown summary,
  .case-dropdown summary {
    padding: 22px;
  }

  .service-dropdown summary {
    grid-template-columns: 1fr 28px;
  }

  .summary-number {
    grid-column: 1 / -1;
  }

  .dropdown-content,
  .advantage-dropdown .dropdown-content {
    padding: 0 22px 22px;
  }

  .case-dropdown summary {
    grid-template-columns: 1fr 28px;
  }

  .case-logo-wrap {
    grid-column: 1 / -1;
    width: 118px;
    height: 78px;
  }

  .case-summary-meta {
    grid-column: 1 / -1;
  }

  .case-detail {
    padding: 0 22px 24px;
  }

  .process-step {
    border-right: none;
    border-bottom: 1px solid rgba(54, 42, 25, 0.25);
  }

  .process-step:last-child {
    border-bottom: none;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 22px;
  }

  .footer-logo {
    width: 210px;
  }

  .footer-info {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .button,
  .dropdown-card,
  .case-dropdown,
  .plus-icon,
  .thesis-points div {
    transition: none;
  }
}
/* Updated visual case study cards */

.case-detail-visual {
  display: block;
  padding: 0 28px 30px;
  border-top: 1px solid var(--border-soft);
}

.case-metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 24px;
  margin-bottom: 28px;
}

.metric-tile {
  min-height: 118px;
  padding: 18px;
  background: var(--cornsilk);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.metric-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(5, 47, 95, 0.38);
  background: #fff8d7;
}

.metric-tile span {
  color: var(--oxford-navy);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.metric-tile p {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.45;
  margin-top: 12px;
}

.case-insight-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr 0.95fr;
  gap: 22px;
}

.case-insight-grid > div {
  padding: 22px;
  background: var(--white-soft);
  border: 1px solid var(--border-soft);
}

.case-insight-grid ul {
  padding-left: 18px;
}

.case-insight-grid li {
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 14px;
}

.case-takeaway {
  background: var(--dark-coffee) !important;
  color: var(--cornsilk);
}

.case-takeaway .detail-label {
  color: var(--vanilla-custard);
}

.case-takeaway p:not(.detail-label) {
  color: rgba(255, 250, 226, 0.82);
}

.current-client-case .metric-tile:first-child span {
  color: var(--dark-coffee);
}

.case-dropdown[open] summary {
  border-bottom: 1px solid var(--border-soft);
}

@media (max-width: 1050px) {
  .case-metrics-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-insight-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .case-detail-visual {
    padding: 0 22px 24px;
  }

  .case-metrics-row {
    grid-template-columns: 1fr;
  }

  .metric-tile {
    min-height: auto;
  }
}
/* Founder section */

.founder-section {
  background: var(--white-soft);
}

.founder-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 54px;
  align-items: center;
}

.founder-media {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.founder-headshot {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--border-soft);
  box-shadow: 14px 14px 0 var(--vanilla-custard);
}

.ross-card {
  padding: 20px;
  background: var(--cornsilk);
  border: 1px solid var(--border-soft);
}

.ross-logo {
  width: 260px;
  max-width: 100%;
  margin-bottom: 14px;
}

.ross-card p {
  color: var(--text-muted);
  font-size: 13px;
}

.founder-copy h2 {
  margin-bottom: 18px;
  color: var(--dark-coffee);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.founder-lead {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--dark-coffee);
  font-size: 19px;
  line-height: 1.65;
}

.founder-copy p:not(.eyebrow):not(.founder-lead) {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}

.founder-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.founder-bubble {
  min-width: 128px;
  padding: 16px 18px;
  background: var(--cornsilk);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.founder-bubble:hover {
  transform: translateY(-4px);
  border-color: rgba(5, 47, 95, 0.38);
  background: #fff8d7;
}

.founder-bubble span {
  display: block;
  color: var(--oxford-navy);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.founder-bubble p {
  margin: 4px 0 0 !important;
  color: var(--text-muted) !important;
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3 !important;
  text-transform: uppercase;
}

.founder-note {
  max-width: 760px;
  padding: 22px;
  background: var(--dark-coffee);
  color: var(--cornsilk);
  border: 1px solid rgba(255, 250, 226, 0.16);
}

.founder-note p {
  margin: 0 !important;
  color: rgba(255, 250, 226, 0.84) !important;
}

@media (max-width: 1050px) {
  .founder-layout {
    grid-template-columns: 1fr;
  }

  .founder-headshot {
    max-height: 520px;
  }
}

@media (max-width: 760px) {
  .founder-bubble {
    min-width: calc(50% - 6px);
  }

  .founder-headshot {
    max-height: 420px;
  }
}
/* Large hero logo watermark */

.hero {
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-watermark-logo {
  position: absolute;
  top: 96px;
  right: 54px;
  width: clamp(340px, 42vw, 660px);
  opacity: 0.16;
  z-index: 1;
  pointer-events: none;
  transform: rotate(-1deg);
}

@media (max-width: 1050px) {
  .hero-watermark-logo {
    top: 130px;
    right: -80px;
    width: 520px;
    opacity: 0.1;
  }
}

@media (max-width: 760px) {
  .hero-watermark-logo {
    top: 150px;
    right: -140px;
    width: 440px;
    opacity: 0.08;
  }
}
/* Ross credential bubbles inside founder media card */

.ross-bubbles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.ross-bubbles div {
  padding: 14px;
  background: var(--white-soft);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ross-bubbles div:hover {
  transform: translateY(-3px);
  border-color: rgba(5, 47, 95, 0.38);
  background: #fff8d7;
}

.ross-bubbles span {
  display: block;
  color: var(--oxford-navy);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.ross-bubbles p {
  margin: 4px 0 0 !important;
  color: var(--text-muted) !important;
  font-size: 10px !important;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.25 !important;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .ross-bubbles {
    grid-template-columns: 1fr;
  }
}
/* Full-width Advisory Thesis panel */

.thesis-panel {
  grid-template-columns: 1fr;
}

.thesis-copy-full {
  max-width: 980px;
}

.thesis-copy-full h2 {
  max-width: 900px;
}

.thesis-copy-full p:not(.thesis-label) {
  max-width: 960px;
}

.thesis-copy-full p + p {
  margin-top: 16px;
}
/* Clickable founder and case study elements */

.founder-link-bubble {
  text-decoration: none;
  color: inherit;
}

.ross-bubbles a {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 14px;
  background: var(--white-soft);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ross-bubbles a:hover {
  transform: translateY(-3px);
  border-color: rgba(5, 47, 95, 0.38);
  background: #fff8d7;
}

.case-logo-wrap {
  text-decoration: none;
  color: inherit;
}

.case-logo-wrap:hover {
  transform: translateY(-3px);
  border-color: rgba(5, 47, 95, 0.38);
  box-shadow: 6px 6px 0 rgba(234, 221, 166, 0.8);
}
/* Fix case studies heading layout */

.work-section {
  display: block !important;
}

.work-section .section-heading.with-action {
  width: 100%;
  max-width: none;
  display: grid !important;
  grid-template-columns: minmax(0, 760px) auto;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.work-section .case-accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  clear: both;
}

@media (max-width: 760px) {
  .work-section .section-heading.with-action {
    grid-template-columns: 1fr;
    align-items: start;
  }
}
/* Force case studies section back into vertical layout */

#work.work-section {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  width: 100% !important;
  max-width: none !important;
}

#work .section-heading.with-action {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: flex-end !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 0 34px 0 !important;
}

#work .section-heading.with-action > div {
  max-width: 760px !important;
}

#work .case-accordion {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  gap: 18px !important;
}

#work .case-dropdown {
  width: 100% !important;
  max-width: none !important;
}

#work .case-dropdown summary {
  width: 100% !important;
}

@media (max-width: 760px) {
  #work .section-heading.with-action {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}