/* Shared inner-page system */
:root {
  --bg: #f7f7f2;
  --surface: #ffffff;
  --border: #deded6;
  --text: #111111;
  --muted: #676762;
  --orange: #ff4d00;
  --hdr: 92px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-y: scroll; scrollbar-gutter: stable; }
body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a, button { cursor: pointer; }
@media (pointer: fine) { a, button { cursor: none; } }
a { color: inherit; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--hdr);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(247,247,242,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 20;
}
.brand {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.05em;
}
.brand img {
  display: block;
  width: 46px;
  height: auto;
  max-height: 64px;
}
.header-right {
  display: flex;
  align-items: center;
}
.nav-inline {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 40px;
  clip-path: inset(0 100% 0 0);
  pointer-events: none;
  transition: clip-path 0.55s cubic-bezier(.77,0,.18,1);
  white-space: nowrap;
}
body.nav-open .nav-inline {
  clip-path: inset(0 0 0 0);
  pointer-events: auto;
}
.nav-inline a {
  color: var(--text);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-inline a:hover { color: var(--orange); }
.menu-btn {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  position: relative;
  transition: transform 0.22s ease, background 0.22s ease;
}
.menu-btn:hover { transform: scale(1.04); }
.menu-btn::before,
.menu-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 0.28s ease, width 0.28s ease, height 0.28s ease;
}
.menu-btn::before { width: 16px; height: 2px; }
.menu-btn::after { width: 2px; height: 16px; }
body.nav-open .menu-btn::before { transform: translate(-50%, -50%) rotate(45deg); }
body.nav-open .menu-btn::after { transform: translate(-50%, -50%) rotate(45deg); }

.site-cursor {
  position: fixed;
  left: 0; top: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  mix-blend-mode: difference;
  pointer-events: none;
  opacity: 0;
  z-index: 10000;
  transform: translate(-50%,-50%) scale(0.82);
  transition: opacity 0.14s ease, transform 0.14s ease;
}
.site-cursor.active {
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
}

.page {
  padding: calc(var(--hdr) + 72px) 32px 80px;
}
.page-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
  gap: 40px;
  align-items: end;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.eyebrow {
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1 {
  max-width: 980px;
  font-size: clamp(52px, 9vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.055em;
}
.lead {
  color: #3a3a36;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.35;
}
.meta {
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.meta b {
  display: block;
  margin-bottom: 3px;
  color: var(--text);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.showcase {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  padding: 56px 0;
}
.frame {
  min-height: 420px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255,77,0,0.2), transparent 34%),
    radial-gradient(circle at 72% 18%, rgba(255,255,255,0.28), transparent 28%),
    var(--project-bg, #181818);
  position: relative;
  overflow: hidden;
}
.frame::before,
.frame::after {
  content: '';
  position: absolute;
  inset: 26px;
  border: 2px solid rgba(255,255,255,0.12);
}
.frame::after {
  inset: auto 34px 34px auto;
  width: 34%;
  aspect-ratio: 1;
  border-color: rgba(255,77,0,0.42);
  transform: rotate(-8deg);
}
.notes {
  align-self: stretch;
  display: grid;
  gap: 18px;
  align-content: start;
}
.note {
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.note h2 {
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.note p {
  color: #464640;
  font-size: 15px;
  line-height: 1.65;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  padding-top: 56px;
}
.copy {
  color: #22221e;
  font-size: clamp(20px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}
.list {
  display: grid;
  gap: 18px;
}
.list a,
.list p {
  color: var(--text);
  font-size: clamp(24px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.05em;
  text-decoration: none;
}
.list a:hover { color: var(--orange); }

.pager {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.pager a {
  color: var(--text);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pager a:hover { color: var(--orange); }

/* Project case-study template */
@keyframes revUp { from { opacity: 0; transform: translateY(38px); } to { opacity: 1; transform: none; } }
@keyframes growIn { from { transform: scale(0.94); } to { transform: scale(1); } }
@keyframes parUp { from { transform: translateY(40px); } to { transform: translateY(-40px); } }
@keyframes hSlide { from { transform: translateX(0); } to { transform: translateX(var(--hx, -460px)); } }

body.project-page {
  --accent: #f3c9b6;
  --accent-soft: #fbeee7;
  background: #fff;
  color: #141414;
}
body.project-page .site-header {
  background: rgba(255,255,255,0.72);
  border-bottom-color: rgba(20,20,20,0.08);
}
body.project-page .brand {
  width: 156px;
  justify-content: flex-start;
}
body.project-page .brand img {
  width: 156px;
  max-height: 50px;
}
.project-case {
  overflow-x: clip;
  background: #fff;
  color: #141414;
  animation: projectEnter 0.62s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes projectEnter {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.media-slot {
  min-height: 220px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(20,20,20,0.22);
  background:
    linear-gradient(135deg, rgba(20,20,20,0.035), transparent 34%),
    radial-gradient(circle at 74% 20%, rgba(255,77,0,0.08), transparent 30%),
    #f4f4f1;
  color: rgba(20,20,20,0.36);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}
.case-hero { width: 100%; overflow: hidden; }
.case-hero-img {
  display: block;
  width: 100%;
  height: 90vh;
  object-fit: cover;
  object-position: center center;
}
.media-slot-hero {
  height: 90vh;
  border: 0;
  border-radius: 0;
}
.case-overview {
  max-width: 1380px;
  margin: 0 auto;
  padding: 96px 48px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.case-facts {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.fact-label {
  margin-bottom: 8px;
  color: #141414;
  font-size: 18px;
  font-weight: 600;
}
.fact-list,
.fact-muted {
  color: #9a9aa0;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.5;
}
.case-intro h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(44px, 6vw, 96px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.055em;
}
.case-intro > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 30px;
  color: #4b4b50;
  font-size: 20px;
  line-height: 1.6;
}
.case-showcase {
  max-width: 1560px;
  margin: 0 auto;
  padding: 24px 48px 96px;
}
.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}
.media-slot-device {
  height: 88vh;
  border-radius: 22px;
}
.media-badge {
  position: absolute;
  top: 24px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  mix-blend-mode: difference;
}
.media-badge span {
  font-size: 18px;
  font-weight: 600;
}
.motion-toggle {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 0;
  mix-blend-mode: normal;
}
.motion-toggle span {
  width: 3px;
  height: 11px;
  border-radius: 2px;
  background: #141414;
}
body.project-paused .motion-toggle span:first-child {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #141414;
  border-radius: 0;
  background: transparent;
}
body.project-paused .motion-toggle span:last-child { display: none; }
.case-approach {
  max-width: 1380px;
  margin: 0 auto;
  padding: 96px 48px;
}
.case-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 72px;
}
.media-slot-card {
  height: 380px;
  border-radius: 12px;
}
.case-copy {
  max-width: 650px;
  color: #4b4b50;
  font-size: 20px;
  line-height: 1.65;
}
.case-blocks {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.soft-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  padding: 40px;
  background: var(--accent-soft);
}
.media-slot-tall {
  width: 100%;
  height: 540px;
  border-radius: 10px;
}
.mini-stack {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.media-slot-product {
  width: 200px;
  height: 240px;
  border-radius: 8px;
}
.case-gallery {
  position: relative;
  height: 240vh;
}
.gallery-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.gallery-heading {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 48px;
  color: #8a8a90;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 800;
  letter-spacing: 0.02em;
}
.gallery-mask {
  width: 100%;
  margin-top: 36px;
  overflow: hidden;
}
.gallery-track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding: 0 48px;
}
.gallery-track figure {
  flex: 0 0 auto;
  width: fit-content;
  margin: 0;
}
.gallery-track figcaption {
  max-width: 92%;
  margin-top: 14px;
  color: #6e6e73;
  font-size: 15px;
  line-height: 1.4;
}
.gallery-a { width: 320px; height: 440px; border-radius: 8px; object-fit: cover; display: block; }
.gallery-b { width: 300px; height: 340px; border-radius: 8px; object-fit: cover; display: block; }
.gallery-c { width: 440px; height: 500px; border-radius: 8px; object-fit: cover; display: block; }
.gallery-d { width: 360px; height: 420px; border-radius: 8px; object-fit: cover; display: block; }
.gallery-e { width: 300px; height: 460px; border-radius: 8px; object-fit: cover; display: block; }
.case-wide {
  max-width: 1560px;
  margin: 0 auto;
  padding: 24px 48px 96px;
}
.media-slot-wide {
  height: 64vh;
  border-radius: 16px;
}
.case-type {
  max-width: 1380px;
  margin: 0 auto;
  padding: 80px 48px;
}
.type-card {
  border: 1px solid #ececec;
  border-radius: 24px;
  background: #f7f7f6;
  padding: 80px 40px;
  text-align: center;
}
.type-sample {
  color: #8a8a90;
  font-size: clamp(34px, 6.4vw, 104px);
  font-weight: 800;
  line-height: 1.04;
}
.type-pills {
  margin-top: 52px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.type-pills span {
  padding: 9px 18px;
  border-radius: 50px;
  color: #a2a2a8;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.type-pills span:first-child {
  background: var(--accent-soft);
  color: #141414;
}
.case-motion {
  max-width: 1380px;
  margin: 0 auto;
  padding: 40px 48px 96px;
}
.icon-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}
.media-slot-icon {
  width: 180px;
  height: 180px;
  border-radius: 18px;
}
.case-motion .case-copy {
  margin: 72px auto 0;
  font-size: 18px;
}
.case-footer {
  padding: 96px 48px 40px;
  border-top: 1px solid #eee;
  background: #fff;
}
.case-footer > * {
  max-width: 1380px;
  margin-left: auto;
  margin-right: auto;
}
.more-title {
  margin-bottom: 56px;
  font-size: 24px;
  font-weight: 600;
}
.more-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.more-card {
  color: #141414;
  text-decoration: none;
  display: block;
}
.more-card:hover .more-name {
  color: #ff4d00;
  transition: color 0.22s ease;
}
.media-slot-thumb {
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
}
.media-slot-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.more-card:hover .media-slot-thumb img {
  transform: scale(1.04);
}
.more-name {
  margin-top: 26px;
  color: #6e6e73;
  font-size: 30px;
  transition: color 0.22s ease;
}
.more-line {
  max-width: 520px;
  margin-top: 10px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0px;
  transition: color 0.22s ease, gap 0.3s cubic-bezier(0.22,1,0.36,1);
}
.more-line::after {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12H20M20 12L14 6M20 12L14 18' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12H20M20 12L14 6M20 12L14 18' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.22s ease, transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.more-card:hover .more-line {
  color: #ff4d00;
  gap: 12px;
}
.more-card:hover .more-line::after {
  opacity: 1;
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .project-case { animation: none; }
  .more-line,
  .more-line::after,
  .more-name { transition: none; }
}
.case-bottom {
  margin-top: 96px;
  padding-top: 28px;
  border-top: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.case-logo {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #9a9aa0;
  text-decoration: none;
  font-size: 13px;
}
.case-logo img {
  height: 44px;
  width: auto;
}
.case-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.case-links a {
  color: #4b4b50;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}
.case-links a:hover { color: #8a8a90; }
.case-links a:first-child {
  color: #141414;
  font-weight: 600;
}
@supports (animation-timeline: view()) {
  .project-page .reveal {
    animation: revUp both;
    animation-timeline: view();
    animation-range: entry 0% entry 62%;
    animation-play-state: var(--play, running);
  }
  .project-page .grow {
    animation: growIn both;
    animation-timeline: view();
    animation-range: entry 0% cover 48%;
    animation-play-state: var(--play, running);
  }
  .project-page .par {
    animation: parUp both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
    animation-play-state: var(--play, running);
    will-change: transform;
  }
  .project-page .hsec {
    view-timeline-name: --gal;
    view-timeline-axis: block;
  }
  .project-page .htrack {
    animation: hSlide both;
    animation-timeline: --gal;
    animation-range: cover 8% cover 92%;
    animation-play-state: var(--play, running);
    will-change: transform;
  }
}
@media (prefers-reduced-motion: reduce) {
  .project-page .reveal,
  .project-page .grow,
  .project-page .par,
  .project-page .htrack {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* About concept page */
body.about-page {
  --about-bg: #050505;
  --about-text: #f4f4f0;
  --about-muted: rgba(244,244,240,0.46);
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,0.06), transparent 34%),
    var(--about-bg);
  background-size: 100% 100%, 100% 100%;
  color: var(--about-text);
  transition: background-color 0.2s linear;
}
body.about-page::before {
  content: '';
  position: fixed;
  inset: 0 8vw;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.16) 12%, #000 30%, #000 70%, rgba(0,0,0,0.16) 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.16) 12%, #000 30%, #000 70%, rgba(0,0,0,0.16) 88%, transparent 100%);
}
body.about-page .site-header {
  background: rgba(5,5,5,0.62);
  border-bottom-color: rgba(255,255,255,0.08);
}
body.about-page .brand img { filter: invert(1); }
body.about-page .nav-inline a { color: var(--about-text); }
body.about-page .nav-inline a:hover { color: var(--orange); }
body.about-page .menu-btn {
  background: #f7f7f2;
  color: #050505;
}
body.about-page .site-cursor { background: #fff; }

.about-shell {
  overflow-x: clip;
  position: relative;
  z-index: 1;
}
.about-hero-stage {
  min-height: 180vh;
  position: relative;
}
.about-hero {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  place-content: center;
  gap: 22px;
  padding: calc(var(--hdr) + 48px) 32px 10vh;
  text-align: center;
}
.about-kicker {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.about-hero h1 {
  max-width: 920px;
  color: rgba(255,255,255,calc(0.44 + var(--about-hero-progress, 0) * 0.56));
  font-size: clamp(42px, 5.8vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  transition: color 0.18s linear;
}
.about-copy {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,calc(0.32 + var(--about-hero-progress, 0) * 0.68));
  font-size: clamp(20px, 2.8vw, 42px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  transition: color 0.18s linear;
}
.about-char {
  color: rgba(255,255,255,var(--char-alpha, 0.38));
  transition: color 0.08s linear;
}
.process-section {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 8vh 0 12vh;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 7vw, 92px);
  position: relative;
}
.process-intro {
  position: sticky;
  top: calc(var(--hdr) + 42px);
  align-self: start;
}
.process-intro h2 {
  margin-top: 16px;
  color: rgba(255,255,255,0.9);
  font-size: clamp(26px, 3.2vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.process-timeline {
  list-style: none;
  display: grid;
  gap: 18px;
  counter-reset: process;
}
.process-timeline li {
  counter-increment: process;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 22px;
  padding: 22px 0 22px 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.process-timeline li::before {
  content: counter(process, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 24px;
  color: rgba(255,77,0,0.56);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.process-timeline li::after {
  content: '';
  position: absolute;
  left: 12px;
  top: 47px;
  bottom: -18px;
  width: 1px;
  background: linear-gradient(rgba(255,77,0,0.62), rgba(255,255,255,0.04));
}
.process-timeline li:last-child::after { display: none; }
.process-timeline time {
  color: var(--orange);
  font-size: clamp(20px, 2.1vw, 32px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}
.process-timeline h3 {
  margin-bottom: 8px;
  color: rgba(255,255,255,0.92);
  font-size: clamp(18px, 1.7vw, 27px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.process-timeline p {
  max-width: 720px;
  color: rgba(255,255,255,0.58);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.58;
}
.about-works {
  min-height: 92vh;
  padding: 1vh 0 0;
}
.work-rail {
  position: sticky;
  top: calc(var(--hdr) + 28px);
  overflow: visible;
}
.work-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 0 32px;
  transform: translate3d(var(--about-slide, 0px), 0, 0);
  transition: transform 0.12s linear;
}
.work-tile {
  width: min(58vw, 420px);
  aspect-ratio: 4 / 3;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(183,255,106,0.18), transparent 36%),
    radial-gradient(circle at 72% 20%, rgba(255,255,255,0.18), transparent 30%),
    var(--tile-bg);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}
.work-tile span {
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.9;
}
.work-tile em {
  color: rgba(255,255,255,0.62);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.about-social {
  min-height: 82vh;
  display: grid;
  place-content: center;
  gap: clamp(8px, 0.9vw, 14px);
  padding: 0 32px 10vh;
  text-align: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.about-social a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(44px, 7.5vw, 112px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.06em;
  position: relative;
  z-index: 2;
  transition: color 0.18s ease, transform 0.18s ease;
}
.about-social a:hover {
  color: var(--orange);
  transform: translateX(10px);
}

@media (max-width: 900px) {
  .case-overview {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media (max-width: 760px) {
  .site-header { padding: 0 20px; }
  .nav-inline {
    position: absolute;
    top: var(--hdr);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0;
    background: rgba(247,247,242,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    clip-path: inset(0 0 100% 0);
    z-index: 19;
  }
  body.nav-open .nav-inline {
    clip-path: inset(0 0 0% 0);
  }
  .nav-inline a {
    padding: 14px 20px;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  body.about-page .nav-inline {
    background: rgba(5,5,5,0.97);
    border-bottom-color: rgba(255,255,255,0.08);
  }
  body.about-page .nav-inline a {
    border-bottom-color: rgba(255,255,255,0.08);
  }
  .page { padding: calc(var(--hdr) + 44px) 20px 56px; }
  .page-head, .showcase, .split { grid-template-columns: 1fr; }
  .frame { min-height: 300px; border-radius: 16px; }
  .case-overview,
  .case-duo,
  .case-blocks,
  .more-grid {
    grid-template-columns: 1fr;
  }
  .case-overview,
  .case-approach,
  .case-showcase,
  .case-wide,
  .case-type,
  .case-motion,
  .case-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .case-overview {
    padding-top: 48px;
    padding-bottom: 48px;
    gap: 32px;
  }
  .fact-list,
  .fact-muted { font-size: 17px; }
  .more-name { font-size: 20px; }
  .more-line { font-size: 20px; }
  .more-grid { gap: 40px; }
  .type-card { padding: 40px 20px; }
  .type-sample { font-size: clamp(18px, 5.2vw, 34px); overflow: hidden; }
  .media-slot-hero { height: 72vh; }
  .media-slot-device { height: 62vh; }
  .case-hero-img { height: auto; object-fit: unset; }
  .media-frame { border-radius: 12px; }
  .case-showcase { padding-left: 16px; padding-right: 16px; }
  .case-approach { padding-left: 16px; padding-right: 16px; }
  .media-slot-card { height: 280px; }
  .media-slot-tall { height: 420px; }
  .gallery-heading,
  .gallery-track { padding-left: 20px; padding-right: 20px; }
  .gallery-c { width: 360px; }
  .icon-row { gap: 28px; flex-wrap: wrap; }
  .icon-row .par { width: 100%; }
  /* Prevent images from overflowing on mobile */
  .project-case img,
  .project-case video { max-width: 100%; }
  .case-approach img,
  .case-showcase img,
  .case-wide img { border-radius: 8px; }
  .mini-stack { flex-direction: column; }
  .case-hero { overflow: hidden; }
  .process-section {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    padding: 6vh 0 8vh;
  }
  .process-intro {
    position: static;
  }
  .process-timeline li {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 14px;
    padding-left: 24px;
  }
  .about-social { padding-left: 20px; padding-right: 20px; }

  /* About hero — static, full opacity, no sticky scroll reveal */
  .about-hero-stage { min-height: auto; padding-bottom: 6vh; }
  .about-hero {
    position: static;
    min-height: auto;
    padding: calc(var(--hdr) + 36px) 20px 44px;
  }
  .about-hero h1 { color: rgba(255,255,255,0.88) !important; transition: none; }
  .about-copy { color: rgba(255,255,255,0.68) !important; transition: none; }
  .about-char { color: inherit !important; transition: none; }

  /* About works — native swipe */
  .about-works { min-height: auto; padding: 24px 0 48px; }
  .work-rail {
    position: static;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .work-rail::-webkit-scrollbar { display: none; }
  .work-track {
    transform: none !important;
    transition: none !important;
    padding: 0 20px 4px;
    gap: 16px;
  }
  .work-tile { width: 76vw; border-radius: 14px; scroll-snap-align: start; }

  .more-title { text-align: center; margin-bottom: 40px; }
  .case-footer { padding-top: 72px; padding-bottom: 40px; }
  .case-bottom {
    margin-top: 56px;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .case-links { justify-content: center; }
  .case-logo { justify-content: center; }
}

@media (pointer: coarse) {
  /* Cursor */
  .site-cursor { display: none !important; }

  /* Project pages — next/prev card hover off */
  .more-card:hover .more-name { color: #6e6e73; transition: none; }
  .more-card:hover .more-line { color: inherit; gap: 0; transition: none; }
  .more-card:hover .more-line::after { opacity: 0; transform: translateX(-10px); transition: none; }

  /* About social — no hover shift */
  .about-social a:hover { color: #fff; transform: none; }
}

/* Mobile about scroll animations — class applied by JS on touch devices only */
.about-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.54s cubic-bezier(0.22,1,0.36,1), transform 0.54s cubic-bezier(0.22,1,0.36,1);
}
.about-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}
