@font-face {
  font-family: "Aktiv Grotesk";
  src: url("./assets/fonts/AktivGrotesk-Hairline.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aktiv Grotesk";
  src: url("./assets/fonts/AktivGrotesk-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aktiv Grotesk";
  src: url("./assets/fonts/AktivGrotesk-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aktiv Grotesk";
  src: url("./assets/fonts/AktivGrotesk-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #04060a;
  --paper: #0a0d12;
  --text: #f2f2f2;
  --muted: #9da3ad;
  --line: #171b22;
  --accent: #f2f2f2;
  --header-h: 96px;
}

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

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Aktiv Grotesk", system-ui, -apple-system, sans-serif;
  text-rendering: geometricPrecision;
}

img {
  max-width: 100%;
  display: block;
}

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

.section-pad {
  padding: clamp(3.5rem, 7vw, 7rem) clamp(0.55rem, 2.1vw, 1.8rem);
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 26px);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 1000;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: #f5f5f5;
  transition: width 0.12s linear;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(0.7rem, 2.1vw, 1.8rem);
  border-bottom: none;
  backdrop-filter: blur(2px);
  background: transparent;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: clamp(150px, 13.5vw, 230px);
  height: auto;
}

.menu {
  display: flex;
  gap: clamp(0.8rem, 1.7vw, 1.8rem);
}

.menu a {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-size: clamp(0.94rem, 1vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
}

.menu-word-track,
.menu-num-track {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  height: 1.08em;
}

.menu-word,
.menu-num {
  display: block;
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-word-track {
  min-width: max-content;
}

.menu-num-track {
  min-width: 1.3em;
}

.menu-word-clone,
.menu-num-clone {
  position: absolute;
  inset: 0 auto auto 0;
}

.menu-word-clone {
  transform: translateY(115%);
}

.menu-num {
  opacity: 0.66;
}

.menu-num-clone {
  opacity: 0.66;
  transform: translateY(-115%);
}

.menu a:hover .menu-word,
.menu a:focus-visible .menu-word,
.about-socials a:hover .menu-word,
.about-socials a:focus-visible .menu-word {
  transform: translateY(-115%);
}

.menu a:hover .menu-word-clone,
.menu a:focus-visible .menu-word-clone,
.about-socials a:hover .menu-word-clone,
.about-socials a:focus-visible .menu-word-clone {
  transform: translateY(0%);
}

.menu a:hover .menu-num,
.menu a:focus-visible .menu-num {
  transform: translateY(115%);
}

.menu a:hover .menu-num-clone,
.menu a:focus-visible .menu-num-clone {
  transform: translateY(0%);
}

.contact-btn {
  border: 1px solid #f2f2f2;
  border-radius: 0;
  padding: 0.62rem 1.1rem;
  font-size: 0.83rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.contact-btn:hover {
  background: #f2f2f2;
  color: #050505;
  transform: translateY(-2px);
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-top: calc(var(--header-h) + clamp(3rem, 6vw, 5rem));
  padding-bottom: calc(var(--header-h) + clamp(3rem, 6vw, 5rem));
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 52% 20%, rgba(255, 255, 255, 0.07), transparent 30%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.13), rgba(0, 0, 0, 0.58) 90%);
}

.hero-meta {
  position: absolute;
  right: clamp(5.6rem, 13vw, 13.6rem);
  top: clamp(14rem, 26vh, 20rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  color: #d3d6dc;
  z-index: 2;
  max-width: 380px;
}

.hero-location {
  text-align: left;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.55rem;
  white-space: nowrap;
  padding-left: 0.82rem;
}

.hero-place {
  white-space: nowrap;
  font-size: clamp(1.05rem, 1.35vw, 1.62rem);
}

.hero-meta ul {
  margin: 0;
  padding-left: 0.82rem;
}

.hero-meta li {
  margin-bottom: 0.4rem;
  font-size: clamp(1.05rem, 1.35vw, 1.62rem);
  letter-spacing: -0.01em;
}

.hero-meta p {
  margin: 0;
  font-size: clamp(1.05rem, 1.35vw, 1.62rem);
}

.hero-time {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  white-space: nowrap;
}

#liveTime {
  display: inline-block;
  background: #f4f4f4;
  color: #0a0a0a;
  padding: 0.1rem 0.5rem;
  font-weight: 600;
  line-height: 1.12;
}

.hero-title {
  margin: clamp(0.8rem, 2vw, 1.6rem) 0 0;
  position: relative;
  z-index: 2;
}

/* ============ HERO TITLE SLIDE-IN ANIMATION ============ */
@keyframes troy-slide-left {
  from { transform: translateX(-100%); opacity: 0; }
  to   { transform: translateX(0);     opacity: 1; }
}

@keyframes troy-slide-right {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

.hero-title .line {
  margin: 0;
  line-height: 0.82;
  font-weight: 700;
  font-family: "Aktiv Grotesk", system-ui, -apple-system, sans-serif;
  font-size: clamp(4.6rem, 16.8vw, 15rem);
  letter-spacing: -0.032em;
  text-transform: uppercase;
  animation: troy-slide-left 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-title .line.right {
  text-align: right;
  animation: troy-slide-right 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Chars dentro del hero-title arrancan visibles: la animación es a nivel palabra */
.hero-title .char {
  transform: none;
  opacity: 1;
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-title .line,
  .hero-title .line.right {
    animation: none;
    opacity: 1;
  }
}

.char {
  display: inline-block;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-title.is-ready .char {
  transform: translateY(0%);
  opacity: 1;
}

.hero-copy {
  max-width: 56ch;
  margin: 0;
  font-size: clamp(1.05rem, 1.35vw, 1.62rem);
  line-height: 1.28;
  position: relative;
  margin-top: clamp(1.5rem, 2.5vw, 2rem);
  margin-left: clamp(1rem, 5vw, 4rem);
  z-index: 2;
  color: #d6dae0;
  letter-spacing: -0.015em;
}

.hero-video {
  padding-top: clamp(1rem, 2.2vw, 2rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  background: #05080e;
}

.hero-video-frame {
  max-width: 1400px;
  margin: 0 auto;
  border: 1px solid #1b212b;
  background: #000;
}

.hero-video-frame video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.section-head {
  margin-bottom: 2.4rem;
}

.section-head p {
  margin: 0 0 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #a5acb8;
  font-size: 0.8rem;
}

.section-head h2 {
  margin: 0;
  text-transform: lowercase;
  font-size: clamp(1.7rem, 3.6vw, 3rem);
}

.works {
  background: #000;
  padding-top: clamp(1.1rem, 2.2vw, 2rem);
}

.works-heading {
  margin-bottom: clamp(1.3rem, 2.7vw, 2.2rem);
}

.works-title {
  margin: 0;
  font-family: "Aktiv Grotesk", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -0.026em;
  line-height: 1;
  font-size: clamp(3.3rem, 11vw, 11.5rem);
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  color: #ececec;
}

.works-project-row {
  margin-top: 0.55rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.works-project-row span {
  color: #d8dce2;
  font-size: clamp(0.82rem, 0.98vw, 1.2rem);
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.08em;
}

.works-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(2.1rem, 3.8vw, 4rem);
}

.work-entry {
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, 0.45fr) minmax(640px, 0.55fr);
  gap: clamp(1rem, 1.8vw, 1.35rem);
  align-items: start;
}

.work-entry::after {
  display: none;
}

.work-entry-left {
  padding-top: clamp(0.3rem, 0.8vw, 0.62rem);
}

.work-copy {
  margin: 0;
  max-width: 30ch;
  color: #f0f1f4;
  font-size: clamp(1rem, 1.46vw, 1.9rem);
  line-height: 1.22;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.works-meta-list {
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  gap: 1.2rem;
  list-style: none;
}

.works-meta-list li {
  position: relative;
  padding-left: 0.72rem;
  color: #d5d9e0;
  font-size: clamp(0.74rem, 0.82vw, 0.96rem);
  letter-spacing: 0.015em;
  line-height: 1.3;
}

.works-meta-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #e0e3e9;
}

.work-entry-right {
  padding-top: 0.18rem;
  max-width: 760px;
  width: 100%;
  justify-self: end;
}

.works-image-frame {
  margin: 0;
  overflow: hidden;
  background: #020304;
  border: 1px solid rgba(255, 255, 255, 0.04);
  cursor: none;
}

.works-image-frame {
  transform-style: preserve-3d;
  transition: transform 0.27s ease, box-shadow 0.27s ease;
}

.works-image-frame:hover {
  box-shadow: 0 25px 44px -28px rgba(0, 0, 0, 0.9);
}

.works-image-frame img,
.works-image-frame video {
  width: 100%;
  display: block;
  aspect-ratio: 1.92 / 1;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.95);
}

.works-image-frame.works-image-coming {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f0f0f;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  aspect-ratio: 1.92 / 1;
  min-height: 100%;
}

.works-image-coming .coming-plus {
  font-family: inherit;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  user-select: none;
}

.works-image-caption {
  margin: 0;
  padding: 0.62rem 0 0.92rem;
  color: #ededed;
  font-size: clamp(0.88rem, 1.18vw, 1.35rem);
  letter-spacing: -0.018em;
  line-height: 1;
  text-transform: uppercase;
  text-align: left;
}

.services {
  background: #000;
  padding-top: clamp(1.2rem, 2.8vw, 2.2rem);
}

.services-head {
  margin-bottom: clamp(2.2rem, 5vw, 4.5rem);
}

.services-title {
  margin: 0;
  font-family: "Aktiv Grotesk", system-ui, -apple-system, sans-serif;
  font-size: clamp(3.3rem, 11vw, 11.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-transform: uppercase;
  color: #ececec;
  overflow: hidden;
}

.services-kicker {
  margin: 0.95rem 0 0;
  color: #e6e6e6;
  font-size: clamp(1rem, 1.65vw, 2.2rem);
  letter-spacing: -0.02em;
}

.services-grid {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.services-row {
  display: grid;
  grid-template-columns: 0.24fr 0.56fr 0.7fr;
  gap: clamp(1rem, 2.2vw, 2.6rem);
  align-items: start;
  padding: clamp(1.25rem, 2.2vw, 2rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.services-num {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 3.8rem);
  line-height: 1;
  color: #f0f0f0;
  letter-spacing: -0.02em;
}

.services-name {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 2.8rem);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #f2f2f2;
}

.stat-num,
.stat-suf {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2.4rem, 5.2vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #f2f2f2;
}

.services-desc {
  margin: 0;
  font-size: clamp(1.08rem, 1.8vw, 2.7rem);
  line-height: 1.22;
  color: #8f949d;
  letter-spacing: -0.01em;
  max-width: 35ch;
}

.about {
  background: #000;
  padding-top: clamp(1rem, 3vw, 2.2rem);
  padding-bottom: clamp(1.2rem, 3vw, 2.2rem);
  overflow-x: clip;
}

.about-heading {
  margin-bottom: clamp(3rem, 6.6vw, 6.8rem);
}

.about-title {
  margin: 0;
  font-family: "Aktiv Grotesk", system-ui, -apple-system, sans-serif;
  font-size: clamp(3.3rem, 11vw, 11.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #ececef;
  white-space: nowrap;
  overflow: hidden;
}

.about-kicker {
  margin: clamp(0.8rem, 1.4vw, 1.3rem) 0 0;
  font-size: clamp(1rem, 1.65vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #e9eaee;
}

.about-lead {
  margin: clamp(1.4rem, 2.8vw, 2.4rem) 0 0;
  max-width: 28ch;
  font-size: clamp(1.7rem, 3.6vw, 4.8rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: #f0f1f5;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(460px, 1.05fr);
  align-items: stretch;
  gap: 0;
  margin-top: clamp(0.4rem, 1.4vw, 1.6rem);
}

.about-intro-media {
  margin: 0;
  min-height: clamp(560px, 52vw, 980px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 0;
  overflow: hidden;
}

.about-intro-media img,
.about-intro-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 21%;
  filter: saturate(0) contrast(1.07);
}

.about-intro-media video {
  filter: none;
}

.about-intro-copy {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(2.2rem, 4.3vw, 4.6rem) clamp(1.8rem, 3.5vw, 3.9rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.5rem, 2.9vw, 2.6rem);
}

.about-intro-copy p {
  margin: 0;
  max-width: 30ch;
  font-size: clamp(1.05rem, 1.55vw, 1.85rem);
  line-height: 1.28;
  letter-spacing: -0.015em;
  color: #f1f1f1;
}

.about-intro-btn {
  align-self: flex-start;
  margin-top: 0.2rem;
}

.about-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(5rem, 12vw, 10.6rem);
}

.about-socials {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.8vw, 1.8rem);
}

.about-socials a,
.about-back {
  font-size: clamp(0.76rem, 0.92vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aab0ba;
}

.about-back {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(1.1rem, 1.8vw, 2rem);
}

.about-back::before {
  content: "↑";
  font-size: 1.95em;
  line-height: 0.8;
}

.about-main {
  margin-top: clamp(3rem, 7vw, 5.8rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(1.2rem, 3vw, 3rem);
}

.about-note {
  margin: 0;
  max-width: 42ch;
  font-size: clamp(1rem, 1.62vw, 2.12rem);
  line-height: 1.34;
  letter-spacing: -0.012em;
  color: #d2d6dd;
}

.about-email {
  font-size: clamp(1.5rem, 3.2vw, 4rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #f2f2f2;
  white-space: nowrap;
}

.about-signature {
  margin: clamp(1.2rem, 2.8vw, 2.4rem) 0 0;
  font-family: "Aktiv Grotesk", system-ui, -apple-system, sans-serif;
  font-size: clamp(4.8rem, 14.5vw, 12.5rem);
  line-height: 0.86;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.about-signature span {
  color: transparent;
  background: linear-gradient(180deg, #e8e8e8 0%, #909090 22%, #2e2e2e 48%, #080808 68%, #000000 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.about-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: clamp(0.8rem, 1.8vw, 1.25rem);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: #aeb3bc;
  font-size: clamp(0.73rem, 0.86vw, 0.92rem);
  letter-spacing: 0.01em;
  flex-wrap: wrap;
}

.about-bottom p {
  margin: 0;
}

.about-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
}

.about-credit .credit-dot {
  width: 1.45rem;
  min-width: 1.45rem;
  height: 1.45rem;
  min-height: 1.45rem;
  flex: 0 0 auto;
  border-radius: 999px;
  display: inline-block;
  background: #a7ff64;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #dfffd0 34%, #8bff57 100%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 12px rgba(137, 255, 84, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.about-credit a {
  color: #d6dae1;
}


.cursor-follower {
  position: fixed;
  width: 30px;
  height: 30px;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: #e9e9e9;
  box-shadow: none;
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(-100px, -100px, 0);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cursor-follower::before {
  content: "";
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.2s ease, transform 0.24s ease;
}

.cursor-follower.is-media {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(248, 248, 248, 0.9);
  box-shadow: 0 18px 44px -22px rgba(0, 0, 0, 0.72);
  display: grid;
  place-items: center;
}

.cursor-follower.is-media::before {
  content: "";
  opacity: 1;
  transform: scale(1);
  width: 52px;
  height: 52px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none'%3E%3Cpath d='M14 50L48 16' stroke='%238c8c8c' stroke-width='8.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M26 16H48V38' stroke='%238c8c8c' stroke-width='8.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============ SECTION: MOBILE MENU ============ */
.mob-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.4rem;
  height: 2.4rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.2rem;
}

.mob-burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #f2f2f2;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: #060809;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}

.mob-menu.is-open {
  transform: translateX(0);
}

.mob-menu-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.4rem clamp(1.2rem, 5vw, 2.4rem) 2.4rem;
}

.mob-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
}

.mob-menu-logo {
  width: clamp(130px, 30vw, 190px);
  height: auto;
}

.mob-menu-close {
  width: 2.8rem;
  height: 2.8rem;
  background: none;
  border: 1px solid rgba(255,255,255,0.18);
  color: #f2f2f2;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.mob-menu-close:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.35);
}

.mob-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: clamp(2rem, 8vw, 4rem);
  flex: 1;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mob-nav-link {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: clamp(1.2rem, 4.5vw, 2rem) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  color: #f0f0f0;
  font-weight: 700;
  letter-spacing: -0.025em;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              color 0.2s ease;
}

.mob-menu.is-open .mob-nav-link:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.12s; }
.mob-menu.is-open .mob-nav-link:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.2s; }
.mob-menu.is-open .mob-nav-link:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.28s; }

.mob-nav-link:hover { color: #c8c8c8; }

.mob-nav-text {
  font-size: clamp(2.4rem, 11vw, 5rem);
  line-height: 1;
}

.mob-nav-num {
  font-size: clamp(0.75rem, 2.5vw, 1rem);
  font-weight: 400;
  color: #6b7280;
  letter-spacing: 0.02em;
  margin-left: 0.2rem;
  vertical-align: super;
}

.mob-menu-cta {
  display: inline-flex;
  align-items: center;
  margin-top: clamp(2rem, 6vw, 3.5rem);
  align-self: flex-start;
  padding: 0.85rem 1.6rem;
  border: 1px solid #f2f2f2;
  color: #f2f2f2;
  font-size: clamp(0.9rem, 3.5vw, 1.1rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.36s,
              transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.36s,
              background 0.2s ease, color 0.2s ease;
}

.mob-menu.is-open .mob-menu-cta {
  opacity: 1;
  transform: none;
}

.mob-menu-cta:hover {
  background: #f2f2f2;
  color: #050505;
}

/* ============ SECTION: SCROLL STAGGER ANIMATIONS ============ */
.stagger-item {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============ SECTION: PARALLAX ============ */
.about-intro-media {
  will-change: transform;
}

.about-intro-media img {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .stagger-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  .menu {
    display: none;
  }

  .contact-btn {
    display: none;
  }

  .mob-burger {
    display: flex;
  }

  .works-title {
    line-height: 1;
    white-space: normal;
  }

  .site-header {
    position: sticky;
    background: rgba(4, 6, 10, 0.78);
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: calc(100svh - var(--header-h));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
    gap: clamp(0.8rem, 2.2vw, 1.4rem);
    background: var(--bg);
  }

  .hero-grid,
  .hero-vignette {
    display: none;
  }

  .hero-meta {
    position: relative;
    right: auto;
    top: auto;
    gap: 0.7rem;
    max-width: none;
  }

  .hero-title {
    margin-top: 0;
  }

  .hero-copy {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: 56ch;
    line-height: 1.45;
    margin-top: 0;
    margin-left: 0;
  }

  .works-project-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.48rem 0.9rem;
  }

  .work-entry {
    grid-template-columns: 1fr;
  }

  .work-entry::after {
    display: none;
  }

  .services-title {
    font-size: clamp(2.4rem, 11vw, 6rem);
  }

  .services-row {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .services-num {
    font-size: clamp(1.2rem, 4.4vw, 2rem);
  }

  .services-name {
    font-size: clamp(1.35rem, 5.2vw, 2.2rem);
  }

  .services-desc {
    max-width: none;
    font-size: clamp(0.95rem, 3.4vw, 1.2rem);
  }

  .about-title {
    white-space: normal;
    font-size: clamp(2.4rem, 11vw, 6rem);
  }

  .about-lead {
    max-width: none;
    font-size: clamp(1.4rem, 5.5vw, 2.8rem);
  }

  .about-intro {
    grid-template-columns: 1fr;
  }

  .about-intro-media {
    min-height: clamp(300px, 64vw, 520px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 0;
  }

  .about-intro-copy p {
    max-width: none;
    font-size: clamp(0.95rem, 3.2vw, 1.4rem);
  }

  .about-main {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .about-email {
    white-space: normal;
  }

  .hero-location { text-align: left; }
}

@media (max-width: 640px) {
  .hero-title .line {
    font-size: clamp(3rem, 21vw, 7rem);
    line-height: 0.88;
  }

  .hero-meta {
    gap: 0.6rem;
  }

  .hero-meta li,
  .hero-meta p {
    font-size: clamp(0.82rem, 3.4vw, 1rem);
  }

  .hero-copy {
    font-size: clamp(0.88rem, 3.6vw, 1.05rem);
    line-height: 1.45;
  }

  .works-title {
    font-size: clamp(2rem, 9.5vw, 4rem);
    white-space: nowrap;
    overflow: hidden;
  }

  .work-copy {
    font-size: clamp(0.92rem, 3.8vw, 1.15rem);
    max-width: none;
  }

  .works-meta-list li {
    font-size: clamp(0.7rem, 2.8vw, 0.88rem);
  }

  .works-project-row {
    grid-template-columns: 1fr;
  }

  .services-kicker {
    margin-top: 0.6rem;
  }

  .about-kicker {
    font-size: 0.85rem;
  }

  .about-lead {
    font-size: clamp(1.1rem, 5.5vw, 1.6rem);
    line-height: 1.25;
  }

  .about-intro-copy {
    padding: 1rem;
  }

  .about-intro-copy p {
    font-size: clamp(0.94rem, 4vw, 1.15rem);
    line-height: 1.35;
  }

  .about-top {
    flex-wrap: nowrap;
    gap: 0.5rem;
    align-items: center;
  }

  .about-back {
    font-size: clamp(0.8rem, 3.4vw, 1.1rem);
    gap: 0.35rem;
    white-space: nowrap;
  }

  .about-back::before {
    font-size: 1.4em;
  }

  .about-socials {
    flex-wrap: nowrap;
    gap: clamp(0.5rem, 2.5vw, 0.9rem);
  }

  .about-socials a {
    font-size: clamp(0.7rem, 2.8vw, 0.88rem);
  }

  .about-signature {
    font-size: clamp(2.8rem, 14.2vw, 6.5rem);
    white-space: nowrap;
    overflow: visible;
    padding-top: 0.15em;
  }

  .about-bottom {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .cursor-follower {
    display: none;
  }
}
