:root {
  --bg: #050505;
  --black: #050505;
  --white: #eeeeee;
  --text: #dcdcdc;
  --muted: #8a8a8a;
  --blue-hint: rgba(214, 224, 228, 0.08);
  --line-soft: rgba(238, 238, 238, 0.1);
  --red: #ff1f1f;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --header-height: 72px;
  --hero-detail-opacity: 1;
  --brand-x: 50vw;
  --brand-y: 43vh;
  --brand-scale: 1;
  --work-opacity: 0;
  --work-y: 24px;
  --backdrop-opacity: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Pretendard",
    "Noto Sans KR",
    "Apple SD Gothic Neo",
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  word-break: keep-all;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
}

body::before {
  z-index: 80;
  opacity: 0.11;
  background-image:
    radial-gradient(circle at 22% 18%, rgba(238, 238, 238, 0.12) 0 1px, transparent 1px),
    radial-gradient(circle at 74% 64%, rgba(238, 238, 238, 0.08) 0 1px, transparent 1px);
  background-size: 7px 7px, 11px 11px;
  mix-blend-mode: overlay;
}

body::after {
  z-index: 81;
  opacity: 0.038;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(238, 238, 238, 0.12) 0 1px,
    transparent 1px 5px
  );
  mix-blend-mode: soft-light;
}

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

button {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
}

::selection {
  background: rgba(238, 238, 238, 0.24);
  color: var(--white);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 300;
  padding: 10px 14px;
  background: var(--white);
  color: var(--black);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 0 34px;
  color: rgba(238, 238, 238, 0.7);
  transition:
    opacity 360ms ease,
    transform 560ms var(--ease);
}

.site-header.is-hidden {
  opacity: 0;
  transform: translateY(-14px);
  pointer-events: none;
}

body.menu-peek .site-header.is-hidden,
body.menu-open .site-header {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 40px;
  padding: 0 12px 0 8px;
  border: 1px solid rgba(238, 238, 238, 0.11);
  border-radius: 999px;
  color: rgba(238, 238, 238, 0.62);
  cursor: pointer;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 340ms var(--ease);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(238, 238, 238, 0.28);
  color: var(--white);
}

body.menu-peek .site-header.is-hidden .menu-toggle,
body.menu-open .menu-toggle {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
  transform: scale(1.03);
}

.menu-icon {
  position: relative;
  width: 22px;
  height: 16px;
  display: block;
}

.menu-icon span {
  position: absolute;
  left: 0;
  width: 22px;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition: transform 300ms var(--ease);
}

.menu-icon span:first-child {
  top: 5px;
}

.menu-icon span:last-child {
  bottom: 5px;
}

body.menu-open .menu-icon span:first-child {
  transform: translateY(3px) rotate(36deg);
}

body.menu-open .menu-icon span:last-child {
  transform: translateY(-3px) rotate(-36deg);
}

.menu-text {
  font-size: 0.76rem;
}

.header-mark {
  color: rgba(238, 238, 238, 0.62);
  font-size: 0.82rem;
  font-weight: 560;
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: grid;
  align-items: center;
  padding: 110px 34px 44px;
  background: rgba(5, 5, 5, 0.97);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-18px);
  transition:
    opacity 420ms ease,
    transform 680ms var(--ease);
  backdrop-filter: blur(18px);
}

body.menu-open .menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.menu-nav {
  display: grid;
  width: min(620px, 100%);
  gap: 0;
}

.menu-nav a {
  padding: 18px 0;
  border-bottom: 1px solid rgba(238, 238, 238, 0.14);
  color: var(--white);
  font-size: 4.8rem;
  font-weight: 680;
  line-height: 0.98;
  transition:
    color 220ms ease,
    padding-left 420ms var(--ease),
    border-color 220ms ease;
}

.menu-nav a:first-child {
  border-top: 1px solid rgba(238, 238, 238, 0.14);
}

.menu-nav a:hover,
.menu-nav a:focus-visible {
  border-color: rgba(238, 238, 238, 0.34);
  padding-left: 14px;
}

.home-main {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
}

.motion-stage {
  position: relative;
  height: 225svh;
}

.motion-viewport {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: var(--bg);
}

.atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0.98) 88%),
    var(--bg);
}

.ambient-line {
  position: absolute;
  display: block;
  height: 1px;
  background: rgba(238, 238, 238, 0.08);
  transform-origin: center;
  overflow: hidden;
}

.ambient-line::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(238, 238, 238, 0.02) 28%,
    rgba(238, 238, 238, 0.26) 50%,
    var(--blue-hint) 57%,
    transparent 78%
  );
  transform: translateX(-120%);
  animation: passingLight 30s var(--ease) infinite;
}

.ambient-line-one {
  left: -8%;
  top: 29%;
  width: 36%;
  opacity: 0.34;
  transform: rotate(-14deg);
}

.ambient-line-two {
  right: 6%;
  top: 23%;
  width: 20%;
  opacity: 0.18;
  transform: rotate(-11deg);
}

.ambient-line-three {
  left: 62%;
  top: 61%;
  width: 25%;
  opacity: 0.16;
  transform: rotate(-17deg);
}

.ambient-line-two::after {
  animation-delay: 9s;
}

.ambient-line-three::after {
  animation-delay: 17s;
}

.scene-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: var(--backdrop-opacity);
  pointer-events: none;
  transition: opacity 180ms linear;
}

.scene-backdrop::before,
.scene-backdrop::after,
.still-grain {
  position: absolute;
  inset: 0;
  content: "";
}

.scene-backdrop::before {
  opacity: 0.72;
  transition: background 520ms ease;
}

.scene-backdrop::after {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.56) 46%, rgba(5, 5, 5, 0.22)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.88));
}

.still-grain {
  z-index: 1;
  opacity: 0.11;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(238, 238, 238, 0.12) 0 1px, transparent 1px),
    radial-gradient(circle at 72% 62%, rgba(238, 238, 238, 0.08) 0 1px, transparent 1px);
  background-size: 8px 8px, 13px 13px;
  mix-blend-mode: overlay;
}

.scene-backdrop[data-active-film="walle"]::before {
  background:
    linear-gradient(180deg, transparent 0 44%, rgba(238, 238, 238, 0.14) 44% 46%, transparent 46%),
    linear-gradient(124deg, rgba(150, 150, 150, 0.28), rgba(12, 12, 12, 0.96) 58%),
    #070707;
}

.scene-backdrop[data-active-film="spiderman"]::before {
  background:
    linear-gradient(34deg, transparent 0 46%, rgba(238, 238, 238, 0.1) 46% 47%, transparent 47%),
    linear-gradient(112deg, rgba(76, 76, 76, 0.5), rgba(5, 5, 5, 0.94) 66%),
    #060606;
}

.scene-backdrop[data-active-film="christmas"]::before {
  background:
    linear-gradient(90deg, transparent 0 58%, rgba(238, 238, 238, 0.12) 58% 59%, transparent 59%),
    linear-gradient(116deg, rgba(92, 92, 92, 0.48), rgba(7, 7, 7, 0.94) 62%),
    #070707;
}

.brand-morph {
  position: absolute;
  left: var(--brand-x);
  top: var(--brand-y);
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 13px;
  color: var(--white);
  transform: translate(-50%, -50%) scale(var(--brand-scale));
  transform-origin: center;
  pointer-events: none;
  will-change: left, top, transform;
}

.brand-primary {
  margin: 0;
  color: rgba(238, 238, 238, 0.92);
  font-size: 4.6rem;
  font-weight: 560;
  line-height: 1;
}

.brand-secondary {
  margin: 0;
  color: rgba(238, 238, 238, 0.52);
  font-size: 1.02rem;
  font-weight: 360;
  line-height: 1;
}

.hero-details {
  position: absolute;
  left: 50%;
  top: 58%;
  z-index: 3;
  width: min(520px, calc(100% - 48px));
  color: var(--text);
  text-align: center;
  opacity: var(--hero-detail-opacity);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: opacity 80ms linear;
}

.hero-line {
  max-width: 440px;
  margin: 0 auto;
  color: rgba(220, 220, 220, 0.6);
  font-size: 1rem;
  line-height: 1.75;
}

.work-panel {
  position: absolute;
  left: 150px;
  top: 312px;
  z-index: 4;
  width: min(680px, calc(100% - 180px));
  opacity: var(--work-opacity);
  transform: translateY(var(--work-y));
  transition:
    opacity 100ms linear,
    transform 100ms linear;
}

.work-kicker {
  margin: 0 0 18px;
  color: rgba(220, 220, 220, 0.48);
  font-size: 0.82rem;
}

.work-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: baseline;
  width: 100%;
  padding: 19px 0;
  border-bottom: 1px solid rgba(238, 238, 238, 0.14);
  color: rgba(238, 238, 238, 0.56);
  text-align: left;
  cursor: pointer;
  transition:
    color 240ms ease,
    padding-left 420ms var(--ease),
    border-color 240ms ease;
}

.work-item:first-of-type {
  border-top: 1px solid rgba(238, 238, 238, 0.14);
}

.work-item:hover,
.work-item:focus-visible,
.work-item.is-active {
  color: var(--white);
  border-color: rgba(238, 238, 238, 0.34);
  padding-left: 14px;
}

.work-title {
  font-size: 4.1rem;
  font-weight: 660;
  line-height: 0.98;
}

.work-meta {
  color: rgba(220, 220, 220, 0.5);
  font-size: 0.84rem;
  white-space: nowrap;
}

.news-feed {
  position: relative;
  z-index: 5;
  padding: 112px 34px 132px;
  background: var(--bg);
}

.news-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.news-heading {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
  margin-bottom: 42px;
}

.news-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.news-heading h2 {
  max-width: 640px;
  margin: 0;
  color: rgba(238, 238, 238, 0.86);
  font-size: 2.3rem;
  font-weight: 520;
  line-height: 1.28;
}

.news-list {
  border-top: 1px solid rgba(238, 238, 238, 0.16);
  counter-reset: news;
}

.news-item {
  counter-increment: news;
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 54px;
  padding: 34px 0 38px;
  border-bottom: 1px solid rgba(238, 238, 238, 0.14);
  transition:
    border-color 240ms ease,
    background-color 240ms ease;
}

.news-item::before {
  position: absolute;
  top: 38px;
  right: 0;
  content: counter(news, decimal-leading-zero);
  color: rgba(238, 238, 238, 0.22);
  font-size: 0.78rem;
}

.news-item:hover {
  border-color: rgba(238, 238, 238, 0.32);
  background: linear-gradient(90deg, transparent, rgba(238, 238, 238, 0.018), transparent);
}
.news-meta {
  display: grid;
  gap: 8px;
  align-content: start;
  color: var(--muted);
  font-size: 0.82rem;
}

.news-copy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
  max-width: 760px;
}

.news-copy h3 {
  margin: 0;
  color: var(--white);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.14;
}

.news-copy p {
  margin: 0;
  color: rgba(220, 220, 220, 0.66);
  font-size: 1rem;
}

.news-copy a {
  width: fit-content;
  margin-top: 10px;
  color: rgba(238, 238, 238, 0.62);
  font-size: 0.86rem;
  white-space: nowrap;
  border-bottom: 1px solid rgba(238, 238, 238, 0.22);
  transition:
    color 200ms ease,
    border-color 200ms ease,
    transform 260ms var(--ease);
}
.news-copy a::after {
  content: " ↗";
}

.news-copy a:hover,
.news-copy a:focus-visible {
  color: var(--white);
  border-color: rgba(238, 238, 238, 0.72);
  transform: translateX(8px);
}

.site-footer {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: end;
  padding: 36px 34px 38px;
  border-top: 1px solid var(--line-soft);
  background: var(--bg);
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.footer-pages {
  justify-content: flex-start;
}

.footer-socials {
  justify-content: flex-end;
}

.footer-links a {
  transition: color 200ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.prototype-mark {
  margin: 0;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 780;
  text-align: center;
}

@keyframes passingLight {
  0%,
  36% {
    opacity: 0;
    transform: translateX(-120%);
  }

  54% {
    opacity: 0.52;
  }

  76% {
    opacity: 0;
    transform: translateX(120%);
  }

  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@media (max-width: 860px) {
  .site-header,
  .site-footer,
  .news-feed {
    padding-right: 22px;
    padding-left: 22px;
  }

  .menu-panel {
    padding-right: 22px;
    padding-left: 22px;
  }

  .brand-primary {
    font-size: 3.8rem;
  }

  .work-panel {
    left: 104px;
    top: 292px;
    width: calc(100% - 126px);
  }

  .work-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .work-title {
    font-size: 3.1rem;
  }

  .work-meta {
    white-space: normal;
  }

  .news-heading,
  .news-item {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .news-heading h2 {
    font-size: 2rem;
  }


  .site-footer {
    grid-template-columns: 1fr;
  }

  .prototype-mark {
    text-align: left;
  }

  .footer-socials {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    padding-right: 18px;
    padding-left: 18px;
  }

  .menu-toggle {
    padding-right: 10px;
  }

  .menu-text {
    display: none;
  }

  .ambient-line-one {
    left: -20%;
    top: 30%;
    width: 54%;
  }

  .ambient-line-two {
    right: -20%;
    top: 22%;
    width: 42%;
  }

  .ambient-line-three {
    left: 56%;
    top: 64%;
    width: 34%;
  }

  .brand-primary {
    font-size: 2.95rem;
  }

  .brand-secondary {
    font-size: 0.9rem;
  }

  .hero-details {
    width: calc(100% - 36px);
    top: 59%;
  }

  .hero-line {
    font-size: 0.94rem;
  }

  .work-panel {
    left: 58px;
    top: 278px;
    width: calc(100% - 76px);
  }

  .work-title {
    font-size: 2.48rem;
  }

  .menu-nav a {
    font-size: 3.1rem;
  }

  .news-feed {
    padding: 86px 18px 106px;
  }

  .news-heading h2,
  .news-copy h3 {
    font-size: 1.72rem;
  }

  .site-footer {
    padding: 28px 18px 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .hero-details {
    opacity: 1;
  }

  .work-panel {
    opacity: 1;
    transform: none;
  }

  .scene-backdrop {
    opacity: 0.58;
  }
}
/* A24-like post modules */
.menu-nav a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 100px;
  gap: 24px;
  align-items: baseline;
}

.menu-nav a span:first-child {
  color: var(--white);
  font-size: inherit;
  line-height: inherit;
}

.menu-nav a span:last-child {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 400;
}

.brand-morph {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1em;
  width: auto;
  height: auto;
  font-size: 5.8rem;
  font-weight: 520;
  line-height: 1;
}

.brand-char {
  display: block;
}

.social-preview.post-feed {
  position: relative;
  z-index: 5;
  min-height: auto;
  padding: 118px 34px 138px;
  background: #f1f1f1;
  color: #050505;
}

.social-preview.post-feed .social-inner {
  width: min(1260px, 100%);
  margin: 0 auto;
}

.social-preview.post-feed .social-header {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  margin-bottom: 70px;
}

.social-preview.post-feed .social-header p {
  margin: 0;
  color: rgba(5, 5, 5, 0.46);
  font-size: 0.9rem;
  font-weight: 650;
}

.social-preview.post-feed .social-header h2 {
  max-width: 700px;
  margin: 0;
  color: #050505;
  font-size: 2.5rem;
  font-weight: 620;
  line-height: 1.18;
}

.post-list {
  display: grid;
  gap: 98px;
}

.post-card {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(320px, 0.58fr);
  gap: clamp(46px, 6vw, 92px);
  align-items: center;
}

.post-card-reverse .post-visual {
  grid-column: 2;
  grid-row: 1;
}

.post-card-reverse .post-copy {
  grid-column: 1;
  grid-row: 1;
}

.post-visual {
  position: relative;
  display: block;
  min-height: 440px;
  aspect-ratio: 1.08 / 1;
  overflow: hidden;
  background: #e2e2e2;
  transition:
    transform 520ms var(--ease),
    filter 520ms ease;
}

.post-visual:hover,
.post-visual:focus-visible {
  transform: translateY(-4px);
  filter: contrast(1.04);
}

.post-visual::before,
.post-visual::after {
  position: absolute;
  content: "";
}

.post-visual::before {
  inset: 15% 10%;
  background: #111;
}

.post-visual::after {
  inset: 0;
  opacity: 0.13;
  background-image:
    radial-gradient(circle at 26% 24%, rgba(255, 255, 255, 0.8) 0 1px, transparent 1px),
    radial-gradient(circle at 74% 66%, rgba(0, 0, 0, 0.5) 0 1px, transparent 1px);
  background-size: 9px 9px, 13px 13px;
}

.post-visual-one {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.7), rgba(210,210,210,0.92)),
    #e9e9e9;
}

.post-visual-one::before {
  inset: 23% 12% 18% 10%;
  background:
    linear-gradient(90deg, rgba(210,210,210,0.94) 0 56%, transparent 56%),
    radial-gradient(circle at 78% 50%, #111 0 28%, transparent 29%),
    linear-gradient(180deg, #c9c9c9, #efefef);
}

.post-visual-two {
  background: #ececec;
}

.post-visual-two::before {
  inset: 9% 8%;
  background:
    radial-gradient(circle at 28% 54%, #d8d8d8 0 18%, transparent 19%),
    radial-gradient(circle at 72% 48%, #f3f3f3 0 20%, transparent 21%),
    linear-gradient(90deg, #111 0 100%);
  filter: grayscale(1);
}

.post-visual-three {
  background: #e5e5e5;
}

.post-visual-three::before {
  inset: 18% 13%;
  background:
    linear-gradient(115deg, transparent 0 48%, rgba(255,255,255,0.78) 48% 52%, transparent 52%),
    linear-gradient(180deg, #2d2d2d, #111);
}

.post-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 360px;
}

.post-copy span {
  display: block;
  margin-bottom: 26px;
  color: rgba(5, 5, 5, 0.48);
  font-size: 0.9rem;
  font-weight: 720;
}

.post-copy h3 {
  max-width: 620px;
  margin: 0;
  color: #050505;
  font-size: clamp(3rem, 5.2vw, 5.4rem);
  font-weight: 720;
  line-height: 0.96;
}

.post-copy p {
  max-width: 420px;
  margin: 24px 0 0;
  color: rgba(5, 5, 5, 0.58);
  font-size: 1.02rem;
}

.post-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: clamp(58px, 8vw, 112px);
  color: #050505;
  font-size: 1.12rem;
  font-weight: 720;
  transition:
    gap 260ms var(--ease),
    opacity 200ms ease;
}

.post-link::before {
  content: "";
  width: 54px;
  height: 1px;
  background: currentColor;
  box-shadow: 12px -7px 0 -6px currentColor, 12px 7px 0 -6px currentColor;
  transform: skewX(36deg);
}

.post-link:hover,
.post-link:focus-visible {
  gap: 34px;
  opacity: 0.72;
}

@media (max-width: 900px) {
  .social-preview.post-feed {
    padding: 88px 22px 108px;
  }

  .social-preview.post-feed .social-header,
  .post-card,
  .post-card-reverse .post-visual,
  .post-card-reverse .post-copy {
    display: grid;
    grid-template-columns: 1fr;
    grid-column: auto;
    grid-row: auto;
  }

  .post-list {
    gap: 74px;
  }

  .post-visual {
    min-height: 300px;
  }

  .post-copy {
    min-height: auto;
  }

  .post-copy h3 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .post-link {
    margin-top: 36px;
  }
}

@media (max-width: 560px) {
  .brand-morph {
    font-size: 3.9rem;
  }

  .menu-nav a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .social-preview.post-feed {
    padding: 76px 18px 92px;
  }

  .post-list {
    gap: 58px;
  }

  .post-visual {
    min-height: 240px;
  }
}
/* Cinematic hero depth and staged scroll overrides */
:root {
  --scene-drift-x: 0px;
  --scene-drift-y: 0px;
  --white-in: 0;
}

.motion-stage {
  height: 390svh;
}

.motion-viewport {
  isolation: isolate;
}

.motion-viewport::after {
  position: absolute;
  inset: 0;
  z-index: 18;
  content: "";
  background: #f1f1f1;
  opacity: var(--white-in);
  pointer-events: none;
  transition: opacity 120ms linear;
}

.atmosphere {
  transform: translate3d(var(--scene-drift-x), var(--scene-drift-y), 0);
  transition: transform 180ms linear;
  background:
    radial-gradient(circle at 50% 43%, rgba(238, 238, 238, 0.075), transparent 0 28%, rgba(5, 5, 5, 0.28) 62%, rgba(0, 0, 0, 0.72) 100%),
    radial-gradient(ellipse at 50% 44%, rgba(214, 224, 228, 0.04), transparent 42%),
    linear-gradient(180deg, #070707 0%, #050505 58%, #010101 100%);
}

.atmosphere::before,
.atmosphere::after {
  position: absolute;
  inset: -18%;
  content: "";
  pointer-events: none;
}

.atmosphere::before {
  opacity: 0.16;
  background: linear-gradient(
    112deg,
    transparent 0%,
    transparent 42%,
    rgba(238, 238, 238, 0.12) 49%,
    rgba(214, 224, 228, 0.055) 53%,
    transparent 62%,
    transparent 100%
  );
  transform: translateX(-28%) rotate(-2deg);
  animation: screenSweep 34s var(--ease) infinite;
  filter: blur(18px);
}

.atmosphere::after {
  opacity: 0.14;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(238, 238, 238, 0.1) 0 1px, transparent 1px),
    radial-gradient(circle at 72% 64%, rgba(238, 238, 238, 0.075) 0 1px, transparent 1px),
    radial-gradient(circle at 44% 38%, rgba(238, 238, 238, 0.06) 0 1px, transparent 1px);
  background-size: 9px 9px, 13px 13px, 17px 17px;
  mix-blend-mode: overlay;
}

.ambient-line {
  height: 1px;
  background: rgba(238, 238, 238, 0.06);
  filter: blur(0.1px);
}

.ambient-line::after {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(238, 238, 238, 0.015) 32%,
    rgba(238, 238, 238, 0.22) 50%,
    rgba(214, 224, 228, 0.06) 58%,
    transparent 78%
  );
  animation-duration: 36s;
}

.ambient-line-one {
  left: -6%;
  top: 33%;
  width: 29%;
  opacity: 0.24;
  transform: rotate(-13deg);
}

.ambient-line-two {
  right: 8%;
  top: 24%;
  width: 16%;
  opacity: 0.14;
  transform: rotate(-9deg);
}

.ambient-line-three {
  left: 66%;
  top: 64%;
  width: 22%;
  opacity: 0.12;
  transform: rotate(-17deg);
}

.brand-morph::before {
  position: absolute;
  inset: -70% -90%;
  z-index: -1;
  content: "";
  opacity: 0.16;
  background: radial-gradient(circle at 50% 50%, rgba(238, 238, 238, 0.22), transparent 62%);
  filter: blur(34px);
  pointer-events: none;
}

.brand-morph {
  flex-direction: column;
  align-items: center;
  gap: 0.28em;
  text-align: center;
}

.brand-primary {
  margin: 0;
  color: rgba(238, 238, 238, 0.94);
  font-size: clamp(4.2rem, 9vw, 8rem);
  font-weight: 520;
  line-height: 0.92;
}

.brand-secondary {
  margin: 0;
  color: rgba(238, 238, 238, 0.52);
  font-size: clamp(0.9rem, 1.4vw, 1.18rem);
  font-weight: 360;
  line-height: 1;
}

.work-panel {
  opacity: var(--work-opacity);
}

.work-item {
  opacity: 0.14;
  transform: translateY(14px);
  transition:
    opacity 520ms var(--ease),
    transform 520ms var(--ease),
    color 240ms ease,
    padding-left 420ms var(--ease),
    border-color 240ms ease;
}

.work-item.is-sequence-active {
  opacity: 1;
  transform: translateY(0);
}

.work-item.is-sequence-past {
  opacity: 0.34;
  transform: translateY(0);
}

.social-preview.post-feed {
  opacity: var(--post-section-opacity, 1);
}

.reveal-post {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease);
}

.reveal-post.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 760ms var(--ease),
    transform 760ms var(--ease);
}

.site-footer.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes screenSweep {
  0%, 28% {
    opacity: 0;
    transform: translateX(-34%) rotate(-2deg);
  }

  48% {
    opacity: 0.16;
  }

  76%, 100% {
    opacity: 0;
    transform: translateX(34%) rotate(-2deg);
  }
}

@media (max-width: 560px) {
  .brand-primary {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .brand-morph {
    gap: 0.22em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .atmosphere,
  .atmosphere::before,
  .ambient-line::after,
  .reveal-post,
  .site-footer,
  .work-item {
    animation: none !important;
    transition-duration: 0.001ms !important;
  }

  .atmosphere {
    transform: none !important;
  }

  .reveal-post,
  .site-footer {
    opacity: 1;
    transform: none;
  }
}
/* Final scroll-state polish */
.brand-morph {
  opacity: var(--brand-opacity, 1);
  transition: opacity 120ms linear;
}

.social-preview.post-feed .social-header {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease);
}

.social-preview.post-feed .social-header.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .brand-morph,
  .social-preview.post-feed .social-header,
  .work-item {
    opacity: 1 !important;
    transform: none !important;
  }
}