/* =========================
   BASE
========================= */
:root {
  --text: #111;
  --muted: #7f7f7f;
  --card: #f3f3f3;
  --tag: #e9e9e9;
  --footer: #2f2f2f;
  --footer-text: #cfcfcf;

  --accent: #ff7a1a;

  --page-pad-x: 80px;
  --nav-top: 28px;

  --content-max: 920px;

  --radius-card: 22px;
  --radius-tag: 999px;

  --gradient-accent: linear-gradient(
    90deg,
    #D52C69 0%,
    #FF7A1A 50%,
    #FFD60F 100%
  );

  /* ✅ single source of truth for fixed header height */
  --header-h: 92px;
}

* { box-sizing: border-box; }

html, body{
  margin: 0;
  padding: 0;
  min-height: 100%;
}

html{
  background: var(--footer); /* if anything extends beyond body, it blends with footer */
}

body{
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: #fff;

  display: flex;
  flex-direction: column;

  /* ✅ pushes all content below fixed nav */
  padding-top: var(--header-h);
}

main{
  flex: 1 0 auto;
  display: block;
}

footer{
  flex-shrink: 0;
}

/* =========================
   NAV
========================= */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;

  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);

  padding: var(--nav-top) var(--page-pad-x) 14px;
}


/* Always-visible nav */
.site-header{
  position: fixed;   /* was: sticky */
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

/* Prevent content from sliding under the fixed nav */
body{
  padding-top: 0; /* adjust if your header is taller/shorter */
}


.nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.nav__brand {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1px;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
}

.nav__link {
  font-size: 13px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
}

.nav__link--active {
  color: var(--text);
  font-weight: 700;
}

/* =========================
   HOME HERO
========================= */
.hero {
  padding: 120px var(--page-pad-x) 0;
}

.hero__inner {
  max-width: 920px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 440px 1fr;
  align-items: center;
  gap: 70px;
}

.hero__text { max-width: 440px; }

.hero__headline {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.1px;
}

.highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.hero__art {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero__img {
  width: 550px;
  height: auto;
  display: block;
}

/* =========================
   SELECTED WORK
========================= */
.work {
  padding: 86px var(--page-pad-x) 110px;
}

.work__inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.section-title {
  margin: 0 0 26px;
  font-size: 14px;
  font-weight: 700;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.work-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.work-card__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.work-card--single { grid-column: 1 / 2; }

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  border-radius: var(--radius-tag);
  background: var(--tag);
  font-size: 11px;
  color: #6b6b6b;
  font-weight: 600;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: var(--footer);
  color: var(--footer-text);

  padding: 54px var(--page-pad-x) 80px; /* 👈 increase bottom padding */
  margin: 0;    
  margin-top: auto;                        /* 👈 kill any stray margins */
}


.footer__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.footer__title {
  margin: 0 0 22px;
  font-size: 22px;
  font-weight: 800;

  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer__meta { display: grid; gap: 6px; }

.footer__line {
  margin: 0;
  font-size: 13px;
  color: #bdbdbd;
}

.footer__right {
  display: flex;
  gap: 46px;
}

.footer__link {
  color: #bdbdbd;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

/* =========================
   ABOUT PAGE
========================= */
.about-page {
  padding: 110px var(--page-pad-x) 120px;
}

.about-page__inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}

.about-hero__title {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0.1px;
}

.about-hero__accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.about-hero__body p {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.55;
  color: #2f2f2f;
  max-width: 46ch;
}

.about-hero__image-wrap { display: flex; justify-content: flex-end; }

.about-hero__image {
  width: 380px;
  height: 260px;
  object-fit: cover;
  border-radius: 26px;
  display: block;
  background: #d9d9d9;
}

.about-info { margin-top: 72px; }

.about-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 90px;
  row-gap: 58px;
}

.about-card__title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-card__icon { display: inline-flex; width: 18px; justify-content: center; }

.about-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-list li {
  font-size: 13px;
  line-height: 1.65;
  color: #2f2f2f;
}

.about-card__small {
  margin: 18px 0 0;
  font-size: 13px;
  color: #2f2f2f;
}

.about-lines p {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.55;
  color: #2f2f2f;
}

/* =========================
   EVERYTIME CASE STUDY (SCOPED)
========================= */
.case-everytime {
  --case-red: #f91f15;
  --case-muted: #9f9f9d;
  --case-pink: #fff3f3;
  --case-gray: #f5f5f5;
}

.case-everytime main { padding-bottom: 0; }


/* Reusable phone video component */
.case-everytime .phone-media{
  aspect-ratio: 9 / 19.5;
  border-radius: 62px;
  overflow: hidden;
  background: transparent;

  display: flex;
  align-items: center;
  justify-content: center;
}

.case-everytime .phone-media__video{
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;
  object-position: 58.5% 50%;
  transform: scale(1.18); /* change per video if needed */
}

.case-everytime .phone-media__video_social{
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;
  object-position: 58.5% 42%;
  transform: scale(1.18) translateY(-1.80%); /* change per video if needed */
}


/* HERO phone video mask */
.case-everytime .case-hero__phone-wrap{
  height: 70vh;
  max-height: 447px;

  aspect-ratio: 9 / 19.5;
  width: calc(min(70vh, 475px) * (9 / 19.5)); /* ✅ derived width */

  border-radius: 38px;
  overflow: hidden;
  background: #000;

  display: flex;
  align-items: center;
  justify-content: center;


}

.case-everytime .case-hero__phone-video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: 58.5% 50%;

  /* ✅ if you still need a *tiny* zoom, do it here */
  transform: scale(1.18);
}



.case-everytime .case-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--page-pad-x);
}

/* Global sections */
.case-everytime .case-section { padding: 72px 0 32px; }
.case-everytime .case-block { padding: 0; }
.case-everytime .case-block--gray { background: var(--case-gray); }
.case-everytime .case-block--pink { background: var(--case-pink); }

/* Snap overview closer to hero */
.case-everytime .case-hero + .case-section { padding-top: 34px; }

/* Typography */
.case-everytime .case-kicker {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 350;
  color: var(--case-muted);
  padding-top: 65px;
}

/* OVERVIEW kicker: red */
.case-everytime .case-section--overview .case-kicker {
  color: var(--case-red);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.18px;
}

.case-everytime .case-title {
  margin: 16px 0 18px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 800;
  color: #111;
  max-width: none;
}

.case-everytime .case-deck {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  color: #111;
  max-width: 62ch;
}

.case-everytime .case-body {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  color: #2b2b2b;
  max-width: 200ch;
}

.case-everytime .case-body--muted { color: var(--case-muted); }

/* HERO */
.case-everytime .case-hero { padding: 72px 0 0; }

.case-everytime .case-hero__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  column-gap: 48px;
}

.case-everytime .hero-visual {
  margin-top: 60px;
  height: auto;
}

.case-everytime .hero-logo {
  width: 118px;
  height: auto;
  display: block;
  margin-bottom: 26px;
  padding-top: 50px;
}

.case-everytime .hero-strip__mask {
  height: 300px;
  overflow: hidden;
  width: 100%;
}

.case-everytime .hero-strip__img {
  width: 680px;
  height: auto;
  max-width: 100%;
  display: block;
}

.case-everytime .case-hero__right {
  display: flex;
  justify-content: flex-end;
  padding-top: 112px;
}

.case-everytime .case-hero__phone {
  height: 70vh;
  max-height: 475px;
  width: auto;
}

/* OVERVIEW */
.case-everytime .overview-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 56px;
  align-items: start;
}

.case-everytime .project-brief .case-body { max-width: 120ch; }

.case-everytime .my-role {
  margin-top: 34px;
  max-width: 70ch;
}

.case-everytime .my-role .case-body {
  max-width: none;
  line-height: 1.7;
}

/* Divider under "Individual Project" */
.case-everytime .role-divider {
  width: 48px;
  height: 2px;
  background: rgba(0, 0, 0, 0.15);
  margin: 14px 0 18px;
  border-radius: 2px;
}

/* bubble */
.case-everytime .overview-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.case-everytime .role-bubble {
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: var(--case-red);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 0;
  line-height: 1.25;

  margin-top: 0;
  margin-bottom: -120px;
}

.case-everytime .role-bubble{
  margin-top: 500px;        /* pushes it down inside gray */
  margin-bottom: -120px;    /* reduces how far it jumps upward visually */
}



.case-everytime .bubble-text {
  display: inline-block;
  width: 70%;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 650;
  letter-spacing: -0.2px;
  transform: translateY(-44px);
}

.case-everytime .bubble-em { font-weight: 850; }

/* Layering: bubble cut by next section */
.case-everytime .case-block--gray { position: relative; z-index: 1; }

.case-everytime .case-section--target {
  position: relative;
  z-index: 2;
  background: #fff;
  padding-top: 45px;
  padding-bottom: 45px;
}

/* OUTCOME */
.case-everytime .case-section--outcome { padding: 45px 0; }

.case-everytime .outcome-title {
  margin: 0 0 14px;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--case-red);
}

.case-everytime .outcome-body { max-width: 120ch; }














/* =========================
   FEATURES & ITERATIONS  ✅ FIXED
========================= */
.case-everytime .features-title{
  margin: 0 0 26px;
  font-size: 22px;
  font-weight: 800;
  color: #111;
}

.case-everytime .feature-row{
  max-width: 920px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 90px;

  /* IMPORTANT: we want the row height to match the phone,
     and the text block to center within that height */
  align-items: stretch;

  padding: 62px 0;
}



.case-everytime .feature-row__img{
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  justify-self: center;
}

/* ✅ This is the real fix: center the *whole text block* vertically,
   not the description using auto margins */
.case-everytime .feature-row__text{
  max-width: 380px;
  align-self: stretch;

  display: flex;
  flex-direction: column;
  justify-content: center; /* ✅ centers title+desc as a group */
}

.case-everytime .feature-row__title{
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 600;
  color: var(--case-red);
}

.case-everytime .feature-row__desc{
  margin: 14px 0 0; /* ✅ normal spacing instead of auto margins */
  font-size: 16px;
  line-height: 1.75;
  color: var(--case-muted);
  max-width: 350px;
}

/* alternate layout */
.case-everytime .feature-row--reverse{
  grid-template-columns: 1fr 360px;
}



/* =========================
   RESEARCH & VALIDATION
========================= */
/* Make Research & Validation section taller */
.case-everytime .case-section--research {
  padding-top: 60px;
  padding-bottom: 24px;
}

.case-everytime .case-section--research .research-kicker{
  color: var(--case-red);
  font-weight: 800;
  margin-bottom: 12px;
}

.case-everytime .research-title{
  margin: 0 0 14px;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 800;
  color: #111;
}

.case-everytime .research-intro{
  max-width: 120ch;
}

.case-everytime .research-grid{
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.case-everytime .research-subhead{
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--case-muted);
}

.case-everytime .research-list{
  margin: 0;
  padding-left: 16px;
  color: #2b2b2b;
  font-size: 13px;
  line-height: 1.8;
}

.case-everytime .research-visual{
  width: 100%;
  max-width: 620px;
  height: auto;
  display: block;
  justify-self: end;
}

/* Optional icon row (only if you use OPTION B) */
.case-everytime .research-icons{
  margin-top: 14px;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  align-items: center;
}

.case-everytime .research-icons img{
  height: 26px;
  width: auto;
  display: block;
}

@media (max-width: 980px){
  .case-everytime .research-grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .case-everytime .research-visual{
    max-width: 520px;
    justify-self: start;
  }

  .case-everytime .research-icons{
    justify-content: flex-start;
  }
}






/* =========================
   KEY FINDINGS (Research section)
========================= */
.case-everytime .keyfindings {
  margin-top: 100px;
  max-width: 1200px;
}

.case-everytime .keyfindings__title{
  margin: 0 0 22px;
  font-size: 26px;
  font-weight: 800;
  color: #111;
}

.case-everytime .keyfindings__grid {
  max-width: 1200px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
}


/* Left column */
.case-everytime .keyfinding + .keyfinding{
  margin-top: 44px;
}

.case-everytime .keyfinding__heading{
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--case-muted);
  max-width: 62ch;
}

.case-everytime .keyfinding__text{
  margin: 0;
  font-size: 11px;
  line-height: 1.75;
  color: #2b2b2b;
  max-width: 62ch;
}

/* Right column callouts */
.case-everytime .keyfindings__right{
  display: grid;
  gap: 46px;
  justify-items: center; /* centers boxes like your Figma */
}

/* Quote callout (pink fill + even padding) */
.case-everytime .kf-quote {
  background: var(--case-pink);                 /* ✅ filled */
  border: 1px solid var(--case-red);
  border-radius: 10px;

  padding: 16px 18px;                            /* ✅ even top/bottom */
  display: flex;
  align-items: center;                           /* ✅ centers text vertically */
  justify-content: center;
  text-align: center;

  color: var(--case-red);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
}

/* if your quote text is a <p>, kill default margins */
.case-everytime .kf-quote p {
  margin: 0;                                     /* ✅ fixes “bottom padding looks bigger” */
}


/* =========================
   KEY FINDING METRIC (RING)
========================= */

.case-everytime .keycallout--metric {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Ring circle */
.case-everytime .metric-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;

  background: #F5F5F5;                 /* hollow center */
  border: 20px solid #e6e6e6;        /* thick gray ring */

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Percentage text */
.case-everytime .metric-circle__value {
  font-size: 14px;
  font-weight: 800;
  color: #111;
}

/* Label text */
.case-everytime .metric-label {
  font-size: 13px;
  line-height: 1.6;
  color: #2b2b2b;
}


/* Bottom red note */
.case-everytime .keycallout--note{
  max-width: 340px;
  color: var(--case-red);
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 980px){
  .case-everytime .keyfindings__grid{
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .case-everytime .keyfindings__right{
    justify-items: start;
  }

  .case-everytime .metric-label{
    white-space: normal;
  }
}







/* MEDIA (generic) */
.case-everytime .case-media { margin-top: 18px; }

.case-everytime .case-media--center {
  display: flex;
  justify-content: center;
}

.case-everytime .case-media__img {
  width: 100%;
  height: auto;
  display: block;
}

.case-everytime .case-media__img--narrow { max-width: 520px; }

/* Key findings */
.case-everytime .key-findings { margin-top: 26px; }

.case-everytime .key-findings__grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: center;
}

.case-everytime .key-circle {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: #efefef;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-everytime .key-circle__value {
  font-size: 14px;
  font-weight: 600;
  color: #111;
}









/* =========================
   PERSONAS (inside gray section)
========================= */

.case-everytime .persona-section{
  margin-top: 100px;
  max-width: 1000px;
}

.case-everytime .persona-title{
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 800;
  color: #111;
}

.case-everytime .persona-intro{
  margin: 0 0 34px;
  font-size: 13px;
  line-height: 1.7;
  color: #2b2b2b;
  max-width: 70ch;
}

/* each persona block */
.case-everytime .persona-row{
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: start;

  padding: 18px 0 30px;
}

/* left column */
.case-everytime .persona-name{
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: #9f9f9d;
}

.case-everytime .persona-sub{
  margin: 2px 0 14px;
  font-size: 10px;
  color: #b3b3b3;
}

.case-everytime .persona-photo{
  width: 120px;
  height: 120px;
  border-radius: 18px;
  object-fit: cover;
  display: block;
}

/* right column */
.case-everytime .persona-desc{
  margin-top: 24px;
  font-size: 12px;
  line-height: 1.7;
  color: #2b2b2b;
  max-width: 68ch;
}

.case-everytime .persona-needs-label{
  margin: 12px 0 8px;
  font-size: 11px;
  font-weight: 800;
  color: #111;
}

.case-everytime .persona-needs{
  margin: 0;
  padding-left: 16px;
  font-size: 11px;
  line-height: 1.8;
  color: #2b2b2b;
}

/* responsive */
@media (max-width: 980px){
  .case-everytime .persona-row{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .case-everytime .persona-photo{
    width: 110px;
    height: 110px;
  }
}


/* =========================
   JOURNEY MAPPING (inside gray)
========================= */

.case-everytime .journey-section{
  margin-top: 84px; /* space after Personas */
  max-width: 1000px;
}

.case-everytime .journey-title{
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 800;
  color: #111;
}

.case-everytime .journey-intro{
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.7;
  color: #2b2b2b;
  max-width: 120ch;
}

.case-everytime .journey-intro--sub{
  margin-bottom: 34px; /* space before first image */
}

.case-everytime .journey-stack{
  display: grid;
  gap: 34px; /* even spacing between the 3 journey images */
}

.case-everytime .journey-img{
  width: 1000px;
  height: auto;
  display: block;
  margin-top: 40px;
}



/* =========================
   USABILITY TESTING
========================= */

.case-everytime .usability-section {
  margin-top: 96px;          /* space from previous section */
  max-width: 1000px;
}

/* Section title */
.case-everytime .usability-section .case-section__title {
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  color: #111;
}

/* Paragraph text */
.case-everytime .usability-section .case-body {
  margin: 0 0 18px;          /* ✅ creates breathing room */
  font-size: 13px;
  line-height: 1.75;
  color: #2b2b2b;
  max-width: 80ch;
}

/* Task list */
.case-everytime .usability-section ul {
  margin: 0 0 22px 18px;     /* ✅ space before & after list */
  padding: 0;
}

.case-everytime .usability-section li {
  margin-bottom: 6px;        /* tighter like Figma */
  font-size: 13px;
  line-height: 1.7;
  color: #2b2b2b;
}

/* Table wrapper */
.case-everytime .usability-section .table-wrap {
  margin-top: 28px;          /* space above table */
}

/* Table image */
.case-everytime .usability-section .table-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;        /* subtle polish (optional) */
}


/* =========================
   KEY USABILITY ISSUES (white)
========================= */
.case-everytime .case-section--issues{
  background: #fff;
  padding: 90px 0 110px;
}

.case-everytime .issues-title{
  margin: 0 0 34px;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 800;
  color: #111;
}

.case-everytime .issues-list{
  display: grid;
  gap: 46px;
  max-width: 980px; /* keeps it from feeling too wide */
}

.case-everytime .issue__heading{
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  color: #9f9f9d; /* that light gray heading look */
}

.case-everytime .issue__text{
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: #111;
  max-width: 120ch;
}


/* =========================
   EXPLORATORY PLAYTESTING (white)
========================= */
.case-everytime .case-section--playtesting{
  padding: 90px 0 110px;
}

.case-everytime .playtesting-title{
  margin: 0 0 22px;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 800;
  color: #111;
}

.case-everytime .playtesting-copy{
  max-width: 120ch;
  display: grid;
  gap: 14px;              /* space between the two paragraphs */
  margin-bottom: 26px;    /* space before the table image */
}

/* Make sure your table image sits centered and scales nicely */
.case-everytime .playtesting-table{
  margin-top: 0;          /* we’re controlling spacing via playtesting-copy */
}

.case-everytime .playtesting-table .table-img{
  width: 100%;
  height: auto;
  display: block;
  max-width: 1000px;       /* matches the screenshot feel */
  margin-top: 20px;         /* centers the table */
}

/* Mobile: keep it readable and scrollable if needed */
@media (max-width: 980px){
  .case-everytime .case-section--playtesting{
    padding: 70px 0 90px;
  }

  .case-everytime .playtesting-copy{
    margin-bottom: 22px;
  }

  .case-everytime .playtesting-table .table-img{
    max-width: none;
    margin-bottom: 20px;
  }
}


/* =========================
   PLAYTESTING INSIGHTS
========================= */

.case-everytime .case-section--insights {
  padding: 90px 0 110px;
}

.case-everytime .insights-title {
  margin: 0 0 48px;
  font-size: 26px;
  font-weight: 800;
  color: #111;
}

/* Two-column text grid */
.case-everytime .insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 96px;
  row-gap: 64px;
  max-width: 1100px;
}

/* Individual insight block */
.case-everytime .insight {
  max-width: 52ch;
}

/* Headings (light gray like Figma) */
.case-everytime .insight-heading {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--case-muted);
  line-height: 1.3;
}

/* Paragraph text */
.case-everytime .insight-body {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.7;
  color: #2b2b2b;
}

/* Last paragraph in each block */
.case-everytime .insight-body:last-child {
  margin-bottom: 0;
}

/* Wide final insight (spans both columns) */
.case-everytime .insight--wide {
  grid-column: 1 / -1;
  max-width: 62ch;
}

/* Responsive */
@media (max-width: 980px) {
  .case-everytime .insights-grid {
    grid-template-columns: 1fr;
    row-gap: 42px;
  }

  .case-everytime .insight,
  .case-everytime .insight--wide {
    max-width: 100%;
  }
}


/* =========================
   DESIGN ITERATIONS
========================= */

.case-everytime .case-section--iterations{
  padding: 96px 0 110px;
}

.case-everytime .iterations-grid{
  display: grid;
  grid-template-columns: 1fr 520px; /* left text + right image */
  gap: 80px;
  align-items: start;
}

/* Left text */
.case-everytime .iterations-title{
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 800;
  color: #111;
}

.case-everytime .iterations-body{
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.7;
  color: #2b2b2b;
  max-width: 62ch;
}

.case-everytime .iterations-list{
  margin: 10px 0 18px;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.75;
  color: #2b2b2b;
}

.case-everytime .iterations-list li{
  margin: 6px 0;
}

/* “after” paragraph spacing */
.case-everytime .iterations-body--after{
  margin-top: 16px;
}

/* Right image */
.case-everytime .iterations-visual{
  display: flex;
  justify-content: flex-end;
}

.case-everytime .iterations-img{
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 980px){
  .case-everytime .iterations-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .case-everytime .iterations-visual{
    justify-content: flex-start;
  }

  .case-everytime .iterations-img{
    max-width: 520px;
  }
}


/* =========================
   FINAL SOLUTION
========================= */

.case-everytime .case-section--final{
  padding-bottom: 55px;
}

.case-everytime .case-kicker--final{
  margin: 0 0 14px;
  font-size: 26px;
  font-weight: 800;
  color: var(--case-red);
  letter-spacing: 0.18px;
}

.case-everytime .final-body{
  max-width: 120ch;
  font-size: 13px;
  line-height: 1.75;
  color: #2b2b2b;
  margin: 0;
}

/* =========================
   REFLECTION
========================= */

.case-everytime .case-section--reflection{
  padding: 45px 0 45px;
  background: #fff;
}

.case-everytime .reflection-title{
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 800;
  color: #111;
}

.case-everytime .reflection-body{
  margin: 0 0 16px;
  max-width: 120ch;
  font-size: 13px;
  line-height: 1.75;
  color: #2b2b2b;
}

.case-everytime .reflection-body:last-child{
  margin-bottom: 0;
}






/* =========================
   RESPONSIVE (site-wide)
========================= */
@media (max-width: 980px) {
  :root { --page-pad-x: 28px; }

  /* Home */
  .hero__inner { grid-template-columns: 1fr; gap: 26px; }
  .hero__art { justify-content: flex-start; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card--single { grid-column: auto; }

  /* Footer */
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__right { gap: 22px; margin-top: 18px; }

  /* About */
  .about-page { padding: 90px var(--page-pad-x) 90px; }
  .about-hero { grid-template-columns: 1fr; gap: 28px; }
  .about-hero__image-wrap { justify-content: flex-start; }
  .about-hero__image { width: 320px; height: 220px; }
  .about-info__grid { grid-template-columns: 1fr; row-gap: 38px; column-gap: 0; }

  /* Everytime hero */
  .case-everytime .case-hero__grid { grid-template-columns: 1fr; gap: 26px; }
  .case-everytime .case-hero__right { justify-content: flex-start; padding-top: 18px; }
  .case-everytime .case-hero__phone { width: 320px; height: auto; max-height: none; }
  .case-everytime .hero-strip__img { width: 100%; }

  /* Overview */
  .case-everytime .overview-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .case-everytime .overview-right { justify-content: flex-start; }
  .case-everytime .role-bubble { margin-top: 10px; }

  /* Features stack */
  .case-everytime .feature-row,
  .case-everytime .feature-row--reverse{
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 40px 0;
    max-width: 520px;
  }
  .case-everytime .feature-row--reverse .feature-row__img,
  .case-everytime .feature-row--reverse .feature-row__text{
    grid-column: auto;
  }

  .case-everytime .key-findings__grid { grid-template-columns: 1fr; }
}

/* =========================
   WHITE SPACE KILLER (case study pages)
   If DevTools selects <main> in the blank area, this removes it.
========================= */
.case-everytime main,
.case-purrcel main{
  padding-bottom: 0 !important;
}



.footer__email {
  text-decoration: none;
  cursor: pointer;
}

.footer__email:hover {
  text-decoration: underline;
}

.nav__brand:hover {
  opacity: 0.8;
}

.nav__brand {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.nav__link,
.nav__brand {
  transition: opacity 0.15s ease;
}

.nav__link:hover,
.nav__brand:hover {
  opacity: 0.8;
}
