/* ============================================================
   Michael Rojo Gomez — Portfolio
   Balanced Edition — warm base, bold type, restrained yellow
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #f2ede6;
  color: #0d0d0d;
  font-size: 16px;
  line-height: 1.6;
  cursor: none;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ── Custom cursor ── */
.cursor {
  width: 10px; height: 10px;
  background: #0d0d0d;
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform .15s ease, background .2s;
  transform: translate(-50%, -50%);
}
.cursor.hover {
  transform: translate(-50%, -50%) scale(4);
  background: rgba(13,13,13,.1);
  mix-blend-mode: multiply;
}
@media (hover: none) { .cursor { display: none; } body { cursor: auto; } }

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  background: #f2ede6;
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}

nav.scrolled {
  border-color: #dedad3;
  box-shadow: 0 1px 0 #dedad3;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 38px; height: 38px;
  border-radius: 50%; overflow: hidden;
  flex-shrink: 0;
  transition: transform .3s ease;
}
.nav-logo-icon img { width: 100%; height: 100%; object-fit: cover; }
.nav-logo:hover .nav-logo-icon { transform: rotate(-8deg); }

.nav-logo-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #0d0d0d;
}

.nav-links {
  display: flex; gap: 36px; list-style: none;
}

.nav-links a {
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: #999;
  position: relative; transition: color .2s;
}

.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: #c9a227;
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: #0d0d0d; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* ============================================================
   SHARED
   ============================================================ */
section { padding: 120px 48px; }

.section-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: #aaa;
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 64px;
}
.section-label::after {
  content: ''; flex: 1; height: 1px; background: #dedad3;
}

footer {
  padding: 56px 48px;
  border-top: 1px solid #dedad3;
  display: flex; align-items: center; justify-content: space-between;
}
footer p { font-size: 12px; color: #aaa; letter-spacing: .5px; }
footer a {
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: #0d0d0d;
  border-bottom: 1.5px solid #c9a227;
  padding-bottom: 3px; transition: opacity .2s;
}
footer a:hover { opacity: .45; }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 340px;
  align-items: end;
  padding: 0 48px 80px;
  position: relative; gap: 48px;
}

.hero-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: #aaa; margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 9.5vw, 132px);
  line-height: .92; letter-spacing: 1px;
  color: #0d0d0d;
}
.hero-headline em { font-style: normal; color: #c9a227; }

.hero-sub {
  margin-top: 32px;
  font-size: 15px; font-weight: 300;
  color: #666; max-width: 380px; line-height: 1.75;
}

.hero-cta {
  margin-top: 40px;
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: #0d0d0d;
  border-bottom: 1.5px solid #c9a227;
  padding-bottom: 4px;
  transition: gap .2s, opacity .2s;
}
.hero-cta:hover { gap: 20px; opacity: .55; }

.hero-avatar {
  align-self: end;
  display: flex; flex-direction: column; align-items: center;
}
.hero-avatar-img {
  width: 280px; height: 280px;
  border-radius: 50%; overflow: hidden;
  background: #1a1a1a; mix-blend-mode: multiply; flex-shrink: 0;
}
.hero-avatar-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transform: scale(1.08);
}

.hero-scroll {
  position: absolute; bottom: 80px; right: 0;
  display: flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: #bbb; writing-mode: vertical-rl;
}
.hero-scroll::before {
  content: ''; display: block;
  width: 1px; height: 56px; background: #ccc;
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(.35); opacity: .25; }
}

/* ── Featured work ── */
.featured-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: #aaa;
  margin-bottom: 56px;
  display: flex; align-items: center; gap: 16px;
}
.featured-label::after { content: ''; flex: 1; height: 1px; background: #dedad3; }

.featured-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
}
.featured-item:first-child { grid-column: 1 / -1; }
.featured-item {
  position: relative; overflow: hidden;
  background: #dedad3; display: block;
  text-decoration: none; cursor: none;
}
.featured-item-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.featured-item:first-child .featured-item-img { aspect-ratio: 21/9; }
.featured-item-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .65s ease;
}
.featured-item:hover .featured-item-img img { transform: scale(1.04); }
.featured-item-info {
  padding: 20px 24px 26px;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.featured-item-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: .3px;
}
.item-meta {
  font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #aaa; text-align: right;
}
.featured-cta { margin-top: 56px; text-align: center; }
.featured-cta a {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: #0d0d0d; border-bottom: 1.5px solid #c9a227;
  padding-bottom: 4px; transition: gap .2s;
}
.featured-cta a:hover { gap: 20px; }

/* ── Clients marquee ── */
.clients-section { padding: 72px 48px; border-top: 1px solid #dedad3; }
.clients-marquee-wrap {
  overflow: hidden;
  -webkit-mask: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.clients-marquee {
  display: flex; gap: 72px; width: max-content;
  animation: marquee 26s linear infinite;
}
.clients-marquee:hover { animation-play-state: paused; }
.clients-marquee img {
  height: 34px; width: auto; object-fit: contain;
  opacity: .4; filter: grayscale(100%);
  transition: opacity .2s, filter .2s;
}
.clients-marquee img:hover { opacity: .85; filter: grayscale(0%); }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   WORK PAGE
   ============================================================ */
.work-hero {
  padding: 160px 48px 80px;
  display: flex; align-items: flex-end; justify-content: space-between;
  border-bottom: 1px solid #dedad3; gap: 48px;
}
.work-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 9.5vw, 132px);
  line-height: .92; letter-spacing: 1px; color: #0d0d0d;
}
.work-hero p {
  max-width: 260px; font-size: 14px; font-weight: 300;
  color: #666; line-height: 1.75; text-align: right;
}
.work-list { padding: 0 48px 120px; list-style: none; }
.work-item {
  display: grid;
  grid-template-columns: 52px 1fr 280px 100px;
  gap: 32px; align-items: center;
  padding: 26px 0; border-bottom: 1px solid #dedad3;
  cursor: none; text-decoration: none;
  transition: padding-left .2s, border-color .2s;
}
.work-item:hover { padding-left: 8px; border-color: #c9a227; }
.work-item-num { font-size: 10px; font-weight: 600; color: #ccc; letter-spacing: 1.5px; }
.work-item-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 3.2vw, 44px);
  letter-spacing: .3px; color: #0d0d0d; transition: color .2s;
}
.work-item:hover .work-item-title { color: #888; }
.work-item-tags { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: #aaa; }
.work-item-year { font-size: 11px; color: #ccc; text-align: right; font-weight: 500; }

.work-item-preview {
  position: fixed; top: 0; left: 0;
  width: 300px; aspect-ratio: 4/3;
  pointer-events: none; z-index: 50;
  overflow: hidden; opacity: 0;
  transition: opacity .25s ease;
  transform: translate(-50%, -50%);
}
.work-item-preview img { width: 100%; height: 100%; object-fit: cover; }
.work-item-preview.visible { opacity: 1; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 160px 48px 120px;
}
.contact-eyebrow {
  font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: #aaa; margin-bottom: 32px;
}
.contact-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 9vw, 124px);
  line-height: .92; letter-spacing: 1px;
  color: #0d0d0d; margin-bottom: 72px; max-width: 800px;
}
.contact-heading em { font-style: normal; color: #c9a227; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start; max-width: 900px;
}
.contact-info h3 {
  font-size: 9px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase; color: #bbb; margin-bottom: 16px;
}
.contact-email {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px; letter-spacing: .3px;
  color: #0d0d0d; display: block; margin-bottom: 44px;
  border-bottom: 1px solid transparent; transition: border-color .2s, color .2s;
}
.contact-email:hover { border-color: #c9a227; color: #555; }
.contact-links { display: flex; flex-direction: column; gap: 10px; }
.contact-links a {
  font-size: 13px; font-weight: 500; color: #666;
  display: flex; align-items: center; gap: 8px;
  transition: color .2s, gap .2s;
}
.contact-links a:hover { color: #0d0d0d; gap: 14px; }
.contact-form { display: flex; flex-direction: column; gap: 28px; }
.form-group   { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 9px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase; color: #aaa;
}
.form-group input, .form-group textarea, .form-group select {
  background: transparent; border: none;
  border-bottom: 1.5px solid #dedad3;
  padding: 10px 0;
  font-family: 'DM Sans', sans-serif; font-size: 15px;
  color: #0d0d0d; outline: none; width: 100%;
  transition: border-color .2s; appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: #c9a227;
}
.form-group textarea { resize: none; min-height: 100px; }
.form-submit {
  display: inline-flex; align-items: center; gap: 12px;
  background: #0d0d0d; color: #f2ede6;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 18px 36px; border: none; cursor: none;
  margin-top: 8px; transition: background .2s, gap .2s;
  align-self: flex-start;
}
.form-submit:hover { background: #333; gap: 22px; }

/* ============================================================
   CASE STUDY SHARED
   ============================================================ */

/* Hero */
.cs-hero {
  position: relative;
  height: 100svh; min-height: 560px;
  overflow: hidden; display: flex; align-items: flex-end;
}
.cs-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 50%;
  filter: brightness(0.5);
  transform: scale(1.05); transition: transform 9s ease;
}
.cs-hero-img.loaded { transform: scale(1); }
.cs-hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(242,237,230,1.0) 0%,
    rgba(10,10,10,0.2)   55%,
    rgba(10,10,10,0.0)   100%
  );
}
.cs-hero-content {
  position: relative; width: 100%;
  padding: 0 48px clamp(48px, 6vw, 80px);
}
.cs-hero-eyebrow {
  font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.6s 0.1s, transform 0.6s 0.1s;
}
.cs-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 9vw, 132px);
  line-height: .92; letter-spacing: 1px;
  color: #f2ede6; margin-bottom: 20px;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.8s 0.25s, transform 0.8s 0.25s;
}
.cs-hero-sub {
  font-size: 15px; font-weight: 300;
  color: rgba(242,237,230,0.55);
  max-width: 46ch; line-height: 1.75;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.7s 0.45s, transform 0.7s 0.45s;
}
.cs-hero-content.visible .cs-hero-eyebrow,
.cs-hero-content.visible .cs-hero-title,
.cs-hero-content.visible .cs-hero-sub {
  opacity: 1; transform: translateY(0);
}

/* Sections */
.cs-section { padding: 100px 48px; border-top: 1px solid #dedad3; }

.cs-two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}

.cs-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 68px);
  line-height: .95; letter-spacing: .5px;
  color: #0d0d0d; margin-bottom: 28px;
}
.cs-heading em { font-style: normal; color: #c9a227; }

.cs-body {
  font-size: 15px; font-weight: 300;
  color: #555; line-height: 1.8; max-width: 54ch;
}
.cs-body + .cs-body { margin-top: 18px; }

/* Snapshot */
.cs-snapshot {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #dedad3;
  border-bottom: 1px solid #dedad3;
  margin-top: 72px;
}
.cs-snap-item {
  padding: 40px 32px 40px 0; border-right: 1px solid #dedad3;
}
.cs-snap-item:first-child { padding-left: 0; }
.cs-snap-item:last-child  { border-right: none; padding-right: 0; padding-left: 32px; }
.cs-snap-item:not(:first-child):not(:last-child) { padding-left: 32px; }
.cs-snap-label {
  font-size: 9px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: #aaa; margin-bottom: 10px;
}
.cs-snap-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: .3px;
  color: #0d0d0d; line-height: 1.45;
}

/* Generic image placeholder */
.cs-img {
  background: #e4dfd8; border: 1px solid #dedad3;
  position: relative; overflow: hidden; display: flex; align-items: flex-end;
}
.cs-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cs-img-label {
  position: relative; font-size: 9px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: #aaa; padding: 10px 12px; z-index: 1;
}

/* 3-col groups */
.cs-pillars, .cs-steps, .cs-decisions, .cs-challenge-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 64px;
}
.cs-pillar, .cs-step, .cs-decision, .cs-challenge-card {
  padding: 0 48px 0 0; border-right: 1px solid #dedad3;
}
.cs-pillar:last-child, .cs-step:last-child,
.cs-decision:last-child, .cs-challenge-card:last-child {
  border-right: none; padding-right: 0; padding-left: 48px;
}
.cs-pillar:nth-child(2), .cs-step:nth-child(2),
.cs-decision:nth-child(2), .cs-challenge-card:nth-child(2) { padding-left: 48px; }

.cs-pillar-num, .cs-step-num, .cs-card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; color: #ccc; letter-spacing: 1px; margin-bottom: 16px;
}
.cs-pillar-title, .cs-step-title, .cs-decision-title, .cs-card-title {
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: #0d0d0d; margin-bottom: 14px;
}
.cs-pillar-body, .cs-step-body, .cs-decision-body, .cs-card-body {
  font-size: 13px; font-weight: 300; color: #777; line-height: 1.75;
}

/* Pillar image */
.cs-pillar-img {
  width: 100%; aspect-ratio: 4/3;
  background: #e4dfd8; border: 1px solid #dedad3;
  margin-bottom: 24px; display: flex; align-items: flex-end;
  overflow: hidden; position: relative;
}
.cs-pillar-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cs-pillar-img-label {
  position: relative; font-size: 9px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: #aaa; padding: 10px 12px; z-index: 1;
}

/* Mockup grid (bus) */
.cs-mockup-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 4px; margin-top: 48px;
}
.cs-mock {
  background: #e4dfd8; border: 1px solid #dedad3;
  overflow: hidden; position: relative; display: flex; align-items: flex-end;
}
.cs-mock img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cs-mock-label {
  position: relative; font-size: 9px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: #aaa; padding: 10px 12px; z-index: 1;
}
.cs-mock-bus      { grid-column: 1 / 9;  aspect-ratio: 21/9; }
.cs-mock-banner   { grid-column: 9 / 13; aspect-ratio: 9/16; }
.cs-mock-backdrop { grid-column: 1 / 5;  aspect-ratio: 4/3; }
.cs-mock-trifold  { grid-column: 5 / 9;  aspect-ratio: 4/3; }
.cs-mock-giveaway { grid-column: 9 / 11; aspect-ratio: 1; }
.cs-mock-social   { grid-column: 11/ 13; aspect-ratio: 1; }
.cs-mock-caption {
  margin-top: 20px; font-size: 12px; font-weight: 300;
  color: #aaa; font-style: italic; max-width: 68ch;
}

/* Awards (bus) */
.cs-awards { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.cs-award {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 28px; align-items: start; padding: 28px 0; border-bottom: 1px solid #dedad3;
}
.cs-award:first-child { border-top: 1px solid #dedad3; }
.cs-award-logo {
  width: 80px; height: 80px;
  background: #e4dfd8; border: 1px solid #dedad3;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.cs-award-logo img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.cs-award-logo-placeholder {
  font-size: 8px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: #bbb; text-align: center;
}
.cs-award-meta { display: flex; flex-direction: column; gap: 8px; padding-top: 4px; }
.cs-award-org {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; letter-spacing: .3px; color: #0d0d0d;
}
.cs-award-fields { display: flex; flex-direction: column; gap: 4px; }
.cs-award-field  { display: flex; gap: 10px; align-items: baseline; }
.cs-award-field-label {
  font-size: 9px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: #bbb; width: 64px; flex-shrink: 0;
}
.cs-award-field-value { font-size: 13px; font-weight: 300; color: #555; }

/* Brand identity grid (simpo) */
.cs-brand-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4px; margin-top: 48px;
}
.cs-brand-item {
  background: #e4dfd8; border: 1px solid #dedad3;
  display: flex; align-items: flex-end; position: relative; overflow: hidden;
}
.cs-brand-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cs-brand-label {
  position: relative; font-size: 9px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: #aaa; padding: 10px 12px; z-index: 1;
}
.cs-brand-logo   { aspect-ratio: 4/3; grid-column: 1 / 3; }
.cs-brand-colors { aspect-ratio: 1; }
.cs-brand-icons  { aspect-ratio: 16/9; grid-column: 1 / 4; }

/* App screens (simpo) */
.cs-screens {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 4px; margin-top: 48px; align-items: end;
}
.cs-screen {
  background: #e4dfd8; border: 1px solid #dedad3;
  border-radius: 12px; overflow: hidden; position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  aspect-ratio: 9/19.5;
}
.cs-screen.cs-screen-tall { aspect-ratio: 9/20.5; transform: translateY(-16px); }
.cs-screen img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.cs-screen-label {
  position: absolute; bottom: 8px; left: 10px;
  font-size: 8px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: #aaa;
}

/* Visual language (simpo) */
.cs-vl-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4px; margin-top: 48px;
}
.cs-vl-item {
  background: #e4dfd8; border: 1px solid #dedad3;
  aspect-ratio: 4/3; display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
}
.cs-vl-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cs-vl-item:first-child { aspect-ratio: 16/9; grid-column: 1 / 4; }
.cs-vl-label {
  position: relative; font-size: 9px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: #aaa; padding: 10px 12px; z-index: 1;
}

/* Launch grid (simpo) */
.cs-launch-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 4px; margin-top: 48px;
}
.cs-launch-item {
  background: #e4dfd8; border: 1px solid #dedad3;
  aspect-ratio: 16/9; display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
}
.cs-launch-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cs-launch-label {
  position: relative; font-size: 9px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: #aaa; padding: 10px 12px; z-index: 1;
}

/* Pullquote (simpo) */
.cs-pullquote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 3vw, 40px);
  line-height: 1.1; letter-spacing: .3px; color: #0d0d0d;
  max-width: 32ch;
  border-left: 3px solid #c9a227; padding-left: 28px; margin: 40px 0;
}
.cs-pullquote em { font-style: normal; color: #c9a227; }

/* Before/after (trail) */
.cs-before-after {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px; margin-top: 56px;
}
.cs-before-after .cs-img { aspect-ratio: 4/5; flex-direction: column; justify-content: flex-end; }
.cs-ba-tag {
  position: absolute; top: 14px; left: 14px;
  font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  background: #0d0d0d; color: #f2ede6; padding: 4px 10px;
}

/* Concept cards (trail) */
.cs-concepts {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px; margin-top: 56px;
}
.cs-concept { display: flex; flex-direction: column; }
.cs-concept-img {
  background: #e4dfd8; border: 1px solid #dedad3;
  aspect-ratio: 4/3; position: relative; overflow: hidden;
}
.cs-concept-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cs-concept-img-label {
  position: absolute; bottom: 10px; left: 12px;
  font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #aaa;
}
.cs-concept-info { padding: 20px 0 28px; border-bottom: 1px solid #dedad3; }
.cs-concept-num {
  font-size: 9px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: #aaa; margin-bottom: 6px;
}
.cs-concept-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: .3px; color: #0d0d0d; margin-bottom: 10px;
}
.cs-concept-body { font-size: 13px; font-weight: 300; color: #777; line-height: 1.7; }

/* Process strip */
.cs-process-strip, .cs-process {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4px; margin-top: 56px;
}
.cs-process-item, .cs-process-step { display: flex; flex-direction: column; }
.cs-process-img {
  background: #e4dfd8; border: 1px solid #dedad3;
  aspect-ratio: 3/4; position: relative; overflow: hidden;
}
.cs-process-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cs-process-info { padding: 18px 0 0; }
.cs-process-step-label {
  font-size: 9px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: #c9a227; margin-bottom: 6px;
}
.cs-process-step-title { font-size: 13px; font-weight: 500; color: #0d0d0d; margin-bottom: 6px; }
.cs-process-step-body { font-size: 12px; font-weight: 300; color: #777; line-height: 1.65; }
.cs-strip-caption {
  margin-top: 20px; font-size: 12px; font-weight: 300;
  color: #aaa; font-style: italic; max-width: 64ch;
}

/* Dieline (trail) */
.cs-dieline-wrap { margin-top: 72px; }
.cs-dieline-img {
  background: #e4dfd8; border: 1px solid #dedad3;
  aspect-ratio: 16/7; position: relative; overflow: hidden;
}
.cs-dieline-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 24px; }
.cs-dieline-callouts {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #dedad3;
}
.cs-dieline-call { padding: 24px 28px 24px 0; border-right: 1px solid #dedad3; }
.cs-dieline-call:last-child { border-right: none; padding-right: 0; padding-left: 28px; }
.cs-dieline-call:nth-child(2) { padding-left: 28px; }
.cs-dieline-call-title {
  font-size: 9px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: #0d0d0d; margin-bottom: 6px;
}
.cs-dieline-call-body { font-size: 12px; font-weight: 300; color: #777; line-height: 1.65; }

/* Finals mosaic (trail) */
.cs-finals {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 4px; margin-top: 56px;
}
.cs-final {
  background: #e4dfd8; border: 1px solid #dedad3;
  position: relative; overflow: hidden;
}
.cs-final img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cs-final-label {
  position: absolute; bottom: 10px; left: 12px;
  font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #aaa;
}
.cs-final-hero    { grid-column: 1 / 8;  aspect-ratio: 4/3; }
.cs-final-crop    { grid-column: 8 / 13; aspect-ratio: 3/4; }
.cs-final-holding { grid-column: 1 / 5;  aspect-ratio: 1; }
.cs-final-shelf   { grid-column: 5 / 9;  aspect-ratio: 1; }
.cs-final-detail  { grid-column: 9 / 13; aspect-ratio: 1; }

/* Mascot split (kissy) */
.cs-mascot-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px; margin-top: 56px;
}
.cs-mascot-split .cs-img { aspect-ratio: 4/3; }

/* Identity grid (kissy) */
.cs-identity-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px; margin-top: 56px;
}
.cs-identity-item {
  background: #e4dfd8; border: 1px solid #dedad3;
  position: relative; overflow: hidden; display: flex; align-items: flex-end;
}
.cs-identity-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cs-identity-label {
  position: relative; font-size: 9px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: #aaa; padding: 10px 12px; z-index: 1;
}
.cs-identity-palette { aspect-ratio: 4/3; }
.cs-identity-type    { aspect-ratio: 4/3; }
.cs-identity-lockups { grid-column: 1 / 3; aspect-ratio: 21/9; }

/* Gallery (kissy) */
.cs-gallery-note {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: #aaa; margin-bottom: 28px;
}
.cs-gallery {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 4px;
}
.cs-gal {
  background: #e4dfd8; border: 1px solid #dedad3;
  position: relative; overflow: hidden; display: flex; align-items: flex-end;
}
.cs-gal img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cs-gal-label {
  position: relative; font-size: 9px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: #aaa; padding: 10px 12px; z-index: 1;
}
.cs-gal-packaging { grid-column: 1 / 6;  aspect-ratio: 4/3; }
.cs-gal-stickers  { grid-column: 6 / 9;  aspect-ratio: 3/4; }
.cs-gal-apron     { grid-column: 9 / 13; aspect-ratio: 3/4; }
.cs-gal-social    { grid-column: 1 / 5;  aspect-ratio: 1; }
.cs-gal-menu      { grid-column: 5 / 9;  aspect-ratio: 1; }
.cs-gal-merch     { grid-column: 9 / 13; aspect-ratio: 1; }

/* Menu split (kissy) */
.cs-menu-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px; margin-top: 56px;
}
.cs-menu-split .cs-img { aspect-ratio: 3/4; }

/* Outcome (kissy) */
.cs-outcome-img {
  background: #e4dfd8; border: 1px solid #dedad3;
  aspect-ratio: 16/7; position: relative; overflow: hidden; margin-bottom: 56px;
}
.cs-outcome-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Reflection (kissy) */
.cs-reflection { max-width: 640px; margin: 0 auto; text-align: center; }
.cs-reflection .cs-heading { font-size: clamp(36px, 5vw, 64px); }
.cs-reflection .cs-body { margin: 0 auto; text-align: left; }
.cs-reflection-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(20px, 2.8vw, 34px);
  color: #0d0d0d; line-height: 1.15; letter-spacing: .3px;
  margin: 0 auto 32px; max-width: 32ch;
}

/* Case footer nav */
.cs-nav-footer {
  padding: 56px 48px 80px; border-top: 1px solid #dedad3;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.cs-back {
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: #0d0d0d; border-bottom: 1.5px solid #c9a227; padding-bottom: 3px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: opacity 0.2s, gap 0.2s;
}
.cs-back:hover { opacity: 0.45; gap: 4px; }
.cs-back svg { width: 12px; height: 12px; flex-shrink: 0; }
.cs-next { text-align: right; }
.cs-next-label {
  font-size: 9px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: #aaa; margin-bottom: 6px;
}
.cs-next-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: .3px; color: #0d0d0d;
  display: inline-flex; align-items: center; gap: 12px;
  transition: gap 0.2s, opacity 0.2s;
}
.cs-next-link:hover { gap: 20px; opacity: .55; }

/* ============================================================
   CASE STUDY — CALLOUT CARDS (Simpo "Why" section, Reflection icons)
   ============================================================ */
.cs-callouts {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4px; margin-top: 56px;
}
.cs-callout {
  background: #fff; border: 1px solid #dedad3;
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 16px;
}
.cs-callout-icon {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cs-callout-icon svg { width: 18px; height: 18px; }
.cs-callout-icon.tone-rose { background: #f3dadd; color: #b2495a; }
.cs-callout-icon.tone-gold { background: #f2e3bd; color: #ab832a; }
.cs-callout-icon.tone-sage { background: #dde6da; color: #5c7a55; }
.cs-callout-title {
  font-size: 13px; font-weight: 600; letter-spacing: .3px; color: #0d0d0d;
}
.cs-callout-body {
  font-size: 13px; font-weight: 300; color: #777; line-height: 1.65;
}

/* ── Three-step concept with phone screenshots ── */
.cs-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4px; margin-top: 56px;
}
.cs-step { display: flex; flex-direction: column; }
.cs-step-head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; }
.cs-step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; color: #ccc; letter-spacing: 1px;
}
.cs-step-title { font-size: 13px; font-weight: 600; letter-spacing: .3px; color: #0d0d0d; }
.cs-step-body {
  font-size: 12.5px; font-weight: 300; color: #777;
  line-height: 1.65; margin-bottom: 20px;
}
.cs-step-phone {
  width: 100%; aspect-ratio: 9/16;
  background: #e4dfd8; border: 1px solid #dedad3;
  border-radius: 16px; overflow: hidden; position: relative;
  display: flex; align-items: flex-end;
}
.cs-step-phone img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 16px;
}
.cs-step-phone-label {
  position: relative; z-index: 1;
  font-size: 9px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: #aaa; padding: 10px 12px;
}

/* ── Brand identity / Visual language split ── */
.cs-brand-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; margin-top: 0;
}
.cs-subsection-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: #0d0d0d; margin-bottom: 10px;
}
.cs-subsection-tagline {
  font-size: 13px; font-weight: 500; color: #c9a227; margin-bottom: 16px;
}

/* Color palette swatches */
.cs-palette { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.cs-swatch {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid #dedad3; flex-shrink: 0;
}

/* Icon set + logo tile */
.cs-icon-row {
  display: flex; gap: 18px; margin-top: 28px;
  flex-wrap: wrap; align-items: center;
}
.cs-icon-tile {
  width: 56px; height: 56px;
  background: #e4dfd8; border: 1px solid #dedad3;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.cs-icon-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}

/* Logo tile — uses object-fit: contain so the mark is never cropped,
   plus padding + white background so it has breathing room */
.cs-icon-tile.cs-logo-tile {
  width: 140px; height: 56px;
  border-radius: 8px;
  padding: 8px;
  background: #fff;
}
.cs-icon-tile.cs-logo-tile img {
  position: absolute;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  object-fit: contain;
}

/* Visual language grid (Onboarding / Cards / Educational / Social / App Store) */
.cs-vl-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 4px; margin-top: 48px;
}
.cs-vl-item { display: flex; flex-direction: column; gap: 8px; }
.cs-vl-img {
  background: #e4dfd8; border: 1px solid #dedad3;
  aspect-ratio: 3/4; position: relative; overflow: hidden;
}
.cs-vl-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cs-vl-caption {
  font-size: 10px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: #aaa; text-align: center; line-height: 1.4;
}

/* ── App screens — flat single row ── */
.cs-screens-row {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 14px; margin-top: 56px;
}
.cs-screen-col { display: flex; flex-direction: column; gap: 14px; }
.cs-screen {
  background: #e4dfd8; border: 1px solid #dedad3;
  border-radius: 14px; overflow: hidden; position: relative;
  aspect-ratio: 9/19.5;
}
.cs-screen img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border-radius: 14px;
}
.cs-screen-caption-title { font-size: 12px; font-weight: 600; color: #0d0d0d; text-align: center; }
.cs-screen-caption-body {
  font-size: 11px; font-weight: 300; color: #999;
  line-height: 1.5; text-align: center;
}

/* ── App Launch grid ── */
.cs-launch-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 4px; margin-top: 48px;
}
.cs-launch-item { display: flex; flex-direction: column; gap: 10px; }
.cs-launch-img {
  background: #e4dfd8; border: 1px solid #dedad3;
  aspect-ratio: 4/3; position: relative; overflow: hidden;
}
.cs-launch-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cs-launch-caption {
  font-size: 10px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: #aaa; text-align: center;
}

/* ── Reflection with icon callouts ── */
.cs-reflection-icons {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 40px;
}
.cs-reflection-icon-item { display: flex; flex-direction: column; gap: 10px; }
.cs-reflection-icon-item .cs-callout-icon { margin-bottom: 4px; }
.cs-reflection-icon-title { font-size: 12px; font-weight: 600; color: #0d0d0d; }
.cs-reflection-icon-body { font-size: 12px; font-weight: 300; color: #777; line-height: 1.6; }

/* ── Single large clean image — no label overlay ── */
/* Used for: Concept overview (Discover/Learn/Try) and Brand Guide */
.cs-concept-single {
  background: #e4dfd8;
  border: 1px solid #dedad3;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-top: 56px;
}
.cs-concept-single img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* ── Standalone showcase image — for a single proud/standout piece ── */
/* (e.g. a dieline, a trifold, a packaging mockup that deserves its own moment) */
.cs-showcase {
  margin-top: 56px;
}
.cs-showcase-img {
  background: #e4dfd8;
  border: 1px solid #dedad3;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.cs-showcase-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.cs-showcase-caption {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 300;
  color: #aaa;
  font-style: italic;
  max-width: 60ch;
}

/* ── Combined gallery grid — for sections merging multiple categories ── */
/* (e.g. event photos + swag mockups + social, kept to a few curated images) */
.cs-action-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
  margin-top: 56px;
}
.cs-action-item {
  background: #e4dfd8;
  border: 1px solid #dedad3;
  position: relative;
  overflow: hidden;
}
.cs-action-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.cs-action-wide   { grid-column: 1 / 8;  aspect-ratio: 4/3; }
.cs-action-tall   { grid-column: 8 / 13; aspect-ratio: 3/4; }
.cs-action-third  { grid-column: span 4; aspect-ratio: 1; }

/* ── Try It Out — centered intro + responsive Figma embed ── */
.cs-try-it {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cs-figma-embed {
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border: 1px solid #dedad3;
  background: #e4dfd8;
  overflow: hidden;
}
.cs-figma-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.cs-figma-fallback {
  text-align: center;
  margin-top: 24px;
}
.cs-figma-fallback a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0d0d0d;
  border-bottom: 1.5px solid #c9a227;
  padding-bottom: 3px;
  transition: opacity .2s, gap .2s;
}
.cs-figma-fallback a:hover { opacity: .55; gap: 12px; }
.cs-figma-fallback a svg { width: 11px; height: 11px; flex-shrink: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-avatar { display: none; }
  .cs-two-col { grid-template-columns: 1fr; gap: 40px; }
  .cs-snapshot { grid-template-columns: repeat(2, 1fr); }
  .cs-callouts     { grid-template-columns: 1fr; gap: 4px; }
  .cs-steps        { grid-template-columns: 1fr; gap: 40px; }
  .cs-brand-split  { grid-template-columns: 1fr; gap: 48px; }
  .cs-vl-grid      { grid-template-columns: repeat(3, 1fr); }
  .cs-screens-row  { grid-template-columns: repeat(3, 1fr); }
  .cs-launch-grid  { grid-template-columns: repeat(2, 1fr); }
  .cs-reflection-icons { grid-template-columns: 1fr; gap: 24px; }
  .cs-pillars, .cs-steps, .cs-decisions, .cs-challenge-cards { grid-template-columns: 1fr; gap: 0; }
  .cs-pillar, .cs-step, .cs-decision, .cs-challenge-card {
    border-right: none; border-bottom: 1px solid #dedad3; padding: 0 0 40px;
  }
  .cs-pillar:last-child, .cs-step:last-child,
  .cs-decision:last-child, .cs-challenge-card:last-child { border-bottom: none; }
  .cs-pillar:nth-child(2), .cs-step:nth-child(2),
  .cs-decision:nth-child(2), .cs-challenge-card:nth-child(2) { padding-left: 0; }
  .cs-brand-logo, .cs-brand-icons { grid-column: 1; }
  .cs-brand-grid { grid-template-columns: 1fr; }
  .cs-screens { grid-template-columns: repeat(3, 1fr); }
  .cs-screen.cs-screen-tall { transform: none; }
  .cs-vl-grid { grid-template-columns: 1fr 1fr; }
  .cs-vl-item:first-child { grid-column: 1 / 3; }
  .cs-mascot-split, .cs-before-after { grid-template-columns: 1fr 1fr; }
  .cs-process-strip, .cs-process { grid-template-columns: 1fr; gap: 40px; }
  .cs-identity-lockups { grid-column: 1; }
  .cs-identity-grid { grid-template-columns: 1fr; }
  .cs-dieline-callouts { grid-template-columns: 1fr; }
  .cs-dieline-call { border-right: none; border-bottom: 1px solid #dedad3; padding: 20px 0; }
  .cs-dieline-call:last-child { border-bottom: none; }
  .cs-dieline-call:nth-child(2) { padding-left: 0; }
  .cs-finals { grid-template-columns: repeat(2,1fr); }
  .cs-final-hero    { grid-column: 1 / 3; aspect-ratio: 16/9; }
  .cs-final-crop    { grid-column: 1 / 2; aspect-ratio: 4/3; }
  .cs-final-holding { grid-column: 2 / 3; aspect-ratio: 4/3; }
  .cs-final-shelf   { grid-column: 1 / 2; aspect-ratio: 1; }
  .cs-final-detail  { grid-column: 2 / 3; aspect-ratio: 1; }
  .cs-gallery { grid-template-columns: repeat(2, 1fr); }
  .cs-gal-packaging { grid-column: 1 / 3; aspect-ratio: 16/9; }
  .cs-gal-stickers  { grid-column: 1 / 2; aspect-ratio: 4/3; }
  .cs-gal-apron     { grid-column: 2 / 3; aspect-ratio: 4/3; }
  .cs-gal-social    { grid-column: 1 / 2; aspect-ratio: 1; }
  .cs-gal-menu      { grid-column: 2 / 3; aspect-ratio: 1; }
  .cs-gal-merch     { grid-column: 1 / 3; aspect-ratio: 16/9; }
  .cs-menu-split    { grid-template-columns: 1fr; }
  .cs-mockup-grid   { grid-template-columns: 1fr 1fr; }
  .cs-mock-bus      { grid-column: 1 / 3; aspect-ratio: 16/9; }
  .cs-mock-banner   { grid-column: 1 / 2; aspect-ratio: 4/3; }
  .cs-mock-backdrop { grid-column: 2 / 3; aspect-ratio: 4/3; }
  .cs-mock-trifold  { grid-column: 1 / 2; aspect-ratio: 4/3; }
  .cs-mock-giveaway { grid-column: 2 / 3; aspect-ratio: 1; }
  .cs-mock-social   { grid-column: 1 / 3; aspect-ratio: 16/9; }
  .cs-concepts { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 18px 24px; }
  .nav-logo-text { display: none; }
  section { padding: 80px 24px; }
  footer  { padding: 40px 24px; flex-direction: column; gap: 16px; align-items: flex-start; }
  .hero        { padding: 0 24px 60px; }
  .hero-scroll { display: none; }
  .hero-headline { font-size: clamp(56px, 14vw, 90px); }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-item:first-child { grid-column: 1; }
  .featured-item:first-child .featured-item-img { aspect-ratio: 16/9; }
  .clients-section { padding: 60px 24px; }
  .work-hero  { flex-direction: column; padding: 120px 24px 60px; align-items: flex-start; }
  .work-hero p { text-align: left; }
  .work-list  { padding: 0 24px 80px; }
  .work-item  { grid-template-columns: 36px 1fr; gap: 16px; }
  .work-item-tags, .work-item-year { display: none; }
  .work-item-preview { display: none; }
  .contact-page   { padding: 120px 24px 80px; }
  .contact-grid   { grid-template-columns: 1fr; gap: 48px; }
  .contact-heading { font-size: clamp(52px, 14vw, 90px); }
  .nav-links { gap: 20px; }
  .cs-hero-content { padding: 0 24px clamp(40px,5vw,60px); }
  .cs-section { padding: 72px 24px; }
  .cs-snap-item { padding: 28px 16px 28px 0; }
  .cs-snap-item:not(:first-child):not(:last-child) { padding-left: 16px; }
  .cs-snap-item:last-child { padding-left: 16px; }
  .cs-nav-footer { padding: 40px 24px 64px; }
  .cs-screens { grid-template-columns: repeat(2, 1fr); }
  .cs-launch-grid { grid-template-columns: 1fr; }
  .cs-mascot-split { grid-template-columns: 1fr; }
  .cs-before-after { grid-template-columns: 1fr; }
  .cs-figma-embed { aspect-ratio: 4/5; }
  .cs-action-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-action-wide  { grid-column: 1 / 3; aspect-ratio: 16/9; }
  .cs-action-tall  { grid-column: 1 / 3; aspect-ratio: 16/9; }
  .cs-action-third { grid-column: span 1; aspect-ratio: 1; }
  .cs-showcase-img { aspect-ratio: 4/3; }
  .cs-vl-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-screens-row { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  .cs-hero-img { transition: none; }
  .cs-hero-eyebrow, .cs-hero-title, .cs-hero-sub { transition: none; }
  .reveal { transition: none; }
}
