/*
Theme Name: JUNE Portfolio
Author: Justine Vertommen
Author URI: https://www.junecreativeagency.be
Description: Custom portfolio theme for JUNE Creative Agency
Version: 1.0
*/

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: #fbeef0;
  font-size: 18px;
  scroll-behavior: smooth;
  font-family: 'Space Grotesk', sans-serif;
  color: #2a161c;
  overflow-x: hidden;
}

a { color: #b3384b; text-decoration: none; }
a:hover { color: #8f2c3c; }

::selection { background: #f2b8c1; color: #2a161c; }
:focus-visible { outline: 3px solid #b3384b; outline-offset: 3px; border-radius: 3px; }

/* WordPress body padding reset */
.wp-site-blocks, .wp-block-group, #page, .site { all: unset; }

/* ── Utility ────────────────────────────────────── */
.accent { color: #d24a5e; }
.italic { font-style: italic; }

/* ── Animations ─────────────────────────────────── */
@keyframes omPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: .65; }
}
@keyframes omNudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

/* ── Scroll reveal ──────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ── Progress bar ───────────────────────────────── */
#june-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 100%; z-index: 100;
  background: #d24a5e;
  transform-origin: left;
  transform: scaleX(0);
  pointer-events: none;
}

/* ── Header ─────────────────────────────────────── */
#june-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: clamp(14px,1.8vw,22px) clamp(20px,6vw,120px);
  transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
#june-header.scrolled {
  background: rgba(251,238,240,.82);
  box-shadow: 0 1px 0 rgba(178,56,75,.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.june-logo {
  display: inline-flex; align-items: baseline; gap: 1px;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(23px,1.9vw,30px);
  letter-spacing: .05em; color: #2a161c;
  transition: letter-spacing .4s cubic-bezier(.16,1,.3,1);
  text-decoration: none;
}
.june-logo:hover { letter-spacing: .08em; color: #2a161c; }
.june-logo-italic { font-style: italic; }
.june-logo-dot {
  display: inline-block;
  width: .12em; height: .12em; border-radius: 50%;
  background: #d24a5e;
  align-self: flex-end;
  margin-bottom: .22em; margin-left: .05em;
  animation: omPulse 3.2s ease-in-out infinite;
}

nav.june-nav {
  display: flex; align-items: center;
  gap: clamp(14px,2vw,34px);
}
nav.june-nav a {
  font-family: 'Space Mono', monospace;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: #2a161c; opacity: .75;
  transition: opacity .3s;
  text-decoration: none;
}
nav.june-nav a:hover { opacity: 1; color: #2d1b4e; }
nav.june-nav a.june-nav-cv {
  border: 1px solid #2a161c;
  border-radius: 999px; padding: 9px 18px;
  opacity: .9;
}

/* ── Hero ───────────────────────────────────────── */
#june-hero {
  min-height: 100vh; position: relative;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(120px,16vh,180px) clamp(20px,6vw,120px) clamp(70px,10vh,120px);
  background: radial-gradient(120% 120% at 15% 20%, #ffffff 0%, #fbeef0 42%, #f7dbe0 100%);
}
.june-eyebrow {
  margin: 0 0 26px;
  font-family: 'Space Mono', monospace;
  font-size: clamp(12px,1vw,15px);
  letter-spacing: .32em; text-transform: uppercase;
  color: #b3384b;
}
.june-h1 {
  margin: 0;
  font-family: 'Instrument Serif', serif;
  font-weight: 400; line-height: .92;
  letter-spacing: -.01em;
  font-size: clamp(46px,9.6vw,168px);
}
.june-h1 .accent { color: #d24a5e; }
.june-h1 .italic { font-style: italic; }
.june-hero-desc {
  margin: 34px 0 0; max-width: 67%;
  font-size: clamp(16px,1.5vw,22px);
  line-height: 1.6; color: #5a4247;
}
@media (max-width: 900px) {
  .june-hero-desc { max-width: 100%; }
}
.june-ctas {
  margin-top: 44px;
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}
.june-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: #d24a5e; color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 16px;
  padding: 15px 28px; border-radius: 999px;
  transition: transform .4s cubic-bezier(.16,1,.3,1), background .3s;
  text-decoration: none;
}
.june-btn-primary:hover { transform: translateY(-3px); background: #e35d70; color: #fff; }

.june-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  color: #b3384b; border: 1px solid #e6bcc4;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px; padding: 14px 24px; border-radius: 999px;
  transition: border-color .3s, transform .4s cubic-bezier(.16,1,.3,1);
  text-decoration: none;
}
.june-btn-outline:hover { border-color: #d24a5e; transform: translateY(-3px); color: #b3384b; }

.june-scroll-cue {
  position: absolute; bottom: clamp(24px,5vh,48px);
  left: clamp(20px,6vw,120px);
  font-family: 'Space Mono', monospace;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: #b3384b;
  display: inline-flex; align-items: center; gap: 10px;
}
.june-scroll-arrow { display: inline-block; animation: omNudge 1.4s ease-in-out infinite; }

/* ── Human strip ────────────────────────────────── */
.june-human-strip {
  background: #fdf6f4;
  border-top: 1px solid #f2d3d9;
  border-bottom: 1px solid #f2d3d9;
  padding: clamp(40px,7vh,80px) clamp(20px,6vw,120px);
  font-family: 'Space Grotesk', sans-serif;
}
.june-human-strip-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center;
  gap: clamp(24px,4vw,64px);
  flex-wrap: wrap;
}
.june-human-photo {
  flex: none;
  width: clamp(120px,14vw,190px);
  height: clamp(150px,17vw,232px);
  border-radius: 18px;
  object-fit: cover; object-position: 50% 20%;
  box-shadow: 0 20px 44px -20px rgba(178,56,75,.55);
}
.june-human-content { flex: 1; min-width: 300px; }
.june-human-text {
  margin: 0;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(24px,2.9vw,42px);
  line-height: 1.28; letter-spacing: -.005em; color: #2a161c;
}
.june-human-name { font-style: italic; color: #b3384b; }
.june-human-ctas {
  margin-top: clamp(24px,3vh,36px);
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}
.june-human-btn {
  display: inline-flex; align-items: center; gap: 9px;
  border-radius: 999px; text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  transition: transform .4s cubic-bezier(.16,1,.3,1), background .3s, border-color .3s;
}
.june-human-btn:hover { transform: translateY(-3px); }
.june-human-btn--solid {
  background: #2a161c; color: #fff;
  font-weight: 600; font-size: 16px;
  padding: 14px 26px;
  border: none;
}
.june-human-btn--solid:hover { background: #43202b; }
.june-human-btn--outline {
  color: #b3384b;
  border: 1px solid #e6bcc4;
  font-size: 15px;
  padding: 13px 24px;
}
.june-human-btn--outline:hover { border-color: #d24a5e; }

/* ── About ──────────────────────────────────────── */
#june-about {
  position: relative;
  padding: clamp(70px,11vh,140px) clamp(20px,6vw,120px);
  background: #fdf6f4;
}
.june-about-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px,5vw,80px);
  align-items: center;
  max-width: 1300px; margin: 0 auto;
}
.june-photo-wrap { position: relative; }
.june-photo-frame {
  position: absolute; inset: 16px -16px -16px 16px;
  border: 1.5px solid #e79aa6; border-radius: 16px;
  pointer-events: none;
}
.june-photo {
  position: relative; display: block; width: 100%;
  height: min(60vh, 560px);
  object-fit: cover; object-position: 50% 20%;
  border-radius: 16px;
  box-shadow: 0 30px 60px -30px rgba(178,56,75,.5);
}
.june-section-label {
  margin: 0 0 12px;
  font-family: 'Space Mono', monospace;
  font-size: 14px; letter-spacing: .3em; text-transform: uppercase;
  color: #b3384b;
}
.june-h2 {
  margin: 0 0 clamp(24px,3.4vh,40px);
  font-family: 'Instrument Serif', serif;
  font-weight: 400; font-size: clamp(34px,5vw,72px);
  line-height: 1; letter-spacing: -.01em;
}
.june-about-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(18px,2.4vw,36px);
}
.june-about-num {
  font-family: 'Space Mono', monospace;
  font-size: 14px; color: #d24a5e; margin-bottom: 10px;
}
.june-about-text {
  margin: 0; font-size: clamp(16px,1.3vw,19px);
  line-height: 1.55; color: #3d2c30;
}

/* ── Work header ────────────────────────────────── */
#june-work {
  padding: clamp(70px,12vh,150px) clamp(20px,6vw,120px) clamp(20px,4vh,50px);
  background: #fbeef0;
}
.june-inner { max-width: 1300px; margin: 0 auto; }

/* ── Case sections ──────────────────────────────── */
.june-case {
  padding: clamp(50px,8vh,90px) clamp(20px,6vw,120px);
}
.june-case--dark {
  background: linear-gradient(115deg, #2a161c 0%, #3a1c25 60%, #43202b 100%);
  color: #f7e4e7;
}
.june-case--cream { background: #fdf6f4; }
.june-case--blush { background: #fbeef0; }

.june-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px,5vw,72px);
  align-items: center;
  max-width: 1300px; margin: 0 auto;
}
.june-case-meta {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap; margin-bottom: 20px;
}
.june-case-meta-dark {
  font-family: 'Space Mono', monospace;
  font-size: 13px; letter-spacing: .24em; text-transform: uppercase;
  color: #f2b8c1;
}
.june-case-meta-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #d24a5e;
}
.june-h3 {
  margin: 0 0 20px;
  font-family: 'Instrument Serif', serif;
  font-weight: 400; line-height: 1.02; letter-spacing: -.01em;
}
.june-h3--dark { font-size: clamp(32px,4.4vw,66px); }
.june-h3--light { font-size: clamp(30px,4vw,58px); margin-bottom: 18px; }

.june-case-desc {
  margin: 0 0 26px;
  font-size: clamp(16px,1.35vw,20px);
  line-height: 1.6; max-width: 52ch;
}
.june-case-desc--dark { color: #ecd2d7; }
.june-case-desc--light { color: #5a4247; max-width: 48ch; margin-bottom: 24px; }

.june-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.june-tag {
  font-family: 'Space Mono', monospace;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 999px; padding: 8px 15px;
}
.june-tag--dark { color: #f2b8c1; border: 1px solid rgba(242,184,193,.35); }
.june-tag--light { color: #8f2c3c; border: 1px solid #e6bcc4; background: #fff; }

.june-btn-case {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 16px;
  padding: 15px 28px; border-radius: 999px;
  transition: transform .4s cubic-bezier(.16,1,.3,1), background .3s;
  text-decoration: none;
}
.june-btn-case--fill {
  background: #d24a5e; color: #fff; border: none;
}
.june-btn-case--fill:hover { transform: translateY(-3px); background: #e35d70; color: #fff; }
.june-btn-case--outline {
  color: #b3384b; border: 1px solid #d24a5e;
  padding: 14px 26px;
}
.june-btn-case--outline:hover { transform: translateY(-3px); background: #d24a5e; color: #fff; transition: transform .4s cubic-bezier(.16,1,.3,1), background .3s, color 0s; }

/* Image placeholders */
.june-img-placeholder {
  border-radius: 14px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.june-img-placeholder--dark {
  min-height: min(58vh,540px);
  background-image: repeating-linear-gradient(45deg,#38202a,#38202a 12px,#432532 12px,#432532 24px);
  border: 1px solid rgba(242,184,193,.25);
}
.june-img-placeholder--light {
  min-height: min(54vh,500px);
  background-image: repeating-linear-gradient(45deg,#f2d6db,#f2d6db 12px,#f8e3e7 12px,#f8e3e7 24px);
  border: 1px solid #eccdd2;
}
.june-img-placeholder span {
  font-family: 'Space Mono', monospace;
  font-size: 13px; letter-spacing: .15em;
  text-align: center; padding: 20px;
}
.june-img-placeholder--dark span { color: #f2b8c1; }
.june-img-placeholder--light span { color: #b3626e; }

/* Actual project images */
.june-case-img {
  display: block; width: 100%;
  min-height: min(58vh,540px);
  object-fit: cover; border-radius: 14px;
}

/* ── More projects ──────────────────────────────── */
#june-more {
  padding: clamp(70px,11vh,140px) clamp(20px,6vw,120px);
  background: #fbeef0;
}
.june-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px,2vw,32px);
}
.june-card {
  display: block; color: #2a161c;
  background: #fff; border: 1px solid #eccdd2;
  border-radius: 14px; padding: clamp(22px,2.2vw,32px);
  transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s, border-color .5s;
  text-decoration: none;
}
.june-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px -24px rgba(178,56,75,.4);
  border-color: #d24a5e; color: #2a161c;
}
.june-card-label {
  font-family: 'Space Mono', monospace;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: #b3384b; margin-bottom: 16px;
}
.june-card-title {
  margin: 0 0 12px;
  font-family: 'Instrument Serif', serif;
  font-weight: 400; font-size: clamp(23px,1.9vw,32px); line-height: 1.08;
}
.june-card-desc {
  margin: 0; font-size: 16px; line-height: 1.6; color: #5a4247;
}

/* ── Approach ───────────────────────────────────── */
#june-approach {
  padding: clamp(70px,11vh,140px) clamp(20px,6vw,120px);
  background: #fdf6f4;
}
.june-approach-inner { max-width: 1200px; margin: 0 auto; }
.june-approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(20px,3vw,56px);
}
.june-approach-num {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(34px,3vw,52px);
  color: #d24a5e; line-height: 1; margin-bottom: 14px;
}
.june-approach-title {
  margin: 0 0 10px;
  font-size: clamp(19px,1.4vw,23px); font-weight: 600;
}
.june-approach-desc {
  margin: 0; font-size: 16px; line-height: 1.6; color: #5a4247;
}

/* ── Footer ─────────────────────────────────────── */
#june-footer {
  padding: clamp(80px,14vh,170px) clamp(20px,6vw,120px);
  background: linear-gradient(140deg, #2a161c 0%, #43202b 100%);
  color: #f7e4e7;
}
.june-footer-label {
  margin: 0 0 18px;
  font-family: 'Space Mono', monospace;
  font-size: 14px; letter-spacing: .3em; text-transform: uppercase;
  color: #f2b8c1;
}
.june-footer-h2 {
  margin: 0 0 32px;
  font-family: 'Instrument Serif', serif;
  font-weight: 400; font-size: clamp(40px,7vw,116px);
  line-height: .98; letter-spacing: -.01em; max-width: 16ch;
}
.june-footer-h2 em { font-style: italic; color: #f2b8c1; }
.june-footer-ctas {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}
.june-btn-footer-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: #d24a5e; color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 17px;
  padding: 17px 32px; border-radius: 999px;
  transition: transform .4s cubic-bezier(.16,1,.3,1), background .3s;
  text-decoration: none;
}
.june-btn-footer-primary:hover { transform: translateY(-3px); background: #e35d70; color: #fff; }

.june-btn-footer-outline {
  display: inline-flex; align-items: center; gap: 8px;
  color: #f7e4e7; border: 1px solid rgba(247,228,231,.45);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px; padding: 16px 28px; border-radius: 999px;
  transition: border-color .3s, color .3s;
  text-decoration: none;
}
.june-btn-footer-outline:hover { border-color: #f2b8c1; color: #f2b8c1; }

.june-copyright {
  margin: 52px 0 0;
  font-family: 'Space Mono', monospace;
  font-size: 13px; letter-spacing: .1em; color: #d19aa4;
}

/* ══════════════════════════════════════════════════
   CASE STUDY PAGES
   ══════════════════════════════════════════════════ */

/* Title section */
.cs-title {
  padding: clamp(120px,17vh,200px) clamp(20px,6vw,120px) clamp(50px,7vh,86px);
  background: radial-gradient(120% 120% at 12% 8%, #ffffff 0%, #fbeef0 46%, #f7dbe0 100%);
}
.cs-title-inner { max-width: 1000px; margin: 0 auto; }

.cs-eyebrow {
  margin: 0 0 clamp(26px,3.6vh,42px);
  font-family: 'Space Mono', monospace;
  font-size: clamp(12px,1vw,14px);
  letter-spacing: .32em; text-transform: uppercase;
  color: #b3384b;
}
.cs-h1 {
  margin: 0;
  font-family: 'Instrument Serif', serif;
  font-weight: 400; line-height: 1;
  letter-spacing: -.015em;
  font-size: clamp(40px,7vw,104px);
  max-width: 16ch;
}
.cs-subtitle {
  margin: clamp(28px,3.4vh,40px) 0 0;
  max-width: 60ch;
  font-size: clamp(18px,1.7vw,25px);
  line-height: 1.55; color: #7a5c62;
}
.cs-meta {
  margin-top: clamp(34px,4.6vh,56px);
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0;
  font-family: 'Space Mono', monospace;
  font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
}
.cs-meta-item { display: inline-flex; gap: 7px; }
.cs-meta-label { color: #7a5c62; }
.cs-meta-value { color: #3d2c30; }
.cs-meta-sep { margin: 0 clamp(14px,1.8vw,26px); color: #d9aab2; }

/* Generic section */
.cs-section {
  padding: clamp(56px,9vh,110px) clamp(20px,6vw,120px);
}
.cs-section--blush { background: #fbeef0; }
.cs-section--cream { background: #fdf6f4; }
.cs-section--dark {
  background: linear-gradient(150deg, #2a161c 0%, #3a1c25 55%, #43202b 100%);
  color: #f7e4e7;
}
.cs-inner { max-width: 720px; margin: 0 auto; }
.cs-inner--wide { max-width: 1040px; margin: 0 auto; }

/* Section label — same pattern as main site */
.cs-label {
  margin: 0 0 clamp(18px,2.2vh,26px);
  font-family: 'Space Mono', monospace;
  font-size: 13px; letter-spacing: .28em; text-transform: uppercase;
  color: #b3384b;
}
.cs-label--dark { color: #f2b8c1; }

.cs-h2 {
  margin: 0 0 clamp(28px,3.6vh,44px);
  font-family: 'Instrument Serif', serif;
  font-weight: 400; line-height: 1.04; letter-spacing: -.01em;
  font-size: clamp(30px,4.4vw,56px);
}
.cs-h2--dark { color: #f7e4e7; margin-bottom: clamp(28px,3.6vh,44px); font-size: clamp(30px,4.6vw,60px); }

/* Body text */
.cs-body {
  font-size: clamp(17px,1.35vw,20px);
  line-height: 1.7; color: #3d2c30;
}
.cs-body p { margin: 0 0 1.4em; }
.cs-body p:last-child { margin-bottom: 0; }
.cs-body--dark { color: #ecd2d7; max-width: 60ch; }
.cs-body--dark strong { color: #fff; font-weight: 700; }
.cs-list {
  margin: clamp(14px,1.6vh,20px) 0 clamp(18px,2vh,26px) 1.2em;
  padding: 0;
}
.cs-list li { margin-bottom: .75em; line-height: 1.7; }
.cs-body--dark .cs-list { color: #ecd2d7; }

.cs-big-serif {
  margin: 1.6em 0 0;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(24px,3vw,38px);
  line-height: 1.15; color: #2a161c;
}

/* Dark section divider line */
.cs-divider {
  width: 64px; height: 1px;
  background: #d24a5e;
  margin-bottom: clamp(24px,3vh,36px);
}

/* Blockquote / pull-quote (method section) */
.cs-blockquote {
  margin: 0 0 clamp(34px,4.6vh,58px);
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: clamp(32px,5.4vw,68px);
  line-height: 1.06; letter-spacing: -.015em;
  color: #2a161c;
}

/* Inline pull-quote with left border */
.cs-pullquote {
  margin: clamp(30px,4vh,48px) 0;
  padding: clamp(24px,3vw,40px) clamp(26px,3.4vw,44px);
  border-left: 3px solid #d24a5e;
  background: #fff;
  border-radius: 0 14px 14px 0;
}
.cs-pullquote blockquote {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(20px,2.2vw,28px);
  line-height: 1.35; color: #2a161c;
}
.cs-pullquote figcaption {
  margin-top: 16px;
  font-family: 'Space Mono', monospace;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: #b3384b;
}

/* Caveat / note box */
.cs-caveat {
  margin: clamp(30px,4vh,44px) 0 0;
  background: #f7dbe0;
  border-radius: 14px;
  padding: clamp(22px,2.4vw,32px);
  font-size: 15px; line-height: 1.65; color: #7a5c62;
}
.cs-caveat-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: #b3384b; display: block; margin-bottom: 10px;
}

/* Persona cards */
.cs-persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(18px,2.4vw,32px);
}
.cs-persona-card {
  background: #fff; border: 1px solid #eccdd2;
  border-radius: 16px; padding: clamp(26px,2.8vw,40px);
}
.cs-persona-label {
  margin: 0 0 16px;
  font-family: 'Space Mono', monospace;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: #b3384b;
}
.cs-persona-name {
  margin: 0 0 14px;
  font-family: 'Instrument Serif', serif;
  font-weight: 400; font-size: clamp(26px,2.4vw,36px); line-height: 1.05;
}
.cs-persona-desc {
  margin: 0; font-size: clamp(16px,1.25vw,18px);
  line-height: 1.65; color: #5a4247;
}

/* Numbered work list */
.cs-work-list {
  list-style: none; margin: 0 0 clamp(40px,5.4vh,66px); padding: 0;
  max-width: 820px;
  border-top: 1px solid #eccdd2;
}
.cs-work-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px,2.4vw,34px);
  padding: clamp(18px,2.4vh,26px) 0;
  border-bottom: 1px solid #eccdd2;
  font-size: clamp(17px,1.4vw,21px);
  line-height: 1.5; color: #2a161c;
}
.cs-work-num {
  font-family: 'Space Mono', monospace;
  font-size: 13px; color: #b3384b; padding-top: .35em;
}

/* Image placeholder grid */
.cs-img-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: clamp(130px,17vw,196px);
  gap: clamp(12px,1.4vw,20px);
}
.cs-img-slot {
  margin: 0; border-radius: 16px;
  background: #fff; border: 1.5px dashed #d99aa6;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 11px; text-align: center; padding: 16px;
}
.cs-img-slot--large { grid-column: span 4; grid-row: span 2; gap: 14px; padding: 24px; }
.cs-img-slot--half { grid-column: span 2; }
.cs-img-slot--third { grid-column: span 3; }
.cs-img-slot-label {
  font-family: 'Space Mono', monospace;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: #a35a68;
}
.cs-img-slot-sub {
  font-family: 'Space Mono', monospace;
  font-size: 10.5px; letter-spacing: .14em; color: #a35a68;
}
.cs-img-caption {
  margin: clamp(20px,2.6vh,30px) 0 0;
  font-style: italic; font-size: 15px;
  line-height: 1.6; color: #836169;
}

/* Outcome — open question block */
.cs-open-block {
  margin: clamp(40px,5.4vh,66px) 0 0;
  padding-top: clamp(30px,4vh,44px);
  border-top: 1px solid #eccdd2;
}
.cs-open-label {
  margin: 0 0 14px;
  font-family: 'Space Mono', monospace;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: #b3384b;
}

/* Reflection items */
.cs-reflection-grid { display: grid; gap: clamp(22px,3vh,34px); }
.cs-reflection-item {
  margin: 0;
  font-size: clamp(17px,1.35vw,20px);
  line-height: 1.65; color: #3d2c30;
}
.cs-reflection-item strong { font-weight: 700; color: #2a161c; }

/* Case study footer CTA — extends june-footer */
.cs-footer-h2 {
  margin: 0 0 40px;
  font-family: 'Instrument Serif', serif;
  font-weight: 400; font-size: clamp(40px,7vw,116px);
  line-height: .98; letter-spacing: -.01em; max-width: 14ch;
}
.cs-footer-h2 em { font-style: italic; color: #f2b8c1; }

/* ── Mobile ─────────────────────────────────────── */
@media (max-width: 768px) {
  .june-case-grid { grid-template-columns: 1fr; }
  .june-about-inner { grid-template-columns: 1fr; }
  .june-photo-frame { display: none; }
}

@media (max-width: 520px) {
  nav.june-nav a.june-nav-cv { display: none; }
  .june-ctas { flex-direction: column; align-items: flex-start; }
  .june-footer-ctas { flex-direction: column; align-items: flex-start; }
}
