/* ============================================================
   Sumeet Pawar — Portfolio
   Design tokens
   ============================================================ */
:root {
  /* Color */
  --paper: #FFFDF9;
  --hero-glow: radial-gradient(circle, rgba(51, 88, 224, .32) 0%, rgba(51, 88, 224, 0) 70%);
  --ink: #1C1712;
  --ink-soft: #6E6459;
  --ink-faint: #A69C8E;
  --card: #FFFFFF;
  --border: #F1E7D4;

  --accent: #3358E0;
  --accent-dark: #1F3C9E;
  --accent-soft: #E6ECFC;

  --civic: #9D5B0B;
  --civic-soft: #FBEEDC;

  --wellness: #187262;
  --wellness-soft: #DEF1EC;

  --status-dot: #1FA463;

  --shadow-sm: 0 2px 10px rgba(28, 23, 18, .06);
  --shadow-md: 0 8px 28px rgba(28, 23, 18, .10);
  --shadow-lg: 0 18px 48px rgba(28, 23, 18, .14);

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --font-display: 'Bricolage Grotesque', 'Segoe UI', sans-serif;
  --font-accent: 'Fraunces', Georgia, serif;
  --font-body: 'IBM Plex Sans', 'Segoe UI', sans-serif;

  --container: 1180px;
  --gap: clamp(1rem, 2vw, 2rem);

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ============================================================
   Reset / base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.section {
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.section-header {
  max-width: 640px;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: .5rem;
}

.section-title {
  font-size: clamp(1.75rem, 2.6vw + 1rem, 2.5rem);
}

.section-lead {
  margin-top: .85rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 56ch;
}

/* ============================================================
   Buttons & pills
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .98rem;
  border: 1px solid transparent;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--ink);
  color: #FFF9EE;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: #4B36FB; box-shadow: var(--shadow-md); }

.btn-secondary {
  background: #FFFFFF;
  color: var(--ink);
  border-color: var(--border);
}
.btn-secondary:hover { box-shadow: var(--shadow-sm); }

.btn-outline-inverse {
  background: rgba(255, 255, 255, .35);
  color: var(--ink);
  border-color: rgba(28, 23, 18, .18);
}
.btn-outline-inverse:hover { background: rgba(255, 255, 255, .55); }

.icon-arrow { font-size: 1.05em; transition: transform .18s var(--ease); }
.btn:hover .icon-arrow { transform: translate(2px, -2px); }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  border: 1px solid rgba(28, 23, 18, .08);
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--status-dot);
  box-shadow: 0 0 0 3px rgba(31, 164, 99, .18);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .85rem;
  border-radius: var(--radius-pill);
  font-size: .82rem;
  font-weight: 600;
  background: var(--accent-soft);
  color: var(--accent-dark);
}
.tag.civic { background: var(--civic-soft); color: var(--civic); }
.tag.wellness { background: var(--wellness-soft); color: var(--wellness); }

/* ============================================================
   Nav
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem clamp(1rem, 3vw, 2rem) 0;
}
.nav-pill {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .6rem .6rem .6rem 1rem;
  background: rgba(255, 253, 249, .82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(28, 23, 18, .08);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.logo-mark {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}
.logo-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: #FFF3D9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-link {
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .15s var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--ink);
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: var(--ink);
}
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }

.mobile-panel {
  display: none;
  max-width: var(--container);
  margin: .6rem auto 0;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.mobile-panel.open { display: block; }
.mobile-panel .nav-link { display: block; padding: .6rem 0; font-size: 1.05rem; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions .btn-primary span.btn-label-full { display: none; }
}

@media (max-width: 420px) {
  .logo-mark .logo-text { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background: var(--paper);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero-inner {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.hero-title {
  font-size: clamp(2.4rem, 3.2vw + 1.3rem, 4.1rem);
  color: var(--ink);
}
.accent-italic {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  color: var(--accent-dark);
}

.hero-sub {
  margin-top: 1.25rem;
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.75rem;
}
.skill-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(28, 23, 18, .1);
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
  backdrop-filter: blur(6px);
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.hero-photo {
  position: relative;
}
.hero-photo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 105%;
  height: 90%;
  transform: translate(-50%, -50%);
  background: var(--hero-glow);
  filter: blur(50px);
  z-index: 0;
}
.hero-photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  -webkit-mask-image: linear-gradient(to bottom, black 72%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 72%, transparent 100%);
}
.hero-floating-badge {
  position: absolute;
  z-index: 2;
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, .85);
}
.hero-floating-badge.badge-1 { top: 6%; left: -6%; }
.hero-floating-badge.badge-2 { top: 42%; right: -8%; }
.hero-floating-badge.badge-3 { bottom: 22%; left: -4%; }

.work-thumb img,
.about-photo img,
.cs-cover img,
.solution-card .placeholder-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  text-align: center;
  padding: 1.5rem;
  background:
    repeating-linear-gradient(135deg, rgba(28,23,18,.05) 0 2px, transparent 2px 14px),
    #FBF6EA;
  color: var(--ink-soft);
  border: 1.5px dashed rgba(28, 23, 18, .18);
}
.placeholder-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(28, 23, 18, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.placeholder-label {
  font-weight: 600;
  font-size: .85rem;
  color: var(--ink);
}
.placeholder-caption {
  font-size: .78rem;
  color: var(--ink-soft);
  max-width: 22ch;
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { max-width: 360px; margin: 0 auto; order: -1; text-align: center; }
  .hero-floating-badge {
    position: static;
    display: inline-flex;
    margin: .75rem .3rem 0;
  }
}

/* hero entrance */
.reveal {
  opacity: 0;
  transform: translateY(16px);
}
.reveal.is-visible {
  animation: reveal-up .7s var(--ease) forwards;
}
@keyframes reveal-up {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; animation: none; }
}

/* ============================================================
   How I Work
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  position: relative;
}
.process-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  position: relative;
}
.process-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.process-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1rem;
}
.process-card h3 { font-size: 1.25rem; margin-bottom: .6rem; }
.process-card p { color: var(--ink-soft); font-size: .96rem; }

.process-connector {
  display: none;
}
@media (min-width: 720px) {
  .process-grid::before {
    content: '';
    position: absolute;
    top: 2.6rem;
    left: 16.5%;
    right: 16.5%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 14px);
    z-index: 0;
  }
}

@media (max-width: 720px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Selected Work
   ============================================================ */
.work-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
.work-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.work-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.work-card.reverse .work-thumb { order: 2; }
.work-card.reverse .work-info { order: 1; }

.work-thumb {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.work-thumb .placeholder { border-radius: var(--radius-md); }

.work-info .tag { margin-bottom: 1rem; }
.work-title { font-size: clamp(1.5rem, 2vw + 1rem, 2rem); margin-bottom: .75rem; }
.work-desc { color: var(--ink-soft); font-size: 1.02rem; max-width: 44ch; }
.work-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.5rem;
  font-weight: 600;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 2px;
}

@media (max-width: 780px) {
  .work-card, .work-card.reverse { grid-template-columns: 1fr; }
  .work-card.reverse .work-thumb, .work-card.reverse .work-info { order: initial; }
}

/* ============================================================
   Who I Am
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-md);
}
.about-photo .placeholder { border-radius: var(--radius-lg); }

.about-bio p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 1.5rem; max-width: 62ch; }
.about-bio strong { color: var(--ink); }

.experience-list { border-top: 1px solid var(--border); margin-top: 2rem; }
.experience-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}
.experience-role { font-weight: 600; }
.experience-org { color: var(--ink-soft); font-size: .92rem; }
.experience-date { color: var(--ink-faint); font-size: .88rem; white-space: nowrap; }

@media (max-width: 780px) {
  .about-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .experience-item { flex-direction: column; gap: .25rem; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--border);
  margin-top: clamp(2rem, 5vw, 4rem);
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2rem, 4vw, 3rem);
}
.footer-cta {
  font-size: clamp(1.8rem, 3vw + 1rem, 3rem);
  max-width: 16ch;
}
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}
.footer-meta {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(28, 23, 18, .12);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: .9rem;
  color: var(--ink);
}
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-weight: 600; }
.footer-links a:hover { text-decoration: underline; }

/* ============================================================
   Case study pages
   ============================================================ */
.cs-hero { padding-top: clamp(2rem, 5vw, 3.5rem); }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.back-link:hover { color: var(--ink); }

.cs-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.25rem; }
.cs-title { font-size: clamp(2rem, 3vw + 1rem, 3.25rem); max-width: 18ch; }
.cs-dek { margin-top: 1rem; color: var(--ink-soft); font-size: 1.1rem; max-width: 60ch; }

.cs-cover {
  margin-top: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-lg);
}
.cs-cover .placeholder { border-radius: var(--radius-lg); }

.cs-section { padding: clamp(2.5rem, 5vw, 4rem) 0; border-bottom: 1px solid var(--border); }
.cs-section:last-of-type { border-bottom: none; }
.cs-section h2 { font-size: clamp(1.5rem, 2vw + 1rem, 2.1rem); margin-bottom: 1.25rem; }
.cs-body { color: var(--ink-soft); font-size: 1.05rem; max-width: 68ch; }
.cs-body + .cs-body { margin-top: 1rem; }

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.5rem;
}

.research-figure {
  margin: 1.5rem 0 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  background: var(--card);
}
.research-figure + .research-figure { margin-top: 1.25rem; }
.research-figure + .cs-body { margin-top: 1.5rem; }
.research-figure.plain {
  border: none;
  box-shadow: none;
  background: transparent;
}

.outcome-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.outcome-image img { width: 100%; height: auto; display: block; }
@media (max-width: 780px) {
  .outcome-layout { grid-template-columns: 1fr; }
  .outcome-image { order: -1; max-width: 280px; margin: 0 auto; }
}
.research-figure img { width: 100%; height: auto; display: block; }
.research-figure .placeholder { border-radius: 0; }
.research-figure figcaption {
  padding: .85rem 1.5rem;
  font-size: .88rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--border);
}

/* Two-column sub-statements, e.g. "The Challenge" / "The Goal" */
.problem-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}
.problem-cols h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.problem-cols p { color: var(--ink-soft); font-size: 1rem; }
@media (max-width: 640px) {
  .problem-cols { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* Icon circle, used for findings + timeline steps */
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wellness);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-circle svg { width: 26px; height: 26px; }

/* Horizontal evolution timeline */
.timeline-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 1rem;
  margin-top: 2rem;
  position: relative;
}
.timeline-step {
  flex: 1 1 140px;
  min-width: 130px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline-step .icon-circle {
  width: 64px;
  height: 64px;
  background: var(--wellness-soft);
  color: var(--wellness);
  margin-bottom: .85rem;
}
.timeline-step .icon-circle svg { width: 28px; height: 28px; }
.timeline-step h4 { font-size: .95rem; margin-bottom: .35rem; }
.timeline-step p { font-size: .82rem; color: var(--ink-soft); max-width: 20ch; }

/* Offline vs online journey comparison */
.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.journey-card {
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  background: var(--card);
}
.journey-card.tinted { background: var(--wellness-soft); border-color: transparent; }
.journey-card h3 { font-size: 1.15rem; margin-bottom: 1.5rem; }
.journey-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .5rem 0;
  margin-bottom: 1.5rem;
}
.journey-steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--ink-faint) 0 5px, transparent 5px 9px);
  opacity: .5;
  z-index: 0;
}
.journey-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 .25rem;
}
.journey-step .icon-circle {
  width: 44px;
  height: 44px;
  background: #fff;
  color: var(--wellness);
  border: 1px solid var(--border);
  margin-bottom: .5rem;
}
.journey-step .icon-circle svg { width: 20px; height: 20px; }
.journey-step span { font-size: .78rem; color: var(--ink-soft); line-height: 1.25; }
.journey-limitations {
  background: rgba(255,255,255,.6);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
}
.journey-card:not(.tinted) .journey-limitations { background: var(--paper); }
.journey-limitations strong { display: block; margin-bottom: .5rem; font-size: .92rem; }
.journey-limitations ul { display: flex; flex-direction: column; gap: .35rem; }
.journey-limitations li { font-size: .88rem; color: var(--ink-soft); padding-left: 1rem; position: relative; }
.journey-limitations li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink-faint);
}
@media (max-width: 780px) {
  .journey-grid { grid-template-columns: 1fr; }
}

/* Key Insights: observations -> what it means */
.insights-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}
.insights-col h3 { font-size: 1.3rem; margin-bottom: 1.5rem; }
.insight-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-height: 4.5rem;
  border-top: 1px solid var(--border);
  padding: 1.1rem 0;
}
.insights-col:first-child .insight-row { justify-content: space-between; }
.insight-row p { color: var(--ink-soft); font-size: .98rem; }
.insight-row .row-arrow { color: var(--ink-faint); flex-shrink: 0; }
@media (max-width: 780px) {
  .insights-table { grid-template-columns: 1fr; gap: 0; }
  .insights-col + .insights-col h3 { margin-top: 1.5rem; }
  .insights-col:first-child .insight-row .row-arrow { display: none; }
}

.persona-grid, .insight-grid, .solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.persona-grid { grid-template-columns: repeat(2, 1fr); }

.persona-card, .insight-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.insight-card .icon-circle { margin-bottom: 1.1rem; }
.process-grid.wellness .process-num { color: var(--wellness); }
.persona-card h3, .insight-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.persona-card p, .insight-card p { color: var(--ink-soft); font-size: .95rem; }

.solution-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.solution-card .placeholder-block {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.solution-card .placeholder-block .placeholder { border-radius: var(--radius-md); }
.solution-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.solution-card p { color: var(--ink-soft); font-size: .93rem; }

.pull-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.5rem, 2vw + 1rem, 2.25rem);
  line-height: 1.35;
  max-width: 26ch;
  padding: 2rem 0;
}
.pull-quote.civic { color: var(--civic); }
.pull-quote.wellness { color: var(--wellness); }

.reflection-quote {
  border-left: 3px solid var(--border);
  padding-left: 1.5rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 60ch;
}
.reflection-quote + .reflection-quote { margin-top: 1.25rem; }

.next-project {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 5vw, 4rem);
}
.next-project-label { color: var(--ink-soft); font-size: .95rem; }
.next-project-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.08;
  font-size: clamp(1.4rem, 2vw + 1rem, 2rem);
  margin-top: .35rem;
}

@media (max-width: 780px) {
  .persona-grid, .insight-grid, .solution-grid { grid-template-columns: 1fr; }
}
@media (max-width: 980px) and (min-width: 781px) {
  .insight-grid, .solution-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Utilities
   ============================================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.stack { display: flex; flex-direction: column; }
.hide-mobile { }
@media (max-width: 600px) {
  .hide-mobile { display: none; }
}
