/* ─── Site header: promo bar + nav (homepage) ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
}

.site-header nav {
  position: static;
  top: auto;
}

.promo-bar {
  color: var(--bg);
  background: linear-gradient(
    125deg,
    #141416 0%,
    #2e2318 22%,
    #3d2e14 44%,
    #182430 66%,
    #2a2016 88%,
    #141416 100%
  );
  background-size: 320% 320%;
  animation: promo-bg-shift 14s ease-in-out infinite;
  border-bottom: 1px solid rgba(255, 241, 219, 0.1);
}

@keyframes promo-bg-shift {
  0%   { background-position: 0% 40%; }
  33%  { background-position: 70% 80%; }
  66%  { background-position: 100% 30%; }
  100% { background-position: 0% 40%; }
}

.promo-bar-inner {
  display: flex;
  align-items: center;
  gap: 20px 28px;
  padding: 11px 48px;
  max-width: 100%;
}

.promo-bar-eyebrow {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 241, 219, 0.72);
  white-space: nowrap;
}

.promo-bar-date {
  color: var(--bg);
}

.promo-bar-sep {
  margin: 0 0.35em;
  opacity: 0.45;
}

.promo-bar-copy {
  flex: 1;
  min-width: 0;
}

.promo-bar-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 400;
  font-variation-settings: 'opsz' 72;
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.promo-bar-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 241, 219, 0.62);
  line-height: 1.35;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.promo-bar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.promo-bar-cta {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background: var(--bg);
  padding: 8px 18px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}

.promo-bar-cta:hover {
  background: var(--accent-gradient);
  transform: translateY(-1px);
}

.promo-bar-cta:focus-visible {
  outline: 2px solid var(--bg);
  outline-offset: 2px;
}

.promo-bar-dismiss {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 241, 219, 0.55);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.promo-bar-dismiss:hover {
  color: var(--bg);
  background: rgba(255, 241, 219, 0.1);
}

.promo-bar-dismiss:focus-visible {
  outline: 2px solid var(--bg);
  outline-offset: 2px;
}

body.promo-bar-hidden .promo-bar {
  display: none;
}

@media (max-width: 1100px) {
  .promo-bar-inner { padding-left: 32px; padding-right: 32px; }
}

@media (max-width: 700px) {
  .promo-bar-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    padding: 12px 44px 12px 20px;
    gap: 6px 10px;
  }

  .promo-bar-eyebrow {
    grid-column: 1 / -1;
    font-size: 11px;
    line-height: 1.35;
    white-space: normal;
  }

  .promo-bar-copy {
    grid-column: 1;
    grid-row: 2;
    min-width: 0;
  }

  .promo-bar-title {
    font-size: 15px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .promo-bar-desc { display: none; }

  .promo-bar-actions {
    grid-column: 2;
    grid-row: 2;
    width: auto;
    align-self: center;
  }

  .promo-bar-cta {
    flex: none;
    padding: 8px 14px;
    font-size: 12px;
  }

  .promo-bar-dismiss {
    position: absolute;
    top: 8px;
    right: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-bar {
    animation: none;
    background: #1c1c1e;
  }

  .promo-bar-cta,
  .promo-bar-dismiss { transition: none; }
}

/* ─── Hero ─── */
.hero {
  padding: 32px 48px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
}

.hero-body {
  display: flex;
  flex-direction: column;
  min-height: calc(82vh - 72px);
  padding-bottom: 52px;
  position: relative;
}

/* Canvas is first child of .hero — siblings painted after it sit on top naturally */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.clients-bar {
  position: relative;
  padding: 20px 0;
}

/* Cursor: none only on devices that have a real pointer */
@media (hover: hover) and (pointer: fine) {
  .hero { cursor: none; }
}

/* ─── Custom cursor flower ─── */
#cursor-flower {
  position: fixed;
  width: 28px;
  height: 28px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease;
  will-change: left, top;
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 6vw, 108px);
  font-weight: 400;
  font-variation-settings: 'opsz' 72;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.hero-headline em {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: 'opsz' 72;
  color: #3D2B1F;
}

.hero-line-anchor {
  display: inline;
}

/* Wrapper so rotating keyword can scale separately on mobile without affecting line 1 */
.hero-rotating-slot {
  display: contents;
}

.hero-headline-br--before-keyword {
  display: none;
}

/* ─── Nav logo override for home (emblem is in nav-emblem-wrap) ─── */
.nav-logo .emblem { margin-right: 0; }

/* ─── Word cycle ─── */
.cy-wrap {
  display: inline-block;
  vertical-align: bottom;
  overflow: visible;
  padding-bottom: 0.04em;
  margin-bottom: -0.04em;
  padding-right: 0.1em;
  margin-right: -0.1em;
  position: relative;
}

.cy-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #FFD000 0%, #FF9500 100%);
  border-radius: 99px;
  z-index: -1;
}

.cy-word {
  display: inline-block;
  will-change: transform, opacity;
}

.cy-word--accent {
  background: linear-gradient(135deg, #FFD000 0%, #FF9500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

@keyframes cy-exit {
  0%   { transform: translateY(0);      opacity: 1; }
  100% { transform: translateY(-110%);  opacity: 0; }
}

@keyframes cy-enter {
  0%   { transform: translateY(110%);  opacity: 0; }
  100% { transform: translateY(0);     opacity: 1; }
}

.cy-word.exit  { animation: cy-exit  0.32s cubic-bezier(0.55, 0, 1, 1) forwards; }
.cy-word.enter { animation: cy-enter 0.48s cubic-bezier(0.22, 1, 0.36, 1) forwards; }

.hero-emblem {
  height: 100px;
  width: auto;
  align-self: flex-start;
  margin-bottom: 28px;
}

/* Spacer pushes the aside to the bottom */
.hero-spacer { flex: 1; }

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: flex-end;
  max-width: 700px;
  text-align: right;
}

.hero-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  line-height: 1.65;
  color: var(--ink-muted);
  font-weight: 300;
}

.shine-pill {
  display: inline;
  border-radius: var(--radius);
  padding: 3px 11px 5px;
  white-space: nowrap;
  border: 1px solid rgba(200, 130, 0, 0.3);
  background: rgba(255, 240, 200, 0.7);
}

.shine-text {
  background: linear-gradient(
    100deg,
    #FF9500 0%,
    #FF9500 38%,
    #FFD000 46%,
    #FFEA70 50%,
    #FFD000 54%,
    #FF9500 62%,
    #FF9500 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine-sweep 2.8s linear infinite;
}

@keyframes shine-sweep {
  0%   { background-position: 200% center; }
  100% { background-position:   0% center; }
}

.hero-tagline {
  font-family: 'Fraunces', serif;
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 400;
  font-variation-settings: 'opsz' 72;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
  border-top: 1px solid var(--rule);
  padding-top: 20px;
}

.clients-marquee {
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.clients-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

.clients-track:hover { animation-play-state: paused; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.client-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  min-width: 170px;
  border-radius: var(--radius);
  background: rgb(251, 221, 180);
  flex-shrink: 0;
  transition: background 0.25s;
}

.client-box:hover {
  background: rgb(246, 205, 160);
}

.client-box img {
  height: 38px;
  width: auto;
  filter: brightness(0);
}

.client-box img.client-logo-no-filter {
  filter: none;
}

/* ─── Shared section layout ─── */
.section {
  padding: 80px 48px;
  border-bottom: 1px solid var(--rule);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 52px;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 5.5vw, 86px);
  font-weight: 400;
  font-variation-settings: 'opsz' 72;
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: 'opsz' 72;
  color: #3D2B1F;
}

.section-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.4;
  color: var(--ink-muted);
  font-weight: 300;
  max-width: 560px;
}

/* ─── Case study cards ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: #181818;
}

.card-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.card:hover .card-bg { transform: scale(1.05); }

/* Fallback background for cards without a photo */
.card-bg:not(:has(img)) {
  background: linear-gradient(160deg, #111118 0%, #1a1a28 50%, #0e0e18 100%);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.25) 45%, transparent 72%);
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 22px 22px;
}

.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 100px;
  color: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
}

.card-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 6px;
}

.card-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.03em;
}

.card-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
  backdrop-filter: blur(6px);
}

.card:hover .card-arrow { opacity: 1; transform: translateY(0); }

.card-arrow svg { width: 14px; height: 14px; stroke: #fff; }

/* ─── Services accordion ─── */
.accordion {
  border-top: 1px solid var(--rule);
}

.accordion-item {
  border-bottom: 1px solid var(--rule);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 24px;
}

.accordion-trigger-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.accordion-name {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 400;
  font-variation-settings: 'opsz' 72;
  color: var(--ink);
  line-height: 0.94;
  letter-spacing: -0.03em;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
  transition: color 0.2s;
}

.accordion-cat-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 300;
  color: var(--ink-faint);
  line-height: 1.4;
  transition: color 0.2s;
}

.accordion-trigger:hover .accordion-name {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.accordion-trigger:hover .accordion-cat-desc { color: var(--ink-muted); }

.accordion-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), border-color 0.2s, background 0.2s;
}

.accordion-icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--ink-muted);
  transition: stroke 0.2s;
}

.accordion-trigger:hover .accordion-icon {
  border-color: rgba(28,28,30,0.25);
}

.accordion-item.open .accordion-icon {
  transform: rotate(180deg);
  background: var(--ink);
  border-color: var(--ink);
}

.accordion-item.open .accordion-icon svg { stroke: var(--bg); }

.accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.22,1,0.36,1);
}

.accordion-item.open .accordion-body {
  grid-template-rows: 1fr;
}

.accordion-inner {
  overflow: hidden;
}

.svc-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  margin-bottom: 32px;
  padding-top: 24px;
}

.svc-list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  padding: 14px 24px 14px 0;
  line-height: 1.3;
  cursor: default;
}

/* ─── Insights ─── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.insight-card {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
  background: var(--bg);
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.07);
}

.insight-thumb {
  height: 192px;
  position: relative;
  overflow: hidden;
}

.insight-card:nth-child(1) .insight-thumb {
  background: linear-gradient(135deg, #111124 0%, #0f3060 100%);
}

.insight-card:nth-child(2) .insight-thumb {
  background:
    radial-gradient(ellipse at 55% 35%, rgba(60,210,120,0.5) 0%, rgba(240,237,232,1) 60%);
}

.insight-card:nth-child(3) .insight-thumb {
  background: linear-gradient(140deg, var(--bg) 0%, rgba(254,87,0,0.35) 100%);
}

.insight-body { padding: 22px 22px 16px; }

.insight-cat {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.insight-title {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 10px;
}

.insight-excerpt {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-muted);
}

.insight-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-top: 1px solid var(--rule);
  margin-top: 4px;
}

.insight-date { font-size: 11.5px; color: var(--ink-faint); }

.insight-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s;
  flex-shrink: 0;
}

.insight-card:hover .insight-btn { background: var(--accent-gradient); transform: translateX(2px); }

.insight-btn svg { width: 12px; height: 12px; stroke: var(--bg); }

/* ─── Industries ─── */
.industries-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ind-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  cursor: default;
  transition: transform 0.25s;
}

.ind-card:hover { transform: translateX(4px); }

.ind-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--ink-faint);
  transition: color 0.25s;
}

.ind-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #3D2B1F;
  line-height: 1.3;
  transition: color 0.25s;
}

.ind-card:hover .ind-icon,
.ind-card:hover .ind-name { color: var(--ink); }

/* ─── Insights coming soon ─── */
.insights-soon {
  max-width: 600px;
}

.insights-soon-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300;
  font-variation-settings: 'opsz' 72;
  font-style: italic;
  color: #3D2B1F;
  line-height: 1.3;
  margin-bottom: 12px;
}

.insights-soon-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ─── About / Team ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.team-photo {
  width: 100%;
  max-width: 160px;
  aspect-ratio: 1;
  background: #eeece8;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.team-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.team-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 300;
  font-variation-settings: 'opsz' 72;
  color: var(--ink);
  margin: 0;
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.team-linkedin:hover {
  color: #0a66c2;
}

.team-linkedin:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}

.team-linkedin-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}

.team-role {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 12px;
}

.team-bio {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.7;
}

/* ─── CTA ─── */
.cta-section {
  padding: 96px 48px;
  border-bottom: 1px solid var(--rule);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 48px;
}

.cta-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 5.5vw, 86px);
  font-weight: 400;
  font-variation-settings: 'opsz' 72;
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.cta-headline em {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: 'opsz' 72;
  color: var(--ink);
}

.cta-gradient {
  background: linear-gradient(135deg, #FFD000 0%, #FF9500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  padding-bottom: 4px;
}

/* ─── Responsive: tablet ─── */
@media (max-width: 1100px) {
  .hero, .section, .cta-section { padding-left: 32px; padding-right: 32px; }

  .hero-headline { font-size: clamp(44px, 6.5vw, 80px); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cards-grid .card:last-child:nth-child(odd) { grid-column: span 2; max-width: 50%; justify-self: start; }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }

  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Responsive: mobile ─── */
@media (max-width: 700px) {
  .hero {
    --hero-spacing-mult: 3;
    padding:
      44px
      20px
      max(22px, env(safe-area-inset-bottom, 0px));
  }
  .hero-body { min-height: unset; padding-bottom: 26px; }
  .hero-spacer {
    flex: 0 0 calc(clamp(88px, 14vw, 120px) * var(--hero-spacing-mult) * 1.5 / 3);
    min-height: 0;
  }
  .hero-headline { font-size: clamp(42px, 12vw, 64px); max-width: 100%; }
  /* One line: “Business Design for”; next line: rotating word */
  .hero-headline-br--after-design {
    display: none;
  }
  .hero-headline-br--before-keyword {
    display: inline;
  }
  /* Slightly tighter than the headline so the first line holds together */
  .hero-line-anchor {
    font-size: 0.94em;
  }
  /* Same line as anchor — sized between anchor (0.94em) and full headline word line */
  .hero-headline .hero-for-span {
    font-size: 0.88em;
    vertical-align: 0;
    letter-spacing: -0.02em;
  }
  /* ~10% larger than headline scale for the rotating word */
  .hero-headline .hero-rotating-slot {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 1.1em;
    line-height: inherit;
    letter-spacing: inherit;
  }
  .hero-aside { align-self: flex-start; max-width: 100%; text-align: left; }
  .hero-desc { font-size: clamp(18px, 5vw, 24px); }
  .hero-tagline { font-size: clamp(16px, 4.5vw, 22px); white-space: normal; }

  .section { padding: 60px 20px; }
  .section-desc { max-width: 100%; }

  .cards-grid { grid-template-columns: 1fr; }
  /* Override tablet rule: odd last card must not span 2 cols on single-column grid */
  .cards-grid .card:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }
  .insights-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .industries-layout { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-name { font-size: 15px; }
  .ind-icon { font-size: 18px; }

  .cta-section { padding: 72px 20px; }
  .cta-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-side { align-items: flex-start; }
}
