:root {
  --velvet: #866D36;
  --velvet-light: #c9a55a;
  --velvet-soft: rgba(134,109,54,.22);
}

.velvet-page {
  --case-accent: var(--velvet);
}

.velvet-page .site-header { border-bottom: none; }
.velvet-page .case-shell { padding-top: clamp(28px, 4vw, 56px); }
.velvet-page .case-layout { position: relative; gap: clamp(24px, 3vw, 52px); align-items: start; }
.velvet-page .case-layout::after {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: calc(var(--case-nav-width) + (var(--case-gap) / 2));
  width: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.52) 18%, rgba(255,255,255,0.14) 100%);
  pointer-events: none;
}

.velvet-page .case-side-nav { top: 138px; }
.velvet-page .case-side-nav nav { display:flex; flex-direction:column; }
.velvet-page .case-side-nav-list { display:grid; gap:16px; }
.velvet-page .case-side-nav-gap { height: 8px; }
.velvet-page .case-side-nav a { color: rgba(255,255,255,.74); }
.velvet-page .case-side-nav a:hover,
.velvet-page .case-side-nav a.is-active {
  color: var(--velvet-light);
  -webkit-text-fill-color: var(--velvet-light);
  background: none;
}
.velvet-page .case-side-nav .case-nav-jump:hover,
.velvet-page .case-side-nav .case-nav-jump.is-active {
  color:#FBCB10;
  -webkit-text-fill-color:#FBCB10;
  background:none;
}
.velvet-page .case-nav-label {
  margin-top: 10px;
  text-align:right;
  font-size:18px;
  font-weight:300;
  color: var(--velvet-light);
}
.velvet-page .case-nav-jump span { display:block; }

.velvet-page .case-section { scroll-margin-top: 124px; }
.velvet-page .case-section + .case-section { margin-top: clamp(72px, 8vw, 108px); }
.velvet-page .case-section-title,
.velvet-page .section-heading h2 {
  margin:0;
  font-size: clamp(2.35rem, 3.8vw, 3.125rem);
  font-weight:200;
  line-height:1.1;
  letter-spacing:-1px;
}
.velvet-page .title-base { color:#fff; }
.velvet-page .velvet-hero-accent,
.velvet-page .results-card h3,
.velvet-page .result-chip {
  background: linear-gradient(90deg, #866D36 0%, #C9A55A 52%, #866D36 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color: transparent;
}
.velvet-page .section-subtitle { max-width: 980px; margin-inline:auto; }
.velvet-page .section-support,
.velvet-page .case-hero-support,
.velvet-page .velvet-hero-body,
.velvet-page .challenge-card p,
.velvet-page .results-card p,
.velvet-page .quote-caption { font-weight: 200; }

/* Velvet shimmer — all .title-accent */
.velvet-page .title-accent {
  background-image:
    linear-gradient(90deg, #866D36 0%, #c9a55a 50%, #866D36 100%),
    linear-gradient(115deg,
      transparent           0%,
      rgba(255,240,195,0)   28%,
      rgba(255,248,220,1.0) 50%,
      rgba(255,240,195,0)   72%,
      transparent          100%);
  background-size: 100% 100%, 240% 100%;
  background-position: 0 0, 140% 0;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: velvetTitleShimmer 5.4s ease-in-out infinite;
}

@keyframes velvetTitleShimmer {
  0%, 74%, 100% { background-position: 0 0, 140% 0; }
  88%           { background-position: 0 0, -35% 0; }
}

/* Hero */
/* ══ VELVET HERO — pulsing gold glow + light sweep + float ══ */
@keyframes velvetHeroGlow {
  0%,100% {
    box-shadow:
      0 0  40px rgba(134,109,54,.14),
      0 0  80px rgba(201,165,90,.06),
      0 18px 56px rgba(0,0,0,.28);
  }
  50% {
    box-shadow:
      0 0  72px rgba(201,165,90,.32),
      0 0 140px rgba(134,109,54,.14),
      0 18px 56px rgba(0,0,0,.28);
  }
}
@keyframes velvetHeroSweep {
  0%   { transform: translateX(-180%) skewX(-18deg); opacity:0; }
  4%   { opacity:.48; }
  50%  { opacity:.32; }
  96%  { opacity:.48; }
  100% { transform: translateX(280%)  skewX(-18deg); opacity:0; }
}
@keyframes velvetHeroFloat {
  0%,100% { transform: scale(1)     translateY(0);   }
  50%      { transform: scale(1.014) translateY(-5px); }
}

.velvet-hero-section { position:relative; }
.case-top-rule { height:1px; background: rgba(255,255,255,.85); margin-bottom: 26px; }
.case-hero-media {
  position:relative;
  z-index:1;
  min-height: clamp(320px, 40vw, 710px);
  overflow:hidden;
  border-radius: 30px 30px 0 0;
  transform-origin:center center;
  opacity:.9;
  box-shadow: 0 18px 56px rgba(0,0,0,.28);
}
.case-hero-media.is-visible { opacity:1; }
/* Subtle dark vignette overlay */
.case-hero-media::before {
  content: "";
  position:absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.24));
  pointer-events:none;
  z-index:1;
}
/* Diagonal gold light sweep */
.velvet-page .case-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 28%;
  background: linear-gradient(
    100deg,
    rgba(255,255,255,0)     0%,
    rgba(255,235,170,.18)  45%,
    rgba(255,244,200,.26)  50%,
    rgba(255,235,170,.18)  55%,
    rgba(255,255,255,0)   100%
  );
  transform: translateX(-180%) skewX(-18deg);
  animation: velvetHeroSweep 9s cubic-bezier(.4,0,.2,1) infinite;
  pointer-events: none;
}
.case-hero-media video {
  width:100%;
  height:100%;
  min-height:inherit;
  object-fit:cover;
  object-position:center center;
  display:block;
}
/* Float on video element so container transform:none doesn't block it */
.velvet-page .case-hero-media video {
  /* float removed — causes jump on video */
  transform-origin: center center;
}
/* Pulsing glow scoped to velvet */
.velvet-page .case-hero-media {
  animation: velvetHeroGlow 4.2s ease-in-out infinite;
}
.velvet-hero-panel {
  position: relative;
  z-index: 2;
  /* Negative margin pulls it up to overlap video bottom */
  margin-top: clamp(-84px, -7vw, -116px);
  min-height: clamp(520px, 39vw, 680px);
  border-radius: 0 0 40px 40px;
  background: linear-gradient(187deg, #000 -17.24%, #0D0D0D 46.87%, #292929 94.81%);
  padding: clamp(44px, 5vw, 86px) clamp(24px, 4vw, 54px) clamp(34px, 4vw, 58px);
  box-shadow: var(--shadow-lg);
  /* Ensure panel never exceeds the video container's width */
  box-sizing: border-box;
  width: 100%;
}
.velvet-hero-grid {
  display:grid;
  grid-template-columns:minmax(280px,.44fr) minmax(0,1fr);
  gap: clamp(28px,4vw,72px);
  align-items:end;
}
.velvet-hero-left { align-self:end; padding-bottom: 24px; }
.velvet-hero-right { display:grid; justify-items:end; text-align:right; }
.velvet-hero-right h1 {
  margin:0;
  font-size: clamp(3.8rem, 8vw, 7rem);
  font-weight:700;
  letter-spacing: clamp(-3px, -0.4vw, -8px);
  line-height:1.02;
}
.velvet-hero-right h2 { margin: 18px 0 0; font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight:700; line-height:1.1; }
.velvet-hero-accent { margin: 18px 0 0; font-size: clamp(1.15rem, 2vw, 1.55rem); font-weight:400; line-height:1.2; }
.velvet-hero-body { max-width: 860px; margin: 24px 0 0 auto; font-size:18px; line-height:1.45; letter-spacing:.32px; }

/* Challenge */
.challenge-section .case-section-shell,
.results-card {
  border-radius: 48px;
  background: linear-gradient(178deg, #000 10.02%, #292929 98.65%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-lg);
}

/* Quote — transparent bg, glow only */
.quote-halo {
  border-radius: 48px;
  background: transparent;
  border: none;
  box-shadow: none;
}
.challenge-section .case-section-shell { padding: clamp(36px,4vw,64px) clamp(18px,2.8vw,34px) clamp(26px,3vw,40px); }
.challenge-heading { margin-bottom: clamp(34px, 4vw, 48px); }
.velvet-challenge-grid { display:grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap:22px; }
.challenge-card {
  position:relative; min-height: 430px; padding: 28px 28px 32px; border-radius:48px;
  background: transparent; border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow-md);
  overflow:hidden; isolation:isolate;
}
.challenge-card::before,
.results-card::before {
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  background:
    radial-gradient(260px 220px at var(--glow-x,50%) var(--glow-y,24%), rgba(134,109,54,.22), transparent 48%),
    linear-gradient(180deg, rgba(255,255,255,.06), transparent 28%);
  opacity:0;
  transition: opacity .35s var(--ease);
}
.challenge-card:hover::before,
.results-card:hover::before { opacity:1; }
.challenge-card > *, .quote-halo > *, .results-card > * { position:relative; z-index:1; }
.challenge-card h3 { margin: 34px 0 0; font-size:24px; font-weight:600; line-height:1.35; }
.challenge-card p { margin: 18px 0 0; font-size:18px; line-height:1.45; }
.challenge-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  display:grid;
  gap:8px;
  color:#fff;
  font-size:18px;
  font-weight:200;
  line-height:1.4;
}
.challenge-card-icon { min-height: 110px; display:flex; align-items:flex-end; justify-content:center; }
.challenge-card-icon img {
  width:97px; height:95px; object-fit:contain;
  filter: brightness(0) saturate(100%) invert(43%) sepia(15%) saturate(1122%) hue-rotate(8deg) brightness(96%) contrast(90%);
}

/* Quote */
.quote-section { display:flex; justify-content:center; }
.quote-halo {
  position: relative;
  margin-inline: auto;
  width: min(1180px, 100%);
  padding: 18px 18px 10px;
  overflow: visible;
  isolation: isolate;
}
.quote-halo img {
  width: 100%; height: auto; display: block; object-fit: contain;
  /* Ambient gold shimmer glow around the image */
  filter: drop-shadow(0 0 28px rgba(134,109,54,0.35)) drop-shadow(0 0 60px rgba(134,109,54,0.15));
  animation: quoteGlowPulse 4s ease-in-out infinite;
}
@keyframes quoteGlowPulse {
  0%, 100% { filter: drop-shadow(0 0 24px rgba(134,109,54,0.30)) drop-shadow(0 0 52px rgba(134,109,54,0.12)); }
  50%       { filter: drop-shadow(0 0 42px rgba(134,109,54,0.55)) drop-shadow(0 0 90px rgba(134,109,54,0.22)); }
}
.quote-caption { margin-top: 16px; text-align:center; color: rgba(255,255,255,.55); font-size:14px; }

/* Highlights */
.hl-section {
  padding: var(--section-space) 0;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.hl-header { text-align:center; margin-bottom: clamp(32px,4vw,52px); }
.hl-box {
  /* Full width of the case-content column — no fixed px that overflows */
  width: 100%;
  /* Height via aspect-ratio so it scales with width (1500:875) */
  height: auto;
  aspect-ratio: 1500 / 875;
  min-height: 320px;          /* floor so it never collapses on narrow screens */
  /* Dark card appearance */
  border-radius: 48px;
  background: linear-gradient(178deg, #000 10.02%, #292929 98.65%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-lg);
  /* Flex center the frame */
  display: flex; align-items: center; justify-content: center;
  padding: clamp(12px, 1.5%, 18px);
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(32px);
  transition: opacity .9s cubic-bezier(.22,.61,.36,1), transform .9s cubic-bezier(.22,.61,.36,1);
}
.hl-box.is-visible { opacity: 1; transform: translateY(0); }
.hl-box::after {
  content: ""; position: absolute; inset: 0; border-radius: 48px;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,.55) 100%);
  pointer-events: none; z-index: 2;
}
.hl-frame {
  /* Fill the box padding area */
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 8px;
  border-radius: 18px;
  overflow: hidden;
}
.hl-cell { position:relative; overflow:hidden; cursor:crosshair; border-radius:4px; opacity:0; transform:scale(.94); transition:opacity .55s cubic-bezier(.22,.61,.36,1),transform .55s cubic-bezier(.22,.61,.36,1); }
.hl-box.is-visible .hl-cell { opacity:1; transform:scale(1); }
.hl-box.is-visible .hl-cell:nth-child(1)  { transition-delay:.05s }
.hl-box.is-visible .hl-cell:nth-child(2)  { transition-delay:.10s }
.hl-box.is-visible .hl-cell:nth-child(3)  { transition-delay:.15s }
.hl-box.is-visible .hl-cell:nth-child(4)  { transition-delay:.20s }
.hl-box.is-visible .hl-cell:nth-child(5)  { transition-delay:.25s }
.hl-box.is-visible .hl-cell:nth-child(6)  { transition-delay:.30s }
.hl-box.is-visible .hl-cell:nth-child(7)  { transition-delay:.35s }
.hl-box.is-visible .hl-cell:nth-child(8)  { transition-delay:.40s }
.hl-box.is-visible .hl-cell:nth-child(9)  { transition-delay:.45s }
.hl-box.is-visible .hl-cell:nth-child(10) { transition-delay:.50s }
.hl-cell img { width:100%; height:100%; object-fit:cover; display:block; will-change:transform; animation:velvetKenBurns 14s ease-in-out infinite alternate; transition:transform .6s cubic-bezier(.22,.61,.36,1),filter .5s ease; }
.hl-cell:nth-child(2)  img { animation-delay:-2s;  animation-duration:16s }
.hl-cell:nth-child(3)  img { animation-delay:-5s;  animation-duration:13s }
.hl-cell:nth-child(4)  img { animation-delay:-8s;  animation-duration:15s }
.hl-cell:nth-child(5)  img { animation-delay:-3s;  animation-duration:17s }
.hl-cell:nth-child(6)  img { animation-delay:-7s;  animation-duration:12s }
.hl-cell:nth-child(7)  img { animation-delay:-1s;  animation-duration:18s }
.hl-cell:nth-child(8)  img { animation-delay:-9s;  animation-duration:14s }
.hl-cell:nth-child(9)  img { animation-delay:-4s;  animation-duration:16s }
.hl-cell:nth-child(10) img { animation-delay:-6s;  animation-duration:13s }
@keyframes velvetKenBurns { 0% { transform:scale(1.0) translate(0%,0%) } 100% { transform:scale(1.08) translate(-1.5%,-1%) } }
.hl-cell:hover img { transform:scale(1.13); filter:brightness(.82); animation-play-state:paused; }
.hl-overlay { position:absolute; inset:0; background:rgba(0,0,0,.38); display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity .32s ease; z-index:2; }
.hl-cell:hover .hl-overlay { opacity:1; }
.hl-expand-icon { width:44px; height:44px; border-radius:50%; border:1.5px solid rgba(134,109,54,.9); background:rgba(0,0,0,.45); display:flex; align-items:center; justify-content:center; transform:scale(.7); transition:transform .3s cubic-bezier(.22,.61,.36,1); }
.hl-cell:hover .hl-expand-icon { transform:scale(1); }
.hl-expand-icon svg { width:18px; height:18px; stroke:#c9a55a; fill:none; stroke-width:1.5; stroke-linecap:round; }
.hl-ctas {
  display:flex;
  align-items:center;
  justify-content:center;
  gap: clamp(40px, 8vw, 120px);
  margin-top: clamp(40px, 5vw, 64px);
  width:min(1500px,calc(100vw - 32px));
  opacity:0; transform:translateY(20px);
  transition:opacity .8s cubic-bezier(.22,.61,.36,1) .15s, transform .8s cubic-bezier(.22,.61,.36,1) .15s;
}
.hl-ctas.is-visible { opacity:1; transform:translateY(0); }
.hl-cta {
  position:relative;
  display:inline-flex;
  padding:12px 40px;
  justify-content:center;
  align-items:center;
  color:var(--velvet-light);
  font-size:18px;
  font-weight:400;
  line-height:2.5;
  letter-spacing:.02em;
  text-decoration:none;
  border-bottom:1.5px solid rgba(134,109,54,.45);
  transition:transform .3s cubic-bezier(.22,.61,.36,1), color .3s ease, border-color .3s ease;
  white-space:nowrap;
}
.hl-cta::before {
  content:"";
  position:absolute; left:0; bottom:-1.5px;
  width:100%; height:1.5px;
  background:linear-gradient(90deg,#866D36 0%,#c9a55a 100%);
  transform:scaleX(0); transform-origin:left;
  transition:transform .35s cubic-bezier(.22,.61,.36,1);
}
.hl-cta:hover { transform:translateY(-2px); color:#FBCB10; border-color:rgba(134,109,54,.15); }
.hl-cta:hover::before { transform:scaleX(1); }
.hl-cta-divider { width:1px; height:32px; background:rgba(134,109,54,.22); flex-shrink:0; }

.hl-lightbox { position:fixed; inset:0; z-index:9999; display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:opacity .38s ease; }
.hl-lightbox.is-open { opacity:1; pointer-events:all; }
.hl-lb-backdrop { position:absolute; inset:0; background:rgba(0,0,0,.92); backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px); }
.hl-lb-bar { position:absolute; left:0; right:0; height:clamp(28px,4vh,52px); background:#000; z-index:1; transform:scaleY(0); transform-origin:top; transition:transform .38s cubic-bezier(.22,.61,.36,1); }
.hl-lb-bar.bottom { bottom:0; transform-origin:bottom; }
.hl-lightbox.is-open .hl-lb-bar { transform:scaleY(1); }
.hl-lb-inner { position:relative; z-index:2; transform:scale(.88); transition:transform .42s cubic-bezier(.16,1,.3,1); }
.hl-lightbox.is-open .hl-lb-inner { transform:scale(1); }
.hl-lb-img-wrap { width:741px; height:752px; border-radius:16px; overflow:hidden; border:1px solid rgba(134,109,54,.35); box-shadow:0 0 0 1px rgba(134,109,54,.1),0 32px 80px rgba(0,0,0,.7),0 0 60px rgba(134,109,54,.08); position:relative; }
.hl-lb-img-wrap img { width:100%; height:100%; object-fit:cover; display:block; }
.hl-lb-counter { position:absolute; bottom:-34px; left:50%; transform:translateX(-50%); color:rgba(134,109,54,.7); font-size:13px; font-weight:400; letter-spacing:.12em; white-space:nowrap; }
.hl-lb-close { position:absolute; top:clamp(14px,3vh,26px); right:clamp(18px,3vw,34px); z-index:3; width:44px; height:44px; border-radius:50%; border:1px solid rgba(134,109,54,.4); background:rgba(0,0,0,.5); color:rgba(255,255,255,.7); font-size:18px; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:border-color .2s,color .2s,transform .2s; }
.hl-lb-close:hover { border-color:rgba(134,109,54,.9); color:#c9a55a; transform:rotate(90deg); }
.hl-lb-arrow { position:absolute; top:50%; transform:translateY(-50%); z-index:3; width:52px; height:52px; border-radius:50%; border:1px solid rgba(134,109,54,.35); background:rgba(0,0,0,.55); color:rgba(255,255,255,.7); cursor:pointer; display:flex; align-items:center; justify-content:center; transition:border-color .25s,background .25s,transform .25s; }
.hl-lb-arrow svg { width:20px; height:20px; stroke:currentColor; fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.hl-lb-arrow.prev { left:clamp(14px,3vw,34px); }
.hl-lb-arrow.next { right:clamp(14px,3vw,34px); }
.hl-lb-arrow:hover { border-color:rgba(134,109,54,.8); background:rgba(134,109,54,.12); color:#c9a55a; }
.hl-lb-arrow.prev:hover { transform:translateY(-50%) translateX(-2px); }
.hl-lb-arrow.next:hover { transform:translateY(-50%) translateX(2px); }
.hl-lb-dots { position:absolute; bottom:clamp(12px,2.5vh,22px); left:50%; transform:translateX(-50%); display:flex; gap:8px; z-index:3; }
.hl-lb-dot { width:6px; height:6px; border-radius:50%; background:rgba(134,109,54,.3); cursor:pointer; border:none; padding:0; transition:background .25s,transform .25s; }
.hl-lb-dot.active { background:rgba(134,109,54,.9); transform:scale(1.4); }

/* Results */
.velvet-results-section { max-width: 1494px; margin-inline:auto; }
.results-grid {
  margin-top: 40px;
  display:grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap:22px;
}
.results-card {
  position:relative;
  min-height: 360px;
  padding: 34px 28px 30px;
  overflow:hidden;
}
.result-chip {
  display:inline-flex;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.results-card h3 {
  margin:0 0 16px;
  font-size:28px;
  font-weight:400;
  line-height:1.12;
}
.results-card p {
  margin:0;
  font-size:18px;
  line-height:1.45;
  color:#fff;
}

/* Responsive */
@media (max-width:1540px) {
  .hl-box   { border-radius: 32px; padding: clamp(8px, 1%, 14px); }
  .hl-frame { border-radius: 14px; }
  .hl-lb-img-wrap { width: min(741px, calc(100vw - 80px)); height: auto; aspect-ratio: 741 / 752; }
}
@media (max-width:1240px) {
  .velvet-page .case-layout::after { display:none; }
  .velvet-page .case-side-nav {
    top: 96px;
    background: linear-gradient(180deg, rgba(0,0,0,.92), rgba(0,0,0,.76));
    border: 1px solid rgba(255,255,255,.06);
    border-radius:22px;
    backdrop-filter: blur(14px);
  }
  .velvet-challenge-grid,
  .results-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width:980px) {
  .velvet-hero-panel { margin-top:-68px; }
  .velvet-hero-grid { grid-template-columns:1fr; align-items:start; }
  .velvet-hero-left, .velvet-hero-right { justify-items:start; text-align:left; }
  .velvet-hero-body { margin-left:0; }
}
@media (max-width:820px) {
  .velvet-page .case-layout { grid-template-columns:1fr; }
  .velvet-page .case-shell { padding-top:20px; }
  .case-hero-media { min-height:260px; border-radius:24px 24px 0 0; }
  .velvet-hero-panel { margin-top:-34px; border-radius:0 0 28px 28px; padding-inline:22px; }
  .velvet-hero-right h1 { font-size: clamp(3.5rem,14vw,5.8rem); letter-spacing:-4px; }
  .velvet-hero-right h2 { font-size: clamp(1.45rem,5vw,2rem); }
  .velvet-hero-accent { font-size: clamp(1.15rem,4.6vw,1.45rem); }
  .velvet-challenge-grid,
  .results-grid { grid-template-columns:1fr; }
  .challenge-card { min-height:auto; }
  .challenge-card-icon { min-height: 90px; }
  .challenge-section .case-section-shell,
  .results-card,
  .quote-halo,
  .hl-box   { border-radius: 20px; }
  .hl-frame { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: repeat(5, minmax(0, 1fr)); }
  .hl-ctas  { flex-direction:column; gap:0; }
  .hl-cta-divider { width:40%; height:1px; }
}
@media (max-width:620px) {
  .velvet-page .case-side-nav { display:none; }
  .velvet-page .case-section + .case-section { margin-top:72px; }
  .quote-halo { padding: 14px 14px 8px; }
}
@media (max-width:520px) {
  .velvet-page .case-section-title, .velvet-page .section-heading h2 { font-size:2.1rem; }
  .velvet-hero-body, .challenge-card p, .results-card p { font-size:16px; }
  .challenge-card { padding:24px 18px 22px; }
  .hl-frame { gap:4px; }
  .hl-lb-arrow { display:none; }
  .hl-cta { font-size:16px; padding:10px 28px; }
}
@media (prefers-reduced-motion:reduce) {
  .hl-cell img { animation:none !important; }
  .hl-lightbox,.hl-lightbox.is-open .hl-lb-inner,.hl-lb-bar { transition-duration:.01ms !important; }
  .quote-halo img { animation:none !important; }
}


/* === HERO ALIGNMENT FIX === */
.case-top-rule { display:none !important; }
.velvet-page .case-hero-media,
.velvet-page .velvet-hero-panel {
  width: 100%;
  margin-inline: auto;
}
