/* =============================================================================
   Light case-study theme — matches the live Owner's Lounge page, which breaks
   from the site's dark palette: solid black nav, white editorial body, pale
   blue panels, blue statistics. Loaded only by pages that opt in with
   <body class="case-light">.
   ========================================================================== */

.case-light {
  --ink:        #14161a;
  --ink-body:   #3c4148;
  --ink-mute:   #8a9099;
  --blue:       #2f9bec;
  --blue-panel: #e7f3fd;
  --rule:       #e4e7ea;
  background: #fff;
  color: var(--ink-body);
}

/* --- nav: solid black bar rather than the floating pill --------------------- */
.case-light .nav {
  position: sticky;
  inset: auto;
  top: 0;
  background: #000;
  padding-block: 18px;
}
.case-light .nav-inner { width: min(1200px, calc(100% - 48px)); }
.case-light .nav-links a { color: #e8eaed; }

/* --- shared column --------------------------------------------------------- */
.case-light .lc { max-width: 768px; margin-inline: auto; padding-inline: 24px; }
.case-light .back { color: var(--ink-mute); margin: 34px 0 0; }
.case-light .back:hover { color: var(--ink); }

.case-light .lc-title {
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -1.2px;
  color: var(--ink);
  margin: 72px 0 36px;
}

/* --- hero panel: photo + project facts ------------------------------------- */
.lc-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 28px;
  background: var(--blue-panel);
  border-radius: 18px;
}
.lc-hero img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 4px;
}
.lc-facts dt { font-size: 15px; font-weight: 700; color: var(--ink); }
.lc-facts dd { margin: 3px 0 18px; font-size: 15px; color: var(--ink-mute); }
.lc-facts dd:last-child { margin-bottom: 0; }

/* --- body ------------------------------------------------------------------ */
.case-light .lc-block { margin-top: 56px; }
.case-light .lc-block h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  letter-spacing: -0.6px;
  color: var(--ink);
  margin: 0 0 18px;
}
.case-light .lc-block h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 26px 0 8px;
}
.case-light .lc-block p,
.case-light .lc-block li { font-size: 16px; line-height: 1.62; color: var(--ink-body); }
.case-light .lc-block p { margin: 0 0 16px; }
.case-light .lc-block ul { margin: 0 0 16px; padding-left: 22px; }
.case-light .lc-block li { margin-bottom: 7px; }
.case-light .lc-block strong { color: var(--ink); font-weight: 700; }

.lc-shot {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 6px;
  margin: 34px 0;
  background: #f6f8fa;
}

/* --- blue statistics row --------------------------------------------------- */
.lc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 30px 0 38px;
}
.lc-stat .n {
  display: block;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 400;
  color: var(--blue);
  margin-bottom: 8px;
}
.lc-stat .l { font-size: 13.5px; line-height: 1.45; color: var(--ink-body); }

/* --- arrow list (User Insights & Needs) ------------------------------------ */
.lc-arrows { list-style: none; margin: 0 0 18px; padding: 0; }
.lc-arrows li {
  display: flex;
  gap: 16px;
  align-items: baseline;
  margin-bottom: 18px;
}
.lc-arrows li::before {
  content: '⟶';
  color: var(--blue);
  flex: none;
  font-size: 17px;
}

/* --- persona: labels left, narrative right --------------------------------- */
.lc-split {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 40px;
  align-items: start;
}
.lc-split-labels p { margin: 0 0 4px; font-size: 15px; }
.lc-split-labels .lab { font-weight: 700; color: var(--ink); margin-top: 18px; }
.lc-split-labels .lab:first-child { margin-top: 0; }
.lc-split-labels .val { color: var(--ink-mute); margin-bottom: 14px; }

.case-light .lc-block p.lc-quote {
  margin: 30px 0;
  font-size: clamp(21px, 2.6vw, 27px);
  line-height: 1.35;
  letter-spacing: -0.5px;
  color: var(--blue);
}

.lc-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.lc-tag {
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  font-size: 14px;
  color: var(--ink-body);
}

.case-light .lc-end { padding-bottom: 90px; }

@media (max-width: 720px) {
  .lc-hero { grid-template-columns: 1fr; gap: 24px; }
  .lc-hero img { height: 220px; }
  .lc-stats { grid-template-columns: 1fr; gap: 20px; }
  .lc-split { grid-template-columns: 1fr; gap: 18px; }
}
