:root {
  --primary: #988867;
  --black: #000000;
  --ink: #383834;
  --soft: #f2f1ef;
  --soft-2: #dedbd4;
  --gray: #8a8882;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(0, 0, 0, .18);
  --title: 'DM Serif Display', Georgia, serif;
  --short: 'Montserrat', Arial, sans-serif;
  --text: 'Archivo', Arial, sans-serif;
  --serif: 'IBM Plex Serif', Georgia, serif;
  --ease: cubic-bezier(.19, 1, .22, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: var(--text);
  font-weight: 300;
  line-height: 1.2;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a, button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
button { border: 0; background: transparent; color: inherit; cursor: pointer; }
img, video { max-width: 100%; display: block; }
::selection { background: var(--primary); color: var(--black); }
.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 10000;
  transform: translateY(-140%);
  padding: 12px 16px;
  background: var(--primary);
  color: var(--black);
  font-family: var(--short);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .25s var(--ease);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 5px; }
@media (pointer: fine) {
  body, a, button, input, textarea, select { cursor: none; }
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--soft);
  transition: opacity .8s var(--ease), visibility .8s var(--ease), transform .8s var(--ease);
}
.loader.is-hidden { opacity: 0; visibility: hidden; transform: translateY(-4vh); }
.loader__mark {
  width: clamp(520px, 18vw, 980px);
  height: auto;
  object-fit: contain;
  animation: loaderScale 1.8s var(--ease) forwards;
}
.loader__line {
  position: absolute;
  bottom: 12vh;
  width: min(320px, 60vw);
  height: 1px;
  overflow: hidden;
  background: rgba(242, 241, 239, .15);
}
.loader__line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform-origin: left;
  animation: loaderLine 1.3s var(--ease) forwards;
}
@keyframes loaderScale { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: scale(1); } }
@keyframes loaderLine { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.cursor-dot, .cursor-ring {
  display: none;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  left: 0;
  top: 0;
  transform: translate3d(-50%, -50%, 0);
  border-radius: 999px;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: var(--cursor-dot-w, 10px);
  height: var(--cursor-dot-h, 10px);
  background: var(--soft);
  border-radius: var(--cursor-radius, 999px);
  opacity: .95;
  transition: width .24s var(--ease), height .24s var(--ease), border-radius .24s var(--ease), background .24s var(--ease), opacity .24s var(--ease);
}
.cursor-ring {
  width: var(--cursor-ring-w, 44px);
  height: var(--cursor-ring-h, 44px);
  border: 1px solid rgba(242, 241, 239, .7);
  border-radius: var(--cursor-radius, 999px);
  opacity: .9;
  transition: transform .15s linear, opacity .25s var(--ease), border .25s var(--ease), width .24s var(--ease), height .24s var(--ease), border-radius .24s var(--ease), background .24s var(--ease);
}
.cursor-dot.is-over-text { --cursor-dot-w: 18px; --cursor-dot-h: 18px; background: var(--primary); }
.cursor-ring.is-over-link {
  width: var(--cursor-target-w, 70px);
  height: var(--cursor-target-h, 70px);
  border-radius: var(--cursor-target-radius, 999px);
  border-color: var(--primary);
  background: rgba(152, 136, 103, .08);
}
.cursor-dot.is-over-link {
  width: var(--cursor-target-w, 70px);
  height: var(--cursor-target-h, 70px);
  border-radius: var(--cursor-target-radius, 999px);
  background: rgba(152, 136, 103, .18);
  box-shadow: inset 0 0 0 1px var(--primary);
  mix-blend-mode: normal;
}
@media (pointer: fine) {
  .cursor-dot, .cursor-ring { display: block; }
}

.interactive-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 30%), rgba(152,136,103,.12), transparent 28vw);
}
.orb {
  position: absolute;
  width: 38vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .15;
  background: var(--primary);
  animation: drift 18s ease-in-out infinite alternate;
}
.orb--one { left: -12vw; top: 20vh; }
.orb--two { right: -10vw; top: 48vh; background: #ffffff; animation-delay: -6s; }
.orb--three { left: 35vw; bottom: -22vh; background: #6f695d; animation-delay: -10s; }
@keyframes drift { to { transform: translate3d(8vw, -5vh, 0) scale(1.12); } }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 28px clamp(22px, 4vw, 64px);
  color: var(--soft);
  background: transparent;
  transition: background .55s var(--ease), color .55s var(--ease), padding .55s var(--ease), backdrop-filter .55s var(--ease), border .55s var(--ease);
}
.site-header.is-scrolled,
.site-header:hover,
body.menu-open .site-header {
  padding-top: 16px;
  padding-bottom: 16px;
  color: var(--black);
  background: rgba(242, 241, 239, .92);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(56, 56, 52, .08);
}
.brand {
  position: relative;
  display: inline-block;
  width: clamp(92px, 9vw, 150px);
  height: clamp(36px, 4vw, 56px);
}


.brand__logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}

.brand__logo--solid {
  opacity: 0;
  transform: translateY(10px);
}
.site-header.is-scrolled .brand__logo--light,
.site-header:hover .brand__logo--light,
body.menu-open .brand__logo--light {
  opacity: 0;
  transform: translateY(-10px);
}

.site-header.is-scrolled .brand__logo--solid,
.site-header:hover .brand__logo--solid,
body.menu-open .brand__logo--solid {
  opacity: 1;
  transform: translateY(0);
}


.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 44px);
}
.nav-link {
  position: relative;
  font-family: var(--short);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .82;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}
.language-switch {
  display: inline-flex;
  border: 1px solid currentColor;
  border-radius: 999px;
  overflow: hidden;
  font-family: var(--short);
  font-size: .65rem;
  letter-spacing: .15em;
}
.language-switch a { padding: 8px 10px; opacity: .7; }
.language-switch .is-current { background: currentColor; color: var(--black); opacity: 1; mix-blend-mode: screen; }
.site-header.is-scrolled .language-switch .is-current,
.site-header:hover .language-switch .is-current { color: var(--soft); mix-blend-mode: normal; }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 1px;
  background: currentColor;
  transition: transform .45s var(--ease), opacity .45s var(--ease);
}
body.menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
body.menu-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--soft);
  opacity: 0;
  visibility: hidden;
  transition: opacity .55s var(--ease), visibility .55s var(--ease);
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu__inner {
  min-height: 100dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4vh;
  text-align: center;
}
.mobile-menu__inner > a {
  font-family: var(--title);
  font-size: clamp(3.5rem, 18vw, 8rem);
  letter-spacing: -.07em;
  transform: translateY(26px);
  opacity: 0;
  transition: transform .65s var(--ease), opacity .65s var(--ease), color .25s var(--ease);
  transition-delay: calc(var(--i) * 70ms);
}
body.menu-open .mobile-menu__inner > a { transform: translateY(0); opacity: 1; }
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu__meta {
  position: absolute;
  bottom: 34px;
  display: flex;
  gap: 20px;
  font-family: var(--short);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .68rem;
}
.mobile-menu__meta a {
  font-family: var(--short);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .76;
  transition: color .25s var(--ease), opacity .25s var(--ease);
}
.mobile-menu__meta a:hover { color: var(--primary); opacity: 1; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 180px clamp(22px, 6vw, 92px) clamp(40px, 8vh, 90px);
  overflow: hidden;
  color: var(--soft);
  background: var(--black);
}
.hero__video, .hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero--video {
  background:
    linear-gradient(120deg, rgba(0,0,0,.45), rgba(152,136,103,.25), rgba(0,0,0,.6)),
    url('/assets/images/hero-poster.svg') center/cover;
}
.hero__video { z-index: 0; opacity: .5; filter: grayscale(1) contrast(1.08); }
.hero__shade {
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.12) 42%, rgba(0,0,0,.78));
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--short);
  font-size: clamp(.66rem, .75vw, .78rem);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: .58;
}
h1, h2 {
  margin: 0;
  font-family: var(--title);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .88;
}
h1 { font-size: clamp(4.7rem, 11vw, 13rem); }
h2 { font-size: clamp(3.4rem, 7.5vw, 9rem);  }
h3 {
  margin: 0;
  font-family: var(--short);
  font-size: clamp(1rem, 1.3vw, 1.35rem);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 36px;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}
.hero__meta span {
  padding: 10px 16px;
  border: 1px solid rgba(242, 241, 239, .35);
  border-radius: 999px;
  background: rgba(242, 241, 239, .05);
  backdrop-filter: blur(8px);
}
.magnetic-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--short);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.magnetic-button:hover { background: var(--primary); color: var(--black); transform: translateY(-3px); }
.magnetic-button--light:hover { background: var(--soft); color: var(--black); }
.scroll-hint {
  position: absolute;
  right: clamp(22px, 4vw, 64px);
  bottom: 50px;
  z-index: 2;
  writing-mode: vertical-rl;
  font-family: var(--short);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .68rem;
}
@keyframes slowZoom { to { transform: scale(1.08); } }

.section-light, .section-dark {
  position: relative;
  padding: clamp(86px, 11vw, 170px) clamp(22px, 5vw, 76px);
}
.section-light { background: var(--soft); color: var(--ink); }
.section-dark { background: var(--black); color: var(--soft); }
.image-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,0,0,.78), rgba(0,0,0,.88)), var(--bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: .95;
}
.image-section > * { position: relative; z-index: 1; }
.section-top {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: clamp(42px, 6vw, 90px);
}

.phrase-band { padding-top: clamp(72px, 9vw, 130px); padding-bottom: clamp(72px, 9vw, 130px); }
.phrase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(242,241,239,.16);
  border: 1px solid rgba(242,241,239,.16);
}
.phrase-grid span {
  min-height: clamp(240px, 26vw, 380px);
  display: flex;
  align-items: flex-end;
  padding: clamp(24px, 3vw, 44px);
  background: rgba(0,0,0,.35);
  font-family: var(--title);
  font-size: clamp(1.8rem, 3.2vw, 4rem);
  line-height: .94;
  letter-spacing: -.055em;
  overflow-wrap: anywhere;
}

.moving-gallery { overflow: hidden; padding-left: 0; padding-right: 0; }
.moving-gallery .section-top { padding: 0 clamp(22px, 5vw, 76px); }
.gallery-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.gallery-card {
  position: relative;
  flex: 0 0 clamp(280px, 28vw, 460px);
  height: clamp(390px, 42vw, 620px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  overflow: hidden;
  color: var(--soft);
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
  transition: filter .45s var(--ease), transform .45s var(--ease);
}
.gallery-card:hover { filter: grayscale(0); transform: translateY(-10px); }
.gallery-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.78));
}
.gallery-card span, .gallery-card strong, .gallery-card em { position: relative; z-index: 1; }
.gallery-card span { font-family: var(--serif); opacity: .8; }
.gallery-card strong { font-family: var(--short); text-transform: uppercase; letter-spacing: .08em; margin-top: 12px; }
.gallery-card em { font-family: var(--serif); font-style: normal; color: var(--soft-2); }
@keyframes marquee { to { transform: translateX(calc(-50% - 12px)); } }

.intro-split {
  display: grid;
  grid-template-columns: minmax(280px, .86fr) 1fr;
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}
.intro-split__visual, .profile__image {
  min-height: clamp(420px, 56vw, 760px);
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
  box-shadow: var(--shadow);
}
.intro-split__text, .profile__content { display: grid; gap: 28px; }
.text-stack {
  display: grid;
  gap: 14px;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.1vw, 2.4rem);
  color: rgba(56,56,52,.82);
}
.text-stack span {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(56,56,52,.16);
}
.text-stack--large { font-size: clamp(1.55rem, 2.5vw, 3rem); }
.text-link {
  width: max-content;
  font-family: var(--short);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 8px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(242,241,239,.16);
  border: 1px solid rgba(242,241,239,.16);
}
.service-grid--light {
  background: rgba(56,56,52,.1);
  border-color: rgba(56,56,52,.1);
}
.service-card {
  min-height: 360px;
  padding: clamp(26px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 26px;
  background: rgba(0,0,0,.36);
  backdrop-filter: blur(10px);
  transition: transform .45s var(--ease), background .45s var(--ease), color .45s var(--ease);
}
.service-grid--light .service-card { background: var(--soft); color: var(--ink); }
.service-card:hover { transform: translateY(-12px); background: var(--primary); color: var(--black); }
.service-card__kicker {
  font-family: var(--serif);
  font-size: 1rem;
  opacity: .8;
}
.service-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
}
.service-card li::before { content: '— '; opacity: .6; }
.service-card strong {
  margin-top: auto;
  font-family: var(--short);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
}

.media-space {
  display: grid;
  grid-template-columns: .65fr 1.25fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}
.media-space__copy { position: sticky; top: 120px; display: grid; gap: 28px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-row span {
  padding: 9px 14px;
  border: 1px solid rgba(56,56,52,.16);
  border-radius: 999px;
  font-family: var(--short);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .68rem;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.media-tile {
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: var(--soft);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  filter: grayscale(1);
  transition: filter .45s var(--ease), transform .45s var(--ease);
}
.media-tile:hover { filter: grayscale(0); transform: scale(.985); }
.media-tile--large { grid-column: span 2; min-height: 620px; }
.media-tile span {
  font-family: var(--short);
  text-transform: uppercase;
  letter-spacing: .14em;
  transform: translateY(16px);
  opacity: .82;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.media-tile:hover span { transform: translateY(0); opacity: 1; }

.statement {
  min-height: 90svh;
  display: grid;
  place-items: center;
  padding: clamp(86px, 12vw, 180px) clamp(22px, 6vw, 92px);
  color: var(--black);
  background-size: cover;
  background-position: center;
  text-align: center;
  isolation: isolate;
}
.statement::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.58);
  z-index: -1;
}
.statement > div { display: grid; justify-items: center; gap: 30px; max-width: 1120px; }
.statement--compact { min-height: 70svh; }

.subhero {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: flex-end;
  padding: 170px clamp(22px, 6vw, 92px) clamp(48px, 8vh, 86px);
  color: var(--gray);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.subhero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.42), rgba(0,0,0,.72));
}
.subhero__content { display: grid; gap: 22px; }

.profile {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}
.process-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(242,241,239,.14);
  border: 1px solid rgba(242,241,239,.14);
}
.process-line article {
  min-height: 300px;
  display: grid;
  align-content: space-between;
  padding: clamp(24px, 3vw, 42px);
  background: rgba(0,0,0,.34);
}
.process-line span { font-family: var(--serif); font-size: 3rem; color: var(--primary); }
.process-line em { font-style: normal; font-family: var(--serif); color: var(--soft-2); }

.works-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 40px;
}
.works-filter { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-button {
  padding: 12px 16px;
  border: 1px solid rgba(56,56,52,.16);
  border-radius: 999px;
  font-family: var(--short);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.filter-button.is-active, .filter-button:hover { background: var(--black); color: var(--soft); }
.works-grid-section { padding-top: 24px; }
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.flip-card { perspective: 1200px; min-height: clamp(360px, 42vw, 600px); }
.flip-card.is-hidden { display: none; }
.flip-card__button { width: 100%; height: 100%; min-height: inherit; display: block; }
.flip-card__inner {
  position: relative;
  display: block;
  height: 100%;
  min-height: inherit;
  transform-style: preserve-3d;
  transition: transform .8s var(--ease);
}
.flip-card.is-flipped .flip-card__inner { transform: rotateY(180deg); }
.flip-card:hover .flip-card__button { transform: translateY(-8px); }
.flip-card__button { transition: transform .45s var(--ease); }
.flip-card__face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 28px;
  overflow: hidden;
  backface-visibility: hidden;
  background-size: cover;
  background-position: center;
  color: var(--soft);
}
.flip-card__front { filter: grayscale(1); }
.flip-card__front::before, .flip-card__back::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.76));
}
.flip-card__back {
  transform: rotateY(180deg);
  filter: grayscale(0) saturate(1.08);
}
.flip-card__back::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(152,136,103,.1);
}
.work-no, .work-title, .work-type, .flip-card strong, .flip-card em, .flip-card small { position: relative; z-index: 1; }
.work-no { font-family: var(--serif); font-size: 1rem; margin-bottom: auto; }
.work-title, .flip-card strong { font-family: var(--short); text-transform: uppercase; letter-spacing: .08em; font-size: clamp(1rem, 1.4vw, 1.35rem); }
.work-type, .flip-card em { font-family: var(--serif); font-style: normal; font-size: 1.1rem; margin-top: 8px; }
.flip-card small { margin-top: 18px; font-family: var(--short); text-transform: uppercase; letter-spacing: .16em; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.contact-card {
  min-height: 300px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: clamp(26px, 4vw, 52px);
  border: 1px solid rgba(56,56,52,.12);
  background: rgba(255,255,255,.32);
  transition: background .35s var(--ease), transform .35s var(--ease), color .35s var(--ease);
}
.contact-card:hover { background: var(--primary); color: var(--black); transform: translateY(-8px); }
.contact-card a, .contact-card strong { font-family: var(--title); font-size: clamp(2.1rem, 3.4vw, 4.6rem); line-height: .9; letter-spacing: -.06em; word-break: break-word; }
.contact-card i { font-size: 2rem; opacity: .55; }
.contact-form-section { display: grid; gap: 44px; }
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
}
.contact-form label { display: grid; gap: 10px; }
.contact-form .full { grid-column: span 2; }
.contact-form span { font-family: var(--short); text-transform: uppercase; letter-spacing: .15em; font-size: .68rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  border: 1px solid rgba(242,241,239,.24);
  background: rgba(242,241,239,.08);
  color: var(--soft);
  padding: 18px 18px;
  outline: 0;
  border-radius: 0;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--primary); }
.contact-form option { color: var(--black); }
.contact-form button { width: max-content; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.news-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(26px, 3vw, 44px);
  background: rgba(255,255,255,.3);
  border: 1px solid rgba(56,56,52,.12);
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.news-card:hover { transform: translateY(-10px); background: var(--soft-2); }
.news-card__date, .news-card em, .news-card span:last-child {
  font-family: var(--short);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .68rem;
  font-style: normal;
}
.news-card strong { font-family: var(--title); font-size: clamp(2.4rem, 3vw, 4rem); line-height: .9; letter-spacing: -.06em; }
.keyword-cloud { display: grid; gap: 48px; }
.cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.cloud span {
  border: 1px solid rgba(242,241,239,.18);
  border-radius: 999px;
  padding: 10px 14px;
  font-family: var(--short);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--soft-2);
}

.legal-section { padding-top: clamp(72px, 8vw, 120px); }
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.legal-card {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(26px, 3vw, 44px);
  border: 1px solid rgba(56,56,52,.12);
  background: rgba(255,255,255,.32);
}
.legal-card span:not(.footer-label),
.legal-card a {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.25vw, 1.3rem);
  color: rgba(56,56,52,.82);
}
.legal-card a {
  width: max-content;
  max-width: 100%;
  border-bottom: 1px solid rgba(56,56,52,.24);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.legal-card a:hover { color: var(--primary); border-color: var(--primary); }

.site-footer {
  padding-top: clamp(72px, 8vw, 120px);
  padding-bottom: 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 80px);
  border-top: 1px solid rgba(242,241,239,.16);
  padding-top: 56px;
}
.footer-column {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 12px;
}
.footer-brand {
  font-family: var(--title);
  font-size: clamp(2.8rem, 5vw, 6rem);
  line-height: .88;
  letter-spacing: -.06em;
  font-weight: 400;
}
.footer-mail {
  width: max-content;
  max-width: 100%;
  margin-top: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(242,241,239,.32);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.25vw, 1.35rem);
  line-height: 1.1;
  word-break: break-word;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.footer-mail:hover,
.footer-social:hover,
.footer-list a:hover,
.footer-language a:hover { color: var(--primary); border-color: var(--primary); }
.footer-label {
  margin-bottom: 12px;
  font-family: var(--short);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  color: var(--primary);
}
.footer-list {
  display: grid;
  gap: 10px;
}
.footer-list a,
.footer-social,
.footer-language a {
  font-family: var(--short);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(242,241,239,.78);
  transition: color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.footer-list a:hover,
.footer-social:hover { transform: translateX(4px); }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.footer-language {
  display: inline-flex;
  gap: 8px;
  margin-top: 24px;
}
.footer-language a {
  min-width: 42px;
  padding: 9px 11px;
  border: 1px solid rgba(242,241,239,.2);
  border-radius: 999px;
  text-align: center;
}
.footer-language .is-current {
  color: var(--black);
  background: var(--primary);
  border-color: var(--primary);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 68px;
  padding-top: 22px;
  border-top: 1px solid rgba(242,241,239,.14);
  font-family: var(--short);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .66rem;
  color: rgba(242,241,239,.7);
}

.footer-bottom-2 {
  display: block;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.credits-link {
  color: #ad8330 !important;
  text-decoration: none;
}

.credits-link i {
  color: #ad8330;
}


@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-toggle { display: inline-flex; }
  .service-grid, .works-grid, .news-grid, .phrase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-line { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .media-space, .intro-split, .profile { grid-template-columns: 1fr; }
  .media-space__copy { position: relative; top: auto; }
  .contact-grid, .legal-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { cursor: auto; }
  a, button, input, textarea, select { cursor: pointer; }
  .cursor-dot, .cursor-ring { display: none; }
  .site-header { padding: 18px 18px; }
  .site-header.is-scrolled, .site-header:hover, body.menu-open .site-header { padding: 12px 18px; }

  .language-switch { display: none; }
  .hero, .subhero { padding-left: 18px; padding-right: 18px; }
  h1 { font-size: clamp(4rem, 20vw, 6.8rem); }
  h2 { font-size: clamp(3.1rem, 15vw, 5.3rem); }
  .section-light, .section-dark { padding-left: 18px; padding-right: 18px; }
  .hero__meta { gap: 8px; margin: 24px 0 28px; }
  .hero__meta span { padding: 9px 12px; }
  .scroll-hint { display: none; }
  .service-grid, .works-grid, .news-grid, .process-line, .contact-form, .phrase-grid, .legal-grid { grid-template-columns: 1fr; }
  .contact-form .full { grid-column: auto; }
  .works-intro { flex-direction: column; align-items: flex-start; }
  .media-grid { grid-template-columns: 1fr; }
  .media-tile--large { grid-column: auto; min-height: 430px; }
  .media-tile { min-height: 300px; }
  .intro-split__visual, .profile__image { min-height: 420px; }
  .service-card, .process-line article, .news-card, .contact-card, .phrase-grid span { min-height: 270px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-column { justify-items: center; }
  .footer-list { justify-items: center; }
  .footer-list a:hover, .footer-social:hover { transform: none; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-mail { width: auto; }
  .mobile-menu__meta { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .gallery-track { animation: none; flex-wrap: wrap; width: 100%; }
  .cursor-dot, .cursor-ring { display: none !important; }
  .interactive-bg, .orb { animation: none !important; }
}



.hero .magnetic-button {
  --mag-x: 0px;
  --mag-y: 0px;

  opacity: 0;
  transform: translate3d(var(--mag-x), calc(28px + var(--mag-y)), 0);
  animation: heroButtonSlideUp 1850ms cubic-bezier(.16, 1, .3, 1) 3650ms forwards;
}

@keyframes heroButtonSlideUp {
  from {
    opacity: 0;
    transform: translate3d(var(--mag-x), calc(28px + var(--mag-y)), 0);
  }

  to {
    opacity: 1;
    transform: translate3d(var(--mag-x), var(--mag-y), 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero .magnetic-button {
    opacity: 1;
    transform: none;
    animation: none;
  }
}


.parallax-bg {
  background-image: var(--bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}


.media-video-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(36px, 7vw, 110px);
  overflow: hidden;
  isolation: isolate;
}

.media-video-section::before {
  content: '';
  position: absolute;
  width: clamp(280px, 42vw, 720px);
  aspect-ratio: 1;
  right: -14vw;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(152,136,103,.22), transparent 68%);
  z-index: -1;
}

.media-video-section::after {
  content: 'YUQUA';
  position: absolute;
  right: clamp(18px, 5vw, 76px);
  bottom: clamp(28px, 5vw, 70px);
  font-family: var(--title);
  font-size: clamp(5rem, 16vw, 18rem);
  line-height: .8;
  letter-spacing: -.08em;
  color: rgba(56,56,52,.045);
  z-index: -1;
  pointer-events: none;
}

.media-video-section__copy {
  display: grid;
  gap: 28px;
}

.media-video-frame {
  position: relative;
  width: min(100%, 980px);
  aspect-ratio: 1.5 / 1;
  justify-self: end;
  overflow: hidden;
  background: var(--black);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.media-video-frame::before {
  content: '';
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(242,241,239,.34);
  pointer-events: none;
}

.media-video-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.42)),
    linear-gradient(120deg, rgba(152,136,103,.18), transparent 45%);
  pointer-events: none;
}

.media-video-section__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  transition: filter .55s var(--ease), transform .8s var(--ease);
}

.media-video-frame:hover .media-video-section__video {
  filter: grayscale(0) contrast(1);
  transform: scale(1.045);
}

.media-video-frame__label {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 3;
  padding: 10px 14px;
  border: 1px solid rgba(242,241,239,.34);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(0,0,0,.24);
  backdrop-filter: blur(12px);
  font-family: var(--short);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}

@media (max-width: 1100px) {
  .media-video-section {
    grid-template-columns: 1fr;
  }

  .media-video-frame {
    justify-self: start;
    width: min(100%, 620px);
  }
}

@media (max-width: 720px) {
  .media-video-frame {
    transform: none;
    width: 100%;
  }

  .media-video-frame::before {
    inset: 12px;
  }

  .media-video-frame__label {
    left: 20px;
    bottom: 20px;
  }
}