@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css");

:root {
  --cream: #f6f5f3;
  --cream-2: #eeece8;
  --ink: #141414;
  --ink-90: #0f0f0f;
  --ink-95: #0a0a0a;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: "Pretendard", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
::selection { background: var(--ink); color: var(--cream); }
img { max-width: 100%; display: block; }
.mobile-break { display: none; }

@keyframes scrollcue { 0%{transform:translateY(0);opacity:.9} 50%{transform:translateY(8px);opacity:.3} 100%{transform:translateY(0);opacity:.9} }
@keyframes ghostfloat { 0%,100%{transform:translate(0,0)} 50%{transform:translate(8px,-6px)} }
@keyframes softpulse { 0%,100%{opacity:.5;transform:scale(1)} 50%{opacity:1;transform:scale(1.06)} }
@keyframes driftstrip { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes driftstripReverse { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)} }
@keyframes dotFadeIn { 0%{opacity:0} 100%{opacity:1} }
@keyframes evidencescroll { 0%{transform:translateY(0)} 100%{transform:translateY(-50%)} }
@keyframes slowDrift { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes circleBounceUp { 0%{margin-top:0} 50%{margin-top:-20px} 100%{margin-top:0} }
@keyframes fadeSlideUp { 0%{opacity:0;transform:translateY(12px)} 100%{opacity:1;transform:translateY(0)} }

[data-reveal-id] {
  opacity: 0.82;
  transform: translateY(10px);
  transition: opacity 0.9s cubic-bezier(.16,1,.3,1), transform 0.9s cubic-bezier(.16,1,.3,1);
}
[data-reveal-id].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px;
  background: rgba(16,16,16,0.94);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(20px,5vw,56px);
}
.nav__brand { display: flex; align-items: center; gap: 10px; justify-self: start; }
.nav__brand img { width: 18px; height: 18px; filter: invert(1); }
.nav__brand span { font-size: 15px; font-weight: 700; letter-spacing: 0.04em; color: var(--cream); }
.nav__links { display: flex; align-items: center; gap: clamp(24px,4vw,48px); justify-self: center; }
.nav__links a { font-size: 13px; font-weight: 500; color: rgba(246,245,243,0.7); }
.nav__cta {
  font-size: 13px; font-weight: 600; color: var(--cream);
  border: 1px solid rgba(246,245,243,0.4);
  padding: 8px 18px; border-radius: 2px; justify-self: end;
}

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100vh; background: var(--ink) url('input/hero.jpg') center/cover no-repeat;
  display: flex; flex-direction: column; justify-content: center;
  box-sizing: border-box;
}
.hero__fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 240px;
  background: linear-gradient(to bottom, rgba(20,20,20,0) 0%, var(--ink) 100%);
}
.hero__note {
  position: absolute; top: 88px; right: 32px; text-align: right; max-width: 260px;
  font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: 0.06em;
  color: rgba(246,245,243,0.22); z-index: 2; display: none;
}
.hero__content { position: relative; z-index: 2; padding: 140px clamp(20px,5vw,56px) 0; color: var(--cream); }
.hero__title-wrap { position: relative; }
.hero__title-ghost {
  position: absolute; inset: 0; margin: 0;
  font-size: clamp(64px,11vw,168px); line-height: 0.94; letter-spacing: -0.02em;
  color: rgba(246,245,243,0.1); animation: ghostfloat 5s ease-in-out infinite; pointer-events: none;
}
.hero__title {
  position: relative; margin: 0;
  font-size: clamp(64px,11vw,168px); line-height: 0.94; letter-spacing: -0.02em;
}
.hero__title .thin, .hero__title-ghost .thin { font-weight: 200; }
.hero__title .bold, .hero__title-ghost .bold { font-weight: 800; }
.hero__tagline {
  margin: 32px 0 0; font-size: clamp(20px,2.4vw,30px); font-weight: 600;
  letter-spacing: -0.01em; color: rgba(255,255,255,0.85); max-width: 900px;
}
@media (min-width: 861px) {
  .hero__tagline-second {
    transform: translateX(240px);
  }
}
@media (max-width: 860px) {
  .hero__tagline-second {
    display: inline;
    margin-left: 0;
  }
}
.hero__sub { margin: 16px 0 0; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.5); }
.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: scrollcue 2.4s ease-in-out infinite;
}
.hero__scroll span { font-size: 10px; letter-spacing: 0.14em; color: rgba(246,245,243,0.5); }
.hero__scroll-line { height: 36px; width: 1px; background: rgba(246,245,243,0.4); }

/* ---------- WHY ---------- */
.why { position: relative; background: var(--ink); }
.why__stage--1 {
  position: sticky; top: 0; height: 50vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.why__strip { position: absolute; left: 0; right: 0; overflow: hidden; }
.why__strip--1 { top: 30%; transform: translateY(-50%); height: 150px; filter: brightness(0.5); }
.why__strip--2 { top: 68%; transform: translateY(-50%); height: 130px; filter: brightness(0.4); }
.why__strip-track { display: flex; align-items: center; height: 100%; width: max-content; }
.why__strip--1 .why__strip-track { animation: driftstrip 32s linear infinite; }
.why__strip--2 .why__strip-track { animation: driftstripReverse 40s linear infinite; }
.why__strip-track span {
  flex: none; background: #2a2a2a; position: relative;
}
.why__scrim { position: absolute; inset: 0; background: rgba(20,20,20,0.55); }
.why__headline {
  position: relative; z-index: 2; margin: 0; max-width: 880px;
  padding: 0 clamp(20px,5vw,56px); font-weight: 700; letter-spacing: -0.01em;
  line-height: 1.4; color: var(--cream); text-shadow: 0 2px 24px rgba(0,0,0,0.4);
  text-align: center;
}
.why__headline--1 { font-size: clamp(26px,4vw,50px); }
.why__headline--2 { font-size: clamp(24px,4vw,51px); font-weight: 800; text-shadow: 0 2px 24px rgba(0,0,0,0.5); }

.why__stage--2 {
  position: sticky; top: 0; height: 50vh; background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
}
.why__hardly {
  font-size: clamp(16px,2vw,22px); font-weight: 600; letter-spacing: 0.02em;
  color: rgba(246,245,243,0.85); margin-top: 15vh;
}
.why__dots { display: flex; flex-direction: column; align-items: center; gap: 42px; padding: 40px 0; }
.why__dots span {
  width: 3px; height: 3px; border-radius: 50%; background: rgba(246,245,243,0.4);
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.why__dots span.is-visible { opacity: 1; transform: translateY(0); }

.why__stage--3 {
  position: sticky; top: 0; height: 100vh; background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  padding: 0 clamp(20px,5vw,56px); box-sizing: border-box;
}

/* ---------- WORLDS (comparison) ---------- */
.worlds { position: relative; background: var(--cream); height: 380vh; box-sizing: border-box; }
.worlds__sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.worlds__headline {
  position: absolute; top: 12%; left: 0; right: 0; margin: 0 auto; max-width: 640px;
  padding: 0 clamp(20px,5vw,56px); font-size: clamp(20px,2.8vw,30px); font-weight: 700;
  line-height: 1.55; text-align: center; color: var(--ink);
}
.worlds__stage { position: relative; width: 100%; max-width: 1400px; height: min(720px,82vh); }
.worlds__circle {
  position: absolute; left: 50%; top: 50%; width: 190px; height: 190px;
  border-radius: 50%; mix-blend-mode: multiply;
}
.worlds__circle--left {
  background: radial-gradient(circle at 60% 50%, rgba(20,20,20,0.08), rgba(20,20,20,0.02) 70%, transparent 100%);
  transform: translate(calc(-50% - 260px), -50%);
}
.worlds__circle--right {
  background: radial-gradient(circle at 40% 50%, rgba(20,20,20,0.08), rgba(20,20,20,0.02) 70%, transparent 100%);
  transform: translate(calc(-50% + 260px), -50%);
}
.worlds__title {
  position: absolute; left: 50%; top: 50%; text-align: center; font-size: 20px;
  font-weight: 800; letter-spacing: -0.01em; line-height: 1.2; color: var(--ink);
  white-space: nowrap; z-index: 3;
}
.worlds__title--left { transform: translate(calc(-50% - 260px), -50%); }
.worlds__title--right { transform: translate(calc(-50% + 260px), -50%); }

.worlds__panel {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46%; max-width: 380px; height: 82%; overflow: hidden;
}
.worlds__panel--left { left: 4%; }
.worlds__panel--right { right: 4%; }
.worlds__panel-inner {
  height: 100%; overflow: hidden; position: relative; opacity: 0;
  padding-top: 64px; box-sizing: border-box; transition: opacity 0.4s ease;
}
.worlds__col { flex: 1; overflow: hidden; }
.worlds__panel-inner { display: flex; }
.worlds__panel-inner > .worlds__col:not(:last-child) { margin-right: 28px; }
.worlds__panel-inner { display: flex; gap: 28px; }
.worlds__track { display: flex; flex-direction: column; gap: 18px; animation-name: evidencescroll; animation-timing-function: linear; animation-iteration-count: infinite; }
.worlds__card {
  flex: none; width: 100%; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
}
.worlds__card--img { border: 1px dashed rgba(20,20,20,0.3); font-size: 12px; color: rgba(20,20,20,0.4); }
.worlds__card--txt { aspect-ratio: auto; text-align: left; color: rgba(20,20,20,0.7); overflow: visible; flex-direction: column; align-items: flex-start; justify-content: flex-start; }
.worlds__card-title { display: block; font-size: 16px; font-weight: 600; white-space: nowrap; }
.worlds__card-caption { display: block; margin-top: 4px; font-size: 11px; font-weight: 400; color: rgba(20,20,20,0.45); word-break: keep-all; white-space: normal; }
.worlds__card--caption-standalone { font-size: 11px; font-weight: 400; color: rgba(20,20,20,0.45); }

/* SPACE DESIGN panel — placeholder images replaced with real photos (background-image, position preserved by nth-child) */
#panelLeftInner .worlds__card--img {
  border: none; color: transparent; background-position: center; background-repeat: no-repeat; background-size: cover;
}
#panelLeftInner .worlds__col:nth-child(1) .worlds__card--img:nth-child(1) { background-image: url("input/02.ven/01.SPACE DESIGN/SIGONGTECH (1).jpg"); aspect-ratio: 1103/618; }
#panelLeftInner .worlds__col:nth-child(1) .worlds__card--img:nth-child(3) { background-image: url("input/02.ven/01.SPACE DESIGN/SIGONGTECH (3).jpg"); aspect-ratio: 1126/624; }
#panelLeftInner .worlds__col:nth-child(1) .worlds__card--img:nth-child(4) { background-image: url("input/02.ven/01.SPACE DESIGN/SIGONGTECH (4).jpg"); aspect-ratio: 1128/615; }
#panelLeftInner .worlds__col:nth-child(1) .worlds__card--img:nth-child(5) { background-image: url("input/02.ven/01.SPACE DESIGN/SIGONGTECH (5).jpg"); aspect-ratio: 1084/642; }
#panelLeftInner .worlds__col:nth-child(1) .worlds__card--img:nth-child(6) { background-image: url("input/02.ven/01.SPACE DESIGN/EXPERIENCE DESIGN (1).jpg"); aspect-ratio: 1178/656; }
#panelLeftInner .worlds__col:nth-child(1) .worlds__card--img:nth-child(9) { background-image: url("input/02.ven/01.SPACE DESIGN/EXPERIENCE DESIGN (2).jpg"); aspect-ratio: 1117/629; }
#panelLeftInner .worlds__col:nth-child(1) .worlds__card--img:nth-child(10) { background-image: url("input/02.ven/01.SPACE DESIGN/EXPERIENCE DESIGN (3).jpg"); aspect-ratio: 1166/655; }
#panelLeftInner .worlds__col:nth-child(1) .worlds__card--img:nth-child(11) { background-image: url("input/02.ven/01.SPACE DESIGN/SIGONGTECH (1).jpg"); aspect-ratio: 1103/618; }
#panelLeftInner .worlds__col:nth-child(1) .worlds__card--img:nth-child(13) { background-image: url("input/02.ven/01.SPACE DESIGN/SIGONGTECH (3).jpg"); aspect-ratio: 1126/624; }
#panelLeftInner .worlds__col:nth-child(1) .worlds__card--img:nth-child(14) { background-image: url("input/02.ven/01.SPACE DESIGN/SIGONGTECH (4).jpg"); aspect-ratio: 1128/615; }
#panelLeftInner .worlds__col:nth-child(1) .worlds__card--img:nth-child(15) { background-image: url("input/02.ven/01.SPACE DESIGN/SIGONGTECH (5).jpg"); aspect-ratio: 1084/642; }
#panelLeftInner .worlds__col:nth-child(1) .worlds__card--img:nth-child(16) { background-image: url("input/02.ven/01.SPACE DESIGN/EXPERIENCE DESIGN (1).jpg"); aspect-ratio: 1178/656; }
#panelLeftInner .worlds__col:nth-child(1) .worlds__card--img:nth-child(19) { background-image: url("input/02.ven/01.SPACE DESIGN/EXPERIENCE DESIGN (2).jpg"); aspect-ratio: 1117/629; }
#panelLeftInner .worlds__col:nth-child(1) .worlds__card--img:nth-child(20) { background-image: url("input/02.ven/01.SPACE DESIGN/EXPERIENCE DESIGN (3).jpg"); aspect-ratio: 1166/655; }

#panelLeftInner .worlds__col:nth-child(2) .worlds__card--img:nth-child(3) { background-image: url("input/02.ven/01.SPACE DESIGN/BRANDING (1).jpg"); aspect-ratio: 978/978; }
#panelLeftInner .worlds__col:nth-child(2) .worlds__card--img:nth-child(4) { background-image: url("input/02.ven/01.SPACE DESIGN/BRANDING (2).jpg"); aspect-ratio: 1166/657; }
#panelLeftInner .worlds__col:nth-child(2) .worlds__card--img:nth-child(5) { background-image: url("input/02.ven/01.SPACE DESIGN/CONSTRUCTION (1).jpg"); aspect-ratio: 1011/660; }
#panelLeftInner .worlds__col:nth-child(2) .worlds__card--img:nth-child(8) { background-image: url("input/02.ven/01.SPACE DESIGN/ACON3D.jpg"); aspect-ratio: 828/835; }
#panelLeftInner .worlds__col:nth-child(2) .worlds__card--img:nth-child(9) { background-image: url("input/02.ven/01.SPACE DESIGN/CONSTRUCTION (2).jpg"); aspect-ratio: 813/951; }
#panelLeftInner .worlds__col:nth-child(2) .worlds__card--img:nth-child(10) { background-image: url("input/02.ven/01.SPACE DESIGN/CONSTRUCTION (3).jpg"); aspect-ratio: 1294/1822; }
#panelLeftInner .worlds__col:nth-child(2) .worlds__card--img:nth-child(11) { background-image: url("input/02.ven/01.SPACE DESIGN/BRANDING (3).jpg"); aspect-ratio: 1054/596; }
#panelLeftInner .worlds__col:nth-child(2) .worlds__card--img:nth-child(12) { background-image: url("input/02.ven/01.SPACE DESIGN/BRANDING (4).jpg"); aspect-ratio: 1106/738; }
#panelLeftInner .worlds__col:nth-child(2) .worlds__card--img:nth-child(15) { background-image: url("input/02.ven/01.SPACE DESIGN/BRANDING (1).jpg"); aspect-ratio: 978/978; }
#panelLeftInner .worlds__col:nth-child(2) .worlds__card--img:nth-child(16) { background-image: url("input/02.ven/01.SPACE DESIGN/BRANDING (2).jpg"); aspect-ratio: 1166/657; }
#panelLeftInner .worlds__col:nth-child(2) .worlds__card--img:nth-child(17) { background-image: url("input/02.ven/01.SPACE DESIGN/CONSTRUCTION (1).jpg"); aspect-ratio: 1011/660; }
#panelLeftInner .worlds__col:nth-child(2) .worlds__card--img:nth-child(20) { background-image: url("input/02.ven/01.SPACE DESIGN/ACON3D.jpg"); aspect-ratio: 828/835; }
#panelLeftInner .worlds__col:nth-child(2) .worlds__card--img:nth-child(21) { background-image: url("input/02.ven/01.SPACE DESIGN/CONSTRUCTION (2).jpg"); aspect-ratio: 813/951; }
#panelLeftInner .worlds__col:nth-child(2) .worlds__card--img:nth-child(22) { background-image: url("input/02.ven/01.SPACE DESIGN/CONSTRUCTION (3).jpg"); aspect-ratio: 1294/1822; }
#panelLeftInner .worlds__col:nth-child(2) .worlds__card--img:nth-child(23) { background-image: url("input/02.ven/01.SPACE DESIGN/BRANDING (3).jpg"); aspect-ratio: 1054/596; }
#panelLeftInner .worlds__col:nth-child(2) .worlds__card--img:nth-child(24) { background-image: url("input/02.ven/01.SPACE DESIGN/BRANDING (4).jpg"); aspect-ratio: 1106/738; }

/* SPACE MARKETING panel — placeholder images replaced with real photos (background-image, position preserved by nth-child) */
#panelRightInner .worlds__card--img {
  border: none; color: transparent; background-position: center; background-repeat: no-repeat; background-size: cover;
}
#panelRightInner .worlds__col:nth-child(1) .worlds__card--img:nth-child(1) { background-image: url("input/02.ven/02.SPACE MARKETING/1000 place.jpg"); aspect-ratio: 1145/754; }
#panelRightInner .worlds__col:nth-child(1) .worlds__card--img:nth-child(2) { background-image: url("input/02.ven/02.SPACE MARKETING/insight.jpg"); aspect-ratio: 1898/1067; }
#panelRightInner .worlds__col:nth-child(1) .worlds__card--img:nth-child(5) { background-image: url("input/02.ven/02.SPACE MARKETING/brand growth (1).jpg"); aspect-ratio: 1774/887; }
#panelRightInner .worlds__col:nth-child(1) .worlds__card--img:nth-child(7) { background-image: url("input/02.ven/02.SPACE MARKETING/brand growth (2).jpg"); aspect-ratio: 1774/887; }
#panelRightInner .worlds__col:nth-child(1) .worlds__card--img:nth-child(8) { background-image: url("input/02.ven/02.SPACE MARKETING/view.jpg"); aspect-ratio: 892/674; }
#panelRightInner .worlds__col:nth-child(1) .worlds__card--img:nth-child(9) { background-image: url("input/02.ven/02.SPACE MARKETING/1000 place.jpg"); aspect-ratio: 1145/754; }
#panelRightInner .worlds__col:nth-child(1) .worlds__card--img:nth-child(10) { background-image: url("input/02.ven/02.SPACE MARKETING/insight.jpg"); aspect-ratio: 1898/1067; }
#panelRightInner .worlds__col:nth-child(1) .worlds__card--img:nth-child(13) { background-image: url("input/02.ven/02.SPACE MARKETING/brand growth (1).jpg"); aspect-ratio: 1774/887; }
#panelRightInner .worlds__col:nth-child(1) .worlds__card--img:nth-child(15) { background-image: url("input/02.ven/02.SPACE MARKETING/brand growth (2).jpg"); aspect-ratio: 1774/887; }
#panelRightInner .worlds__col:nth-child(1) .worlds__card--img:nth-child(16) { background-image: url("input/02.ven/02.SPACE MARKETING/view.jpg"); aspect-ratio: 892/674; }
#panelRightInner .worlds__col:nth-child(2) .worlds__card--img:nth-child(3) { background-image: url("input/02.ven/02.SPACE MARKETING/datebase profile.jpg"); aspect-ratio: 902/1951; }
#panelRightInner .worlds__col:nth-child(2) .worlds__card--img:nth-child(6) { background-image: url("input/02.ven/02.SPACE MARKETING/contents01.jpg"); aspect-ratio: 1670/1469; }
#panelRightInner .worlds__col:nth-child(2) .worlds__card--img:nth-child(7) { background-image: url("input/02.ven/02.SPACE MARKETING/contents02.jpg"); aspect-ratio: 1670/1469; }
#panelRightInner .worlds__col:nth-child(2) .worlds__card--img:nth-child(8) { background-image: url("input/02.ven/02.SPACE MARKETING/contents03.jpg"); aspect-ratio: 1615/1429; }
#panelRightInner .worlds__col:nth-child(2) .worlds__card--img:nth-child(9) { background-image: url("input/02.ven/02.SPACE MARKETING/magazine01.jpg"); aspect-ratio: 1219/998; }
#panelRightInner .worlds__col:nth-child(2) .worlds__card--img:nth-child(10) { background-image: url("input/02.ven/02.SPACE MARKETING/magazine02.jpg"); aspect-ratio: 1207/762; }
#panelRightInner .worlds__col:nth-child(2) .worlds__card--img:nth-child(11) { background-image: url("input/02.ven/02.SPACE MARKETING/magazine03.jpg"); aspect-ratio: 1739/1073; }
#panelRightInner .worlds__col:nth-child(2) .worlds__card--img:nth-child(14) { background-image: url("input/02.ven/02.SPACE MARKETING/datebase profile.jpg"); aspect-ratio: 902/1951; }
#panelRightInner .worlds__col:nth-child(2) .worlds__card--img:nth-child(17) { background-image: url("input/02.ven/02.SPACE MARKETING/contents01.jpg"); aspect-ratio: 1670/1469; }
#panelRightInner .worlds__col:nth-child(2) .worlds__card--img:nth-child(18) { background-image: url("input/02.ven/02.SPACE MARKETING/contents02.jpg"); aspect-ratio: 1670/1469; }
#panelRightInner .worlds__col:nth-child(2) .worlds__card--img:nth-child(19) { background-image: url("input/02.ven/02.SPACE MARKETING/contents03.jpg"); aspect-ratio: 1615/1429; }
#panelRightInner .worlds__col:nth-child(2) .worlds__card--img:nth-child(20) { background-image: url("input/02.ven/02.SPACE MARKETING/magazine01.jpg"); aspect-ratio: 1219/998; }
#panelRightInner .worlds__col:nth-child(2) .worlds__card--img:nth-child(21) { background-image: url("input/02.ven/02.SPACE MARKETING/magazine02.jpg"); aspect-ratio: 1207/762; }
#panelRightInner .worlds__col:nth-child(2) .worlds__card--img:nth-child(22) { background-image: url("input/02.ven/02.SPACE MARKETING/magazine03.jpg"); aspect-ratio: 1739/1073; }

.worlds__center { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.worlds__center-line { width: 2px; height: 0; background: var(--ink); opacity: 0; margin-bottom: 2px; }
.worlds__logo { width: 45px; height: auto; opacity: 0; transition: opacity 0.8s ease; }
.worlds__center-label { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; color: var(--ink); opacity: 0; transition: opacity 0.8s ease; text-transform: uppercase; }

/* ---------- METHOD ---------- */
.method { background: var(--ink); color: var(--cream); padding: clamp(80px,12vw,140px) clamp(20px,5vw,56px) clamp(60px,10vw,100px); box-sizing: border-box; position: relative; }
.method__head { max-width: 760px; margin: 0 auto; text-align: center; }
.method__eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; color: rgba(246,245,243,0.5); margin-bottom: 20px; }
.method__title { margin: 0 0 40px; font-size: clamp(26px,3.6vw,42px); font-weight: 700; letter-spacing: -0.01em; line-height: 1.4; }
.method__lede { margin: 0 0 8px; font-size: 17px; font-weight: 400; line-height: 1.7; color: rgba(246,245,243,0.7); }
.method__question { margin: 0 0 48px; font-size: 19px; font-weight: 700; color: var(--cream); }

.method__wrap { position: relative; }
.method__origin { position: absolute; left: 50%; top: 0; width: 1px; height: 1px; }
.method__constellation { position: relative; width: min(440px,86vw); height: min(440px,86vw); margin: 0 auto; }
.method__constellation span {
  position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--cream);
  opacity: 0.55; transform: translate(-50%,-50%);
  transition: opacity 1.8s ease;
}
.method__constellation.is-revealed span { opacity: 0; }
.method__travel-line {
  width: 2px; height: 0; background: rgba(246,245,243,0.3);
  position: absolute; left: 50%; top: 0; transform: translateX(-50%);
}
.method__travel-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--cream);
  position: absolute; left: 50%; top: 0; transform: translate(-50%,-50%);
}

/* ---------- CASE STUDY ---------- */
.case-study { color: var(--cream); padding: clamp(20px,3vw,36px) clamp(20px,5vw,56px) clamp(80px,12vw,140px); box-sizing: border-box; background-color: var(--ink); }
.case-study__inner { max-width: 900px; margin: 0 auto; position: relative; }
.case-study__intro-wrap { text-align: center; margin: 0 0 104px; }
.case-study__intro {
  position: relative; z-index: 2; display: inline-block; background: var(--ink);
  margin: 0; font-size: clamp(24px,3vw,36px); font-weight: 700; line-height: 1.35;
  letter-spacing: -0.01em; padding: 0 24px;
}
.case-study__label {
  margin-top: 71px; font-size: 12px; font-weight: 800; letter-spacing: 0.18em; color: var(--cream);
  opacity: 0; transition: opacity 0.15s ease; text-align: center; position: relative;
}
.case-study__label.is-revealed { opacity: 1; }
.case-study__dialogue { max-width: 720px; margin: 40px auto 80px; text-align: center; }
.case-study__dialogue p { margin: 0; font-size: 20px; font-weight: 600; line-height: 1.75; color: var(--cream); }

/* concept circles */
.case-study__circles {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 80px;
  max-width: 1000px; margin: 0 auto 140px; padding: 60px 20px 0;
}
.circle-group { display: flex; flex-direction: column; align-items: center; }
.circle-group__eyebrow {
  font-size: 9px; font-weight: 700; letter-spacing: 0.15em; color: rgba(246,245,243,0.25);
  margin-bottom: 20px; text-transform: uppercase;
}
.answer-circle {
  width: 240px; height: 240px; border-radius: 50%; border: 1.5px solid rgba(246,245,243,0.25);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 36px; box-sizing: border-box; text-align: center; cursor: pointer;
  opacity: 0; transform: translateY(24px) scale(0.96);
  transition: opacity 0.7s ease-out, transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94), border-color 0.3s ease, border-width 0.3s ease;
}
.answer-circle.is-revealed { opacity: 1; transform: translateY(0) scale(1); }
.answer-circle:hover {
  border-color: rgba(246,245,243,0.45); border-width: 2px; transform: translateY(0) scale(1.03);
  animation: circleBounceUp 0.5s ease-out;
}
.answer-circle__title { font-size: 20px; font-weight: 600; letter-spacing: 0.05em; color: var(--cream); margin: 0 auto 14px; word-break: keep-all; }
.answer-circle__desc { font-size: 12px; font-weight: 400; line-height: 1.5; color: rgba(246,245,243,0.55); }
.answer-circle:hover .answer-circle__desc { color: rgba(246,245,243,0.75); }

/* brand deep dive */
.brand-dive { margin-bottom: 180px; scroll-margin-top: 120px; }
.brand-dive__head { position: relative; margin-bottom: 88px; }
.brand-dive__num {
  position: absolute; left: -20px; top: 0; font-size: clamp(140px,18vw,240px); font-weight: 100;
  color: rgba(246,245,243,0.06); line-height: 0.8; letter-spacing: -0.04em; pointer-events: none;
}
.brand-dive__head h3 { position: relative; margin: 0 0 20px; font-size: 20px; font-weight: 700; letter-spacing: 0.06em; color: rgba(246,245,243,0.6); }
.brand-dive__rule { position: relative; width: 100%; height: 1px; background: rgba(246,245,243,0.12); }

.brand-dive__client { max-width: 700px; margin: 0 auto 80px; display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: start; }
.brand-dive__client-label { width: 150px; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; color: rgba(246,245,243,0.35); }
.brand-dive__client-label i { display: block; width: 100%; height: 1px; background: rgba(246,245,243,0.2); margin-top: 16px; font-style: normal; }
.brand-dive__client p {
  margin: 0; font-size: 18px; font-weight: 500; line-height: 1.6; font-style: italic;
  color: rgba(246,245,243,0.85); border-left: 1px solid rgba(246,245,243,0.16);
  padding: 12px 0 12px 24px;
}

.brand-dive__grid { max-width: 1000px; margin: 0 auto 100px; display: flex; align-items: flex-start; gap: 20px; flex-wrap: wrap; }
.brand-dive__grid > div { flex: 1 1 0; min-width: 140px; }
.brand-dive__grid > div:nth-child(5) { flex-grow: 1.2; }
.brand-dive__grid-arrow { flex: 0 0 auto; align-self: flex-start; margin-top: 5px; font-style: normal; font-size: 14px; color: rgba(246,245,243,0.3); }
.brand-dive__tag { display: block; font-size: 15px; font-weight: 900; letter-spacing: 0.08em; color: rgba(246,245,243,0.7); margin-bottom: 12px; }
.brand-dive__grid h4 { margin: 0; font-size: 18px; font-weight: 700; color: var(--cream); line-height: 1.3; }
.brand-dive__insight { margin: 0; font-size: 13px; font-weight: 500; color: rgba(246,245,243,0.85); line-height: 1.6; }
.brand-dive__concept { margin: 0; font-size: 13px; font-weight: 400; color: rgba(246,245,243,0.7); line-height: 1.6; }
.brand-dive__words { display: flex; flex-direction: column; gap: 8px; }
.brand-dive__words span { font-size: 12px; font-weight: 500; color: rgba(246,245,243,0.65); }

.brand-dive__mood { max-width: 900px; margin: 0 auto 80px; }
.brand-dive__mood-lede { font-size: 15px; font-weight: 400; line-height: 1.6; color: rgba(246,245,243,0.6); text-align: center; margin: 0 0 60px; }
.brand-dive__mood-tag { font-size: 9px; font-weight: 700; letter-spacing: 0.15em; color: rgba(246,245,243,0.35); margin-bottom: 32px; text-align: center; }
.brand-dive__mood-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 700px; margin: 0 auto; }
.mood-card { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.mood-card__img {
  width: 100%; aspect-ratio: 4/5; background-color: #1a1a1a; background-size: cover; background-position: center;
  border-radius: 1px; border: 1px solid rgba(246,245,243,0.08);
}
.mood-card span { font-family: ui-monospace, monospace; font-size: 10px; font-weight: 600; color: rgba(246,245,243,0.5); text-align: center; }

.brand-dive__name { max-width: 1080px; margin: 0 auto 80px; display: grid; grid-template-columns: 26fr 74fr; gap: 64px; align-items: end; }
.brand-dive__name h3 { margin: 0; font-size: 72px; font-weight: 700; color: var(--cream); letter-spacing: -0.01em; line-height: 1.1; }
.brand-dive__name p { margin: 0; font-size: 15px; font-weight: 400; line-height: 1.7; color: rgba(246,245,243,0.65); }

.brand-dive__carousel {
  width: 100vw; position: relative; left: 50%; transform: translateX(-50%);
  background: var(--ink-95); overflow: hidden; display: flex; justify-content: center;
}
.brand-dive__carousel-track { display: flex; width: max-content; animation-name: slowDrift; animation-timing-function: linear; animation-iteration-count: infinite; }
.render-card {
  flex: none; width: 50vw; aspect-ratio: 16/9;
  background-color: #2a2a2a; background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center; border: 1px solid rgba(246,245,243,0.08);
}
.render-card span { font-family: ui-monospace, monospace; font-size: 13px; color: rgba(246,245,243,0.2); text-align: center; }

/* ---------- MARKETING SECTION ---------- */
.marketing-section { max-width: 1080px; margin: 0 auto; padding: clamp(80px, 12vw, 160px) clamp(20px, 5vw, 60px); padding-top: 0; border-top: 1px solid rgba(246,245,243,0.12); }
.marketing-section__breadcrumb { max-width: 700px; margin: 0 auto 80px; display: flex; align-items: center; justify-content: center; gap: 12px; padding-top: 60px; }
.marketing-section__breadcrumb span { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; color: rgba(246,245,243,0.5); }
.marketing-section__breadcrumb i { font-style: normal; font-size: 14px; color: rgba(246,245,243,0.4); }
.marketing-section__breadcrumb .marketing-section__breadcrumb-highlight { font-size: 16px; font-weight: 800; letter-spacing: 0.1em; color: #ffffff; }

/* ---------- CONTENT CREDIBILITY ---------- */
.content-credibility { margin-bottom: 40px; }
.content-credibility__container { display: flex; flex-direction: column; }

.content-credibility__intro { max-width: 700px; margin: 0 0 60px; text-align: center; }
.content-credibility__intro h3 { margin: 0 0 20px; font-size: clamp(24px, 3.2vw, 36px); font-weight: 700; color: var(--cream); line-height: 1.35; word-spacing: 0.16em; }
.content-credibility__intro p { margin: 0; font-size: 15px; font-weight: 400; line-height: 1.75; color: rgba(246,245,243,0.58); }

.content-credibility__content { display: grid; grid-template-columns: 420px 1fr; gap: 80px; align-items: stretch; margin-bottom: 80px; }
.content-credibility__visual { width: 420px; }
.content-credibility__visual img { width: 100%; height: 100%; display: block; object-fit: cover; }

.content-credibility__metrics-top { display: flex; flex-direction: column; gap: 0; justify-content: space-between; }
.content-credibility__metrics-top .content-credibility__metric { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.content-credibility__metrics-top .content-credibility__metric-value { font-size: 28px; opacity: 0; transform: translateY(12px); }
.content-credibility__metrics-top .content-credibility__metric-value.is-visible { animation: fadeSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.content-credibility__metrics-top .content-credibility__metric-label { font-size: 13px; opacity: 0; }
.content-credibility__metrics-top .content-credibility__metric-label.is-visible { animation: fadeSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

.content-credibility__metrics-bottom { display: grid; grid-template-columns: repeat(3, 1fr); gap: 120px 80px; margin-bottom: 60px; }
.content-credibility__metric { display: flex; flex-direction: column; }
.content-credibility__metric-value { font-size: clamp(44px, 6vw, 64px); font-weight: 700; line-height: 1; color: var(--cream); margin-bottom: 12px; letter-spacing: -1px; opacity: 0; transform: translateY(12px); }
.content-credibility__metric-value.is-visible { animation: fadeSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.content-credibility__metric-label { font-size: 13px; font-weight: 500; letter-spacing: 0.05em; color: rgba(246,245,243,0.5); opacity: 0; }
.content-credibility__metric-label.is-visible { animation: fadeSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

.content-credibility__footer { margin-top: 60px; text-align: right; }
.content-credibility__footer a { font-size: 13px; font-weight: 600; color: var(--cream); border-bottom: 1px solid rgba(246,245,243,0.4); padding-bottom: 3px; display: inline-block; }

@media (max-width: 860px) {
  .marketing-section__breadcrumb { margin-bottom: 60px; }
  .post-opening__grid { margin-bottom: 60px; }
  .post-opening__num { font-size: 72px; }
  .post-opening__thumb { width: 100%; }
  .post-opening__transition { margin: 40px 0 0; height: 600px; }
  .content-credibility__content { grid-template-columns: 1fr; gap: 60px; margin-bottom: 60px; align-items: start; }
  .content-credibility__visual { width: 100%; }
  .content-credibility__metrics-top { justify-content: flex-start; gap: 30px; }
  .content-credibility__metrics-top .content-credibility__metric { flex: none; }
  .content-credibility__metrics-top .content-credibility__metric-value { font-size: 28px; }
  .content-credibility__metrics-bottom { grid-template-columns: repeat(3, 1fr); gap: 50px 40px; margin-bottom: 40px; }
  .content-credibility__metric-value { font-size: 40px; }
}

@media (max-width: 480px) {
  .marketing-section { padding: 60px 20px; }
  .marketing-section__breadcrumb { margin-bottom: 40px; padding-top: 40px; }
  .post-opening__grid { margin-bottom: 40px; gap: 24px; }
  .post-opening__num { font-size: 56px; }
  .post-opening__thumb { width: 100%; }
  .post-opening__transition { margin: 30px 0 0; height: 500px; }
  .content-credibility { margin-bottom: 40px; }
  .content-credibility__intro { margin-bottom: 40px; }
  .content-credibility__intro h3 { font-size: 22px; }
  .content-credibility__intro p { font-size: 14px; }
  .content-credibility__content { gap: 40px; margin-bottom: 40px; }
  .content-credibility__metrics-top { gap: 25px; }
  .content-credibility__metrics-top .content-credibility__metric-value { font-size: 24px; }
  .content-credibility__metrics-bottom { grid-template-columns: repeat(3, 1fr); gap: 30px 20px; margin-bottom: 30px; }
  .content-credibility__metric-value { font-size: 32px; }
  .content-credibility__metric-label { font-size: 12px; }
  .content-credibility__footer { text-align: center; margin-top: 40px; }
}

/* post-opening */
.post-opening { max-width: 1080px; margin: 0 auto; padding-top: 40px; }
.post-opening__breadcrumb { max-width: 700px; margin: 0 auto 60px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.post-opening__breadcrumb span { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; color: rgba(246,245,243,0.5); }
.post-opening__breadcrumb i { font-style: normal; font-size: 14px; color: rgba(246,245,243,0.4); }
.post-opening__breadcrumb .post-opening__breadcrumb-highlight { font-size: 16px; font-weight: 800; letter-spacing: 0.1em; color: #ffffff; }
.post-opening__intro { max-width: 700px; margin: 0 auto 40px; text-align: center; }
.post-opening__intro h3 { margin: 0 0 20px; font-size: clamp(28px,3.8vw,40px); font-weight: 700; color: var(--cream); line-height: 1.35; }
.post-opening__intro p { margin: 0; font-size: 15px; font-weight: 400; line-height: 1.75; color: rgba(246,245,243,0.58); }
.post-opening__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; margin-bottom: 100px; align-items: start; }
.post-opening__item { position: relative; }
.post-opening__card { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.post-opening__card.is-revealed { opacity: 1; transform: translateY(0); }

.post-opening__num { font-size: 72px; font-weight: 100; letter-spacing: 0.02em; color: rgba(246,245,243,0.3); margin-bottom: 3px; text-transform: uppercase; line-height: 1; }
.post-opening__row { display: flex; align-items: center; justify-content: flex-start; gap: 10px; margin-bottom: 4px; }
.post-opening__title { font-size: 13px; font-weight: 700; color: rgba(246,245,243,0.85); }

.post-opening__arrow {
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  display: flex; align-items: center; justify-content: center; font-size: 20px; color: rgba(246,245,243,0.3); font-weight: 100;
}
.post-opening__item:last-child .post-opening__arrow { display: none; }

.post-opening__thumb {
  aspect-ratio: 9/16; background-color: #1a1a1a; background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center; margin: 0 0 16px; border-radius: 1px;
  border: 1px solid rgba(246,245,243,0.06); width: 100%;
}
.post-opening__thumb span { font-family: ui-monospace, monospace; font-size: 9px; color: rgba(246,245,243,0.2); text-align: center; padding: 0 6px; }
.post-opening__tags { display: flex; flex-wrap: nowrap; gap: 6px; }
.post-opening__tags span { font-size: 9px; font-weight: 600; letter-spacing: 0.05em; color: rgba(246,245,243,0.4); padding: 3px 6px; border: 1px solid rgba(246,245,243,0.15); border-radius: 2px; white-space: nowrap; }
.post-opening__card p { margin: 0; font-size: 11px; font-weight: 400; line-height: 1.5; color: rgba(246,245,243,0.55); }

.post-opening__transition { position: relative; margin: 60px 0 0; height: 900px; }
.post-opening__origin { position: absolute; left: 50%; top: 0; width: 1px; height: 1px; }
.post-opening__line {
  width: 2px; height: 0; background: rgba(246,245,243,0.3);
  position: absolute; left: 50%; top: 0; transform: translateX(-50%);
}
.post-opening__dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--cream);
  position: absolute; left: 50%; top: 0; transform: translate(-50%,-50%);
}
.post-opening__how {
  display: flex; align-items: center; justify-content: center; width: 100%;
  font-size: clamp(16px,2vw,22px); font-weight: 600; letter-spacing: 0.02em;
  color: rgba(246,245,243,0.85);
  text-align: center; margin: 20px 0 40px;
  opacity: 0; visibility: hidden; transform: translateY(10px); pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s linear 0.15s;
}
.post-opening__how.is-revealed {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s linear 0s;
}

@keyframes transitionLineReveal { 0% { opacity: 0; } 100% { opacity: 1; } }
.post-opening__footer {
  margin-top: 30px; padding: 12px 0 60px; border-top: 1px solid rgba(246,245,243,0.14);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
}
.post-opening__footer p { margin: 0; font-size: 13px; font-weight: 600; color: var(--cream); }
.post-opening__footer a { margin-left: auto; font-size: 13px; font-weight: 600; color: var(--cream); border-bottom: 1px solid rgba(246,245,243,0.4); padding-bottom: 3px; }

/* ---------- ABOUT STUDIO ---------- */
.about-studio { background: var(--cream-2); padding: clamp(60px,8vw,80px) clamp(20px,5vw,56px); box-sizing: border-box; }
.about-studio__eyebrow { max-width: 880px; margin: 0 auto 40px; text-align: center; }
.about-studio__eyebrow span { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; color: rgba(20,20,20,0.45); margin-bottom: 12px; text-transform: uppercase; }
.about-studio__eyebrow h3 { margin: 0; font-size: 16px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.4; color: rgba(20,20,20,0.85); }
.about-studio__body { max-width: 880px; margin: 0 auto; text-align: center; }
.about-studio__body p { margin: 0 0 12px; font-size: 15px; font-weight: 300; line-height: 1.8; color: rgba(20,20,20,0.75); }
.about-studio__body p:last-child { margin-bottom: 0; }

/* ---------- CONTACT ---------- */
.contact { background: var(--cream); padding: clamp(60px,8vw,100px) clamp(20px,5vw,56px); box-sizing: border-box; }
.contact__grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.contact__intro h2 { margin: 0 0 24px; font-size: clamp(28px,3.5vw,40px); font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; color: var(--ink); }
.contact__intro p { margin: 0 0 20px; font-size: 14px; font-weight: 300; line-height: 1.7; color: rgba(20,20,20,0.65); }
.contact__mail { font-size: 13px; font-weight: 600; color: var(--ink); border-bottom: 1px solid rgba(20,20,20,0.3); padding-bottom: 2px; display: inline-block; }
.contact__mail-sub { margin-top: 12px; }
.contact__mail-sub a { font-size: 12px; font-weight: 400; color: rgba(20,20,20,0.5); border-bottom: 1px solid rgba(20,20,20,0.15); padding-bottom: 1px; display: inline-block; }

.contact__success { background: var(--ink); color: var(--cream); padding: 48px 32px; box-sizing: border-box; }
.contact__success-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.contact__success p { margin: 0; font-size: 13px; font-weight: 300; line-height: 1.6; color: rgba(246,245,243,0.7); }

.contact__form { display: flex; flex-direction: column; gap: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.05em; color: rgba(20,20,20,0.45); margin-bottom: 6px; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%; box-sizing: border-box; background: transparent; border: none;
  border-bottom: 1px solid rgba(20,20,20,0.2); padding: 8px 0; font-size: 13px;
  font-family: inherit; color: var(--ink); outline: none;
}
.field input:disabled { opacity: 0.5; pointer-events: none; }
.field textarea { resize: vertical; }
.field__label-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.field__label-row label { margin-bottom: 0; }
.field__checkbox { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 400; color: rgba(20,20,20,0.5); cursor: pointer; text-transform: none; }
.field__checkbox input { width: 14px; height: 14px; cursor: pointer; }
.field__group-label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.05em; color: rgba(20,20,20,0.45); margin-bottom: 8px; text-transform: uppercase; }
.field__choices { display: flex; flex-wrap: wrap; gap: 12px; }
.field__choices label { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 400; color: rgba(20,20,20,0.7); cursor: pointer; white-space: nowrap; }
.field__choices input { cursor: pointer; }
.contact__submit {
  margin-top: 8px; align-self: flex-start; font-size: 12px; font-weight: 600; letter-spacing: 0.05em;
  background: var(--ink); color: var(--cream); padding: 12px 24px; border: none;
  border-radius: 2px; cursor: pointer; text-transform: uppercase;
}
.contact__submit:hover { opacity: 0.88; }

/* ---------- CLOSING ---------- */
.closing { background: var(--cream); padding: clamp(60px,8vw,80px) clamp(20px,5vw,56px); box-sizing: border-box; border-top: 1px solid rgba(20,20,20,0.08); }
.closing__inner { max-width: 600px; margin: 0 auto; text-align: center; }
.closing__brand { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: rgba(20,20,20,0.5); margin-bottom: 20px; text-transform: uppercase; }
.closing__chain { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; font-size: 13px; font-weight: 400; color: rgba(20,20,20,0.6); }
.closing__chain i { font-style: normal; font-size: 14px; font-weight: 300; }
.closing__inner p { margin: 20px 0 0; font-size: 12px; font-weight: 300; color: rgba(20,20,20,0.5); line-height: 1.6; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ink); color: rgba(246,245,243,0.5); padding: 40px clamp(20px,5vw,56px);
  box-sizing: border-box; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; align-items: center;
}
.site-footer__brand { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: rgba(246,245,243,0.8); }
.site-footer__center { font-size: 12px; }
.site-footer span:last-child { font-size: 12px; font-weight: 400; }

/* ---------- WORKS GALLERY ---------- */
.works-page { background: var(--cream); min-height: 100vh; }
.works__head { max-width: 1200px; margin: 0 auto; padding: 144px clamp(20px,5vw,56px) 40px; }
.works__head h1 { margin: 0; font-size: clamp(35px,5.3vw,56px); font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.works__grid { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px,5vw,56px) 120px; display: grid; grid-template-columns: repeat(3,1fr); gap: 48px 32px; }
.works__card { display: block; }
.works__card-thumb { aspect-ratio: 4/3; background-color: #e9e7e2; background-size: cover; background-position: center; border-radius: 1px; margin-bottom: 16px; border: 1px dashed rgba(20,20,20,0.12); }
.works__card h3 { margin: 0 0 4px; font-size: 18px; font-weight: 700; color: var(--ink); }
.works__card p { margin: 0; font-size: 13px; color: rgba(20,20,20,0.5); }
.works__card--soon { pointer-events: none; opacity: 0.45; }
.works__card--soon .works__card-thumb { background-color: #efeee9; }

/* ---------- BRAND DETAIL PAGE ---------- */
.brand-page { background: var(--cream); }
.brand-hero { position: relative; height: 70vh; min-height: 480px; background-color: #141414; background-size: cover; background-position: center; display: flex; align-items: flex-end; }
.brand-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0) 55%); }
.brand-hero__inner { position: relative; z-index: 1; padding: 0 clamp(20px,5vw,56px) 56px; max-width: 1200px; margin: 0 auto; width: 100%; box-sizing: border-box; }
.brand-hero__inner h1 { margin: 0 0 8px; font-size: clamp(48px,7vw,88px); font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.brand-hero__meta { margin: 0 0 16px; font-size: 13px; color: rgba(255,255,255,0.6); }
.brand-hero__tagline { margin: 0; font-size: 15px; color: rgba(255,255,255,0.85); max-width: 520px; }
.brand-intro { max-width: 1200px; margin: 0 auto; padding: 80px clamp(20px,5vw,56px); display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.brand-intro p { margin: 0 0 22px; font-size: 15px; line-height: 1.85; letter-spacing: -0.012em; color: rgba(20,20,20,0.7); }
.brand-intro p:last-child { margin-bottom: 0; }
.brand-intro__img { width: 100%; height: auto; display: block; border-radius: 1px; position: sticky; top: 96px; }
/* Row-based gallery: each row is either one full-width image or a 2-up pair.
   Images keep their natural aspect ratio (no cropping); gap is always exactly 32px. */
.brand-blocks { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px,5vw,56px) 120px; display: flex; flex-direction: column; gap: 32px; }
.brand-blocks > img { width: 100%; height: auto; display: block; border-radius: 1px; }
.brand-blocks__row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.brand-blocks__row img { width: 100%; height: auto; display: block; border-radius: 1px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .worlds__panel { display: none; }
  .brand-dive__name { grid-template-columns: 1fr; }
  .brand-dive__grid > div { flex: 0 0 calc(50% - 16px); }
  .post-opening__grid { grid-template-columns: repeat(2,1fr); }
  .post-opening__arrow { display: none; }
  .works__grid { grid-template-columns: repeat(2,1fr); }
  .brand-intro { grid-template-columns: 1fr; gap: 32px; }
  .brand-intro__img { position: static; }
  .brand-blocks__row { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  /* On mobile the global `body { overflow-x: hidden }` turns <body> into a scroll container,
     which splits scrolling from the viewport and breaks `position:sticky` (the WORLDS section
     stops pinning). `overflow-x: clip` prevents the same horizontal overflow WITHOUT creating
     a scroll container, so the viewport scrolls normally and sticky pins again. Mobile-only —
     desktop keeps its existing `overflow-x: hidden`. Do NOT add an `html` overflow rule here:
     that reintroduces the split. */
  body { overflow-x: clip; }
  .nav { grid-template-columns: auto 1fr auto; width: 100vw; max-width: 100%; padding: 0 16px; }
  .nav__links { justify-self: center; }
  .nav__links a { font-size: 12px; }
  .nav__cta { padding: 8px 12px; font-size: 12px; }
  .case-study__circles { grid-template-columns: repeat(3,1fr); gap: 10px; max-width: 335px; padding: 20px 0 0; overflow-x: hidden; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .field-row { grid-template-columns: 1fr; }
  .hero__tagline { white-space: normal; word-spacing: normal; }
  .works__grid { grid-template-columns: 1fr; }

  /* mobile-only line breaks (see .mobile-break, hidden by default) */
  .mobile-break { display: inline; }

  /* SCROLL cue: the scrollcue keyframes animate `transform`, which was clobbering the
     translateX(-50%) centering trick every frame. Center with auto margins instead so
     the animation's translateY doesn't fight the horizontal centering. */
  .hero__scroll { left: 0; right: 0; width: fit-content; margin: 0 auto; transform: none; }

  /* WORLDS comparison: re-enable the image panels and keep the stage at its full desktop
     size (same as PC) instead of shrinking it — swipe left/right within this section to see
     it, rather than reflowing/miniaturizing the layout. The rest of the page stays normal
     width; only this section scrolls horizontally.
     measurePanelOffsets() in script.js re-reads getBoundingClientRect() live, so it keeps
     working with no JS changes. */
  .worlds__panel { display: block; }
  /* keep vertical centering (justify-content, column-axis) since that's not what broke —
     only align-items (horizontal centering, cross-axis) fought with overflow-x:auto, so
     that one switches to flex-start and the stage scrolls horizontally instead. */
  .worlds__sticky { align-items: flex-start; overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; }
  .worlds__stage { width: 1400px; max-width: none; flex: none; margin: 0; }
  /* Shorten the mobile scroll track so the merge->expand choreography plays out quickly and
     there is no long blank cream area after the animation. The JS remap in script.js is tuned
     to this height (approach+merge by ~40% scroll, expansion by ~90%, then a short hold). */
  .worlds { height: 220vh; }

  /* drifting background strips: scale the (non-animated) wrapper down so the images
     read smaller without touching the JS-generated track or its animation. */
  .why__strip--1 { transform: translateY(-50%) scale(0.55); }
  .why__strip--2 { transform: translateY(-50%) scale(0.55); }

  /* concept circles: shrink to fit 3 across instead of stacking */
  .answer-circle { width: 92px; height: 92px; padding: 8px; border-width: 1px; }
  .answer-circle__title { width: 74px !important; font-size: 9px; margin-bottom: 4px; }
  .answer-circle__desc { display: none; }
  .circle-group__eyebrow { font-size: 7px; margin-bottom: 10px; }

  /* CLIENT QUESTION: narrow the label column so the quote gets more room */
  .brand-dive__client { grid-template-columns: 72px 1fr; gap: 16px; }
  .brand-dive__client-label { width: 72px; font-size: 8px; }
  .brand-dive__client p { font-size: 15px; padding-left: 16px; }

  /* FOCUS/INSIGHT on one row, CONCEPT/SPATIAL LANGUAGE on the next */
  .brand-dive__grid-arrow { display: none; }
  .brand-dive__grid { row-gap: 28px; }
  .brand-dive__grid > div { flex: 0 0 calc(50% - 10px); }

  /* brand name + description side by side instead of stacked */
  .brand-dive__name { grid-template-columns: 34fr 66fr; gap: 20px; }
  .brand-dive__name h3 { font-size: 34px; }
  .brand-dive__name p { font-size: 13px; line-height: 1.6; }

  /* render carousel: bigger cards on a narrow screen */
  .render-card { width: 85vw; }

  /* keep each intro line to a single row */
  .about-studio__body p { font-size: 14px; }
}
@media (max-width: 560px) {
  .post-opening__grid { grid-template-columns: 1fr 1fr; }
}
