/* ---------- EDITORIAL SIGNATURE (shared language with home + workshops) ----------
   Italic-magenta kicker, staggered reveal, accent-word colour. Tokens
   (--navy, --magenta, --lime, --sky…) come from style.css. */
.kicker {
  font-family: 'Prompt', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--magenta);
  display: block;
  margin-bottom: 16px;
  letter-spacing: 0;
}
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.accent { color: var(--magenta); }   /* accent word on light sections */

/* ---------- RESULTS HERO ---------- */
.results-hero {
  position: relative;
  min-height: 58vh;
  padding: 200px 0 120px;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.results-hero-photo {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.results-hero-tint {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 25% 30%, rgba(85, 193, 255, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 70%, rgba(188, 0, 255, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, rgba(26, 43, 87, 0.82) 0%, rgba(15, 26, 56, 0.92) 100%);
  z-index: 1;
}
.results-hero::after {        /* the thin lime spine — recurring brand signature */
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--lime);
  z-index: 3;
}
.results-hero .hero-inner { position: relative; z-index: 2; }
.results-hero .eyebrow { color: var(--sky); display: block; margin-bottom: 28px; }
.results-hero h1 {
  font-size: clamp(2.8rem, 6.4vw, 5.4rem);
  color: #fff;
  margin: 0 0 30px;
  max-width: 20ch;
  line-height: 1.0;
  letter-spacing: -0.04em;
}
.results-hero h1 .accent { color: var(--lime); }
.results-hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 300;
  max-width: 60ch;
  margin: 0;
  line-height: 1.6;
}

/* ---------- LEFT-ALIGNED SECTION HEADS (override global centred .section-head) ---------- */
.portfolio .section-head,
.spotlights .section-head {
  text-align: left;
  max-width: 46rem;
  margin-bottom: 56px;
}
.portfolio .section-head h2,
.spotlights .section-head h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

/* ---------- PORTFOLIO GRID ---------- */
.portfolio {
  background: var(--bg-warm);
  position: relative;
}
.portfolio::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
  opacity: 0.5;
  pointer-events: none;
}
.portfolio .container { position: relative; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}
.card {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.card:hover { transform: translateY(-4px); }
.card-img {
  aspect-ratio: 16 / 10;
  background: #E8E8E8;
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.04);
}
.card:hover .card-img {
  box-shadow: 0 20px 40px -20px rgba(15, 26, 56, 0.25);
}
.card-img-label {
  position: relative;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #b0b0a8;
  font-weight: 600;
}
.card-img .card-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.portfolio-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 40px 0;
}
.card-pill-row { margin-bottom: 14px; }
.card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 6px;
  font-weight: 800;
  line-height: 1.35;
}
.card p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.55;
}
.card-client {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.case-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.case-stat {
  min-width: 0;
  padding: 12px 10px;
  background: #fff;
  border: 1px solid var(--hairline);
}
.case-stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.98rem;
  line-height: 1.15;
  color: var(--navy);
}
.case-stat-label {
  margin-top: 5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.58rem;
  line-height: 1.25;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
}

/* ---------- CASE STUDY: JENNI ---------- */
.case-jenni {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.case-jenni-photo {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  z-index: 0;
}
.case-jenni-tint {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.9) 100%);
  z-index: 1;
}
.case-jenni .container { position: relative; z-index: 2; }
.case-layout {
  display: grid;
  grid-template-columns: 1.22fr 1fr;
  gap: 96px;
  align-items: start;
}
.case-text .pill { margin-bottom: 28px; }
.case-text h2 {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  color: var(--navy);
  margin-bottom: 44px;
  line-height: 1.08;
  letter-spacing: -0.035em;
  max-width: 18ch;
}
.case-section { margin-bottom: 40px; }
.case-section:last-child { margin-bottom: 0; }
.case-subhead {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--hairline-strong);
}
.case-body p { font-size: 0.98rem; line-height: 1.85; color: #555; margin-bottom: 18px; }
.case-body p:last-child { margin-bottom: 0; }
.case-list { list-style: none; }
.case-list li {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #555;
  padding: 10px 0 10px 24px;
  position: relative;
}
.case-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 19px;
  width: 8px;
  height: 1px;
  background: var(--sky);
}
.case-visuals {
  display: flex;
  flex-direction: column;
  gap: 64px;
  position: sticky;
  top: 120px;
}
.visual-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 18px;
}

/* Before/After block */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ba-panel {
  aspect-ratio: 4 / 5;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--hairline-strong);
}
.ba-panel::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image:
    linear-gradient(rgba(37,60,120,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,60,120,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.ba-before { background: linear-gradient(180deg, #F0EDE8, #E8E4DD); }
.ba-after { background: linear-gradient(180deg, #F2F6FA, #E3ECF5); }
.ba-panel-tag {
  position: relative;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy);
}
.ba-panel-sub {
  position: relative;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  color: #b0b0a8;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}

/* 6 -> 1 graphic */
.systems-graphic {
  padding: 40px 32px;
  background: var(--bg-warm-2);
  border: 1px solid var(--hairline);
}
.sg-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 8px;
}
.sg-from-label, .sg-to-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}
.sg-to-label { text-align: right; color: var(--navy); }
.sg-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}
.sg-tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.sg-tool {
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--hairline-strong);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}
.sg-arrow-big {
  width: 40px;
  height: 2px;
  background: var(--lime);
  position: relative;
}
.sg-arrow-big::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -5px;
  width: 0; height: 0;
  border-left: 10px solid var(--lime);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.sg-one {
  background: var(--lime);
  color: var(--navy);
  padding: 36px 24px;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.2;
}
.sg-one-meta {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy);
  opacity: 0.6;
  margin-bottom: 10px;
}
.case-micro-cta {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
}
.case-micro-cta a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--sky);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.case-micro-cta a:hover { gap: 14px; }

/* ---------- SHOWCASE: ADR ---------- */
.showcase-adr {
  background: var(--bg-warm-2);
  position: relative;
  overflow: hidden;
}
.showcase-adr::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(25deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
  opacity: 0.6;
  pointer-events: none;
}
.showcase-adr .container-narrow { position: relative; }
.showcase-adr .pill { display: inline-block; margin-bottom: 20px; }
.showcase-head {
  text-align: left;
  max-width: 46rem;
  margin: 0 0 56px;
}
.showcase-head h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}
.showcase-head p {
  font-size: 1rem;
  color: #555;
  line-height: 1.75;
}
.showcase-compare {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--hairline-strong);
  background: #fff;
}
.showcase-panel {
  aspect-ratio: 16 / 10;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 28px;
  overflow: hidden;
}
.showcase-panel::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image:
    linear-gradient(rgba(37,60,120,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,60,120,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.showcase-before { background: linear-gradient(135deg, #F0EBE5 0%, #E6DFD6 100%); }
.showcase-after { background: linear-gradient(135deg, #EBF3EC 0%, #DDE9DF 100%); }
.showcase-tag {
  position: relative;
  z-index: 2;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy);
  background: rgba(255,255,255,0.75);
  padding: 6px 12px;
}
.showcase-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 3;
}
.showcase-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--navy);
  z-index: 4;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
}
.showcase-meta {
  text-align: left;
  margin-top: 32px;
  font-size: 0.85rem;
  color: #999;
  letter-spacing: 0.1em;
}

/* ---------- CASE STUDY: DAVE ---------- */
.case-dave {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.case-dave::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image:
    repeating-linear-gradient(115deg, transparent, transparent 120px, rgba(37,60,120,0.02) 120px, rgba(37,60,120,0.02) 121px);
  pointer-events: none;
}
.case-dave .container { position: relative; z-index: 2; }
.case-dave-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.dave-photo {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #D8DEE0 0%, #C0CAD0 100%);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
}
.dave-photo::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.dave-photo-label {
  position: relative;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(37, 60, 120, 0.55);
  font-weight: 700;
  text-align: center;
  max-width: 14ch;
  line-height: 1.6;
}

/* ---------- SPOTLIGHTS ---------- */
.spotlights {
  background: var(--bg-warm-2);
  position: relative;
  overflow: hidden;
}
.spotlights::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image:
    repeating-linear-gradient(115deg, transparent, transparent 80px, rgba(37,60,120,0.015) 80px, rgba(37,60,120,0.015) 81px);
  pointer-events: none;
}
.spotlights .container { position: relative; }
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.spotlight {
  background: #fff;
  border: 1px solid var(--hairline);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.spotlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -25px rgba(15, 26, 56, 0.25);
}
.spotlight-img {
  aspect-ratio: 16 / 10;
  background: #E8E8E8;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.spotlight-img-label {
  position: relative;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #b0b0a8;
  font-weight: 600;
}
.spotlight-body { padding: 32px 32px 36px; }
.spotlight-body .pill { margin-bottom: 18px; }
.spotlight-body h3 { font-size: 1.2rem; margin-bottom: 14px; }
.spotlight-body p { font-size: 0.95rem; color: #555; line-height: 1.7; }

/* ---------- POSITIONING ---------- */
.positioning {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.positioning-photo {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.24;
  z-index: 0;
}
.positioning-tint {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.76) 0%, rgba(255,255,255,0.88) 100%);
  z-index: 1;
}
.positioning .container { position: relative; z-index: 2; }
.positioning-head {
  text-align: left;
  max-width: 46rem;
  margin: 0 0 64px;
}
.positioning-head h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}
.positioning-head p {
  font-size: 1rem;
  color: #555;
  line-height: 1.75;
}
.positioning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}
.pos-col {
  padding-top: 32px;
  border-top: 3px solid;
}
.pos-col.pc-magenta { border-top-color: var(--magenta); }
.pos-col.pc-sky { border-top-color: var(--sky); }
.pos-col.pc-lime { border-top-color: var(--lime); }
.pos-col h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--navy);
}
.pos-col p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
}

/* ---------- RESULTS FINAL CTA ---------- */
.final-cta-photo {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.final-cta-tint {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(26, 43, 87, 0.86) 0%, rgba(15, 26, 56, 0.94) 100%);
  z-index: 1;
}
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 80;
  width: min(680px, calc(100% - 32px));
  transform: translate(-50%, 140%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
}
.sticky-cta.visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 22px;
  background: rgba(20, 31, 62, 0.94);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 20px 50px rgba(15, 26, 56, 0.28);
  backdrop-filter: blur(16px);
}
.sticky-cta-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
}
.btn-small {
  padding: 10px 16px;
  font-size: 0.82rem;
  white-space: nowrap;
}

/* ---------- RESULTS RESPONSIVE ---------- */
@media (max-width: 1000px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .case-layout, .case-dave-layout { grid-template-columns: 1fr; gap: 64px; }
  .case-visuals { position: static; }
  .spotlight-grid { grid-template-columns: 1fr; gap: 32px; }
  .positioning-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 700px) {
  .portfolio-grid { grid-template-columns: 1fr; gap: 40px; }
  .case-stats { grid-template-columns: 1fr; }
  .before-after { grid-template-columns: 1fr; }
  .showcase-compare { grid-template-columns: 1fr; }
  .showcase-divider, .showcase-handle { display: none; }
  .sg-body { grid-template-columns: 1fr; }
  .sg-arrow-big { display: none; }
  .sticky-cta {
    bottom: 12px;
    width: calc(100% - 24px);
  }
  .sticky-cta-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
  }
  .sticky-cta-text { text-align: center; }
  .sticky-cta .btn { justify-content: center; }
}
