/* ============================================================
   UNILIT — Moon Cheese case study styles
   ============================================================ */

:root {
  --mc-orange:       #F4600C;
  --mc-orange-light: #FF7A2B;
  --mc-cream:        #FFF3E8;
  --mc-dark:         #1A0A00;
}

body {
  background: var(--porcelain);
  color: var(--ink);
}

.back-bar  { background: var(--porcelain); border-color: rgba(16,21,15,.10); }
.back-link { color: rgba(16,21,15,.45); }
.back-link:hover { color: var(--ink); }

/* Hero */
.cs-hero {
  background: var(--mc-orange);
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: auto;
  min-height: 92vh;
  align-items: unset;
}

@media (max-width: 860px) {
  .cs-hero { grid-template-columns: 1fr; min-height: auto; }
}

.cs-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 64px 48px 64px 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 860px) { .cs-hero-left { padding: 48px 24px; } }

.cs-eyebrow { color: rgba(255,255,255,.65); }

.cs-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(52px, 7.5vw, 96px);
  line-height: .92;
  letter-spacing: -.025em;
  color: #fff;
  margin-bottom: 32px;
}

.cs-hero h1 .brand-sub {
  display: block;
  font-size: clamp(22px, 3vw, 38px);
  color: rgba(255,255,255,.52);
  margin-top: 8px;
}

.cs-meta { border-top-color: rgba(255,255,255,.22); padding-top: 28px; }
.cs-meta-item { border-right-color: rgba(255,255,255,.22); }
.meta-label { color: rgba(255,255,255,.50) !important; }
.meta-val   { color: #fff !important; }

.cs-hero-right { position: relative; overflow: hidden; }
.cs-hero-right img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  mix-blend-mode: multiply; opacity: .9;
}

@media (max-width: 860px) {
  .cs-hero-right { height: 360px; }
}

/* Stat bar */
.stat-bar { background: var(--mc-dark); padding: 32px 0; }
.stats { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px; }
.stat { text-align: center; }
.stat .s-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--mc-orange); line-height: 1; letter-spacing: -.02em;
}
.stat .s-label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.48); margin-top: 6px;
}

/* Sections */
.cs-section { border-bottom: 1px solid var(--line); }
.section-label { color: var(--mc-orange); }
.cs-section h2 { color: var(--ink); }
.cs-section p  { color: rgba(16,21,15,.70); }

/* Deliverables */
.deliverables { background: rgba(16,21,15,.06); }
.del {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 28px 24px;
  transition: border-color .18s, transform .18s;
}
.del:hover { border-color: var(--mc-orange); transform: translateY(-2px); }
.del .d-num { color: var(--mc-orange); font-weight: 600; }
.del h3 { color: var(--ink); }
.del p  { color: rgba(16,21,15,.62); }

/* Screenshots */
.screenshots { background: var(--mc-cream); border-bottom: 1px solid var(--line); }
.shot { border-radius: 8px; box-shadow: 0 20px 60px rgba(244,96,12,.14); background: var(--paper); }
.shot-caption { color: rgba(16,21,15,.50); border-top-color: var(--line); background: var(--paper); }

/* Highlight strip */
.highlight-strip { background: var(--mc-orange); padding: 44px 0; overflow: hidden; }
.strip-track     { display: flex; gap: 0; white-space: nowrap; }
.strip-item {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(22px, 3vw, 34px);
  color: #fff; padding: 0 32px; flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 32px; letter-spacing: -.01em;
}
.strip-item::after { content: "·"; color: rgba(255,255,255,.38); }

/* Stack */
.stack-section { border-bottom: 1px solid var(--line); }
.stack-section h2 { color: var(--ink); }
.pill {
  border: 1px solid var(--line);
  color: rgba(16,21,15,.72);
  background: var(--paper);
}
.pill:hover { border-color: var(--mc-orange); color: var(--mc-orange); }

/* CTA */
.cs-cta { background: var(--ink); }
.cs-cta h2 { color: #fff; }
.cs-cta p  { color: rgba(255,255,255,.48); }

.btn-cta-primary {
  display: inline-block;
  background: var(--mc-orange);
  color: #fff !important;
  font-family: var(--font-mono); font-size: 13px; font-weight: 600; letter-spacing: .04em;
  padding: 14px 28px; border-radius: 4px; border: 1px solid var(--mc-orange);
  transition: background .18s, transform .18s;
}
.btn-cta-primary:hover { background: var(--mc-orange-light); transform: translateY(-1px); }

.btn-cta-ghost {
  display: inline-block; background: transparent;
  color: rgba(255,255,255,.70);
  font-family: var(--font-mono); font-size: 13px; font-weight: 600; letter-spacing: .04em;
  padding: 14px 28px; border-radius: 4px; border: 1px solid rgba(255,255,255,.18);
  transition: border-color .18s, color .18s;
}
.btn-cta-ghost:hover { border-color: #fff; color: #fff; }
