: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), backdrop-filter .55s var(--ease), border .55s var(--ease);
}
.site-header.is-scrolled,
.site-header:hover,
body.menu-open .site-header {
  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: 150px;
  height: 75px;
}


.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 var(--primary);
  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(--primary); opacity: 1; mix-blend-mode: screen; }
.site-header.is-scrolled .language-switch .is-current,
.site-header:hover .language-switch .is-current {  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,.15), rgba(152,136,103,.25), rgba(0,0,0,.4)),
    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(3.6rem, 8vw, 9rem); }

h2 { font-size: clamp(2.7rem, 5.8vw, 6.8rem); }

h3 {
  margin: 0;
  font-family: var(--short);
  font-size: clamp(.9rem, 1vw, 1.1rem);
  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(--white); }
.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--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(--white);
  background-size: cover;
  background-position: center;
  isolation: isolate;
  overflow: hidden;
}

.subhero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.42),
    rgba(0, 0, 0, 0.72)
  );
}

.subhero__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
}
.profile {
  display: grid;
  grid-template-columns: 1fr 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__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 { 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(--white); transform: translateY(-8px); }
.contact-card a, .contact-card strong { font-family: var(--title); font-size: clamp(1.5rem, 2vw, 2em); 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; 
  padding-inline: 300px;

}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.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-bottom: 28px;
  padding-top: 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 80px);
  justify-content:space-around;
  padding-left: 50px;
    padding-top: 28px;

}
.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; }

  .language-switch { display: none; }
  .hero, .subhero { padding-left: 18px; padding-right: 18px; }
  h1 { font-size: clamp(3.2rem, 15vw, 5.2rem); }
  h2 { font-size: clamp(2.6rem, 12vw, 4.1rem); }
  h3 { font-size: .9rem; }
  .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; 
  
    padding-left: 0;
}
  .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 (max-width: 900px) {
  .parallax-bg {
    background-attachment: scroll;
    background-position: center center;
  }
}

.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);
  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-section__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.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;
  }
}


.about-mosaic {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: var(--soft);
  color: var(--ink);
}

.about-mosaic__card {
  position: relative;
  height: clamp(420px, 32vw, 460px);
  overflow: hidden;
  isolation: isolate;
}




.about-mosaic__card--image {
  background: var(--soft-2);
}

.about-mosaic__card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transform: scale(1.01);
  transition:
    filter .65s var(--ease),
    transform .8s var(--ease);
}

.about-mosaic__card--image:hover img {
  filter: grayscale(0);
  transform: scale(1.055);
}

.about-mosaic__card--text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: clamp(28px, 3vw, 44px);
  padding: clamp(26px, 4vw, 54px);
  text-align: center;

  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.7), transparent 58%),
    var(--soft);

  transition:
    background .55s var(--ease),
    color .55s var(--ease),
    transform .55s var(--ease);
}

.about-mosaic__card--text:hover {
  background: var(--primary);
  color: var(--white);
}

.about-mosaic__logo-box {
  position: absolute;
  top: clamp(22px, 2.4vw, 34px);
  left: 50%;
  transform: translateX(-50%);

  width: clamp(76px, 6vw, 104px);
  min-height: 32px;
  display: grid;
  place-items: center;

  padding: 6px 10px;
  border: 1px solid var(--primary);
  background: transparent;

  transition:
    border-color .45s var(--ease),
    transform .45s var(--ease);
}

.about-mosaic__card--text:hover .about-mosaic__logo-box {
  border-color: var(--white);
  transform: translateX(-50%) translateY(-3px);
}

.about-mosaic__logo {
  grid-area: 1 / 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: opacity .35s var(--ease);
}

.about-mosaic__logo--white {
  opacity: 0;
}

.about-mosaic__card--text:hover .about-mosaic__logo--dark {
  opacity: 0;
}

.about-mosaic__card--text:hover .about-mosaic__logo--white {
  opacity: 1;
}

.about-mosaic__card p {
  max-width: 32ch;
  margin: 0;
  text-align: center;

  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.05vw, 2.25rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -.025em;

  color: rgba(56,56,52,.86);
  transition: color .45s var(--ease);
}

.about-mosaic__card--text:hover p {
  color: var(--white);
}

@media (max-width: 1100px) {
  .about-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .about-mosaic {
    grid-template-columns: 1fr;
  }

  .about-mosaic__card {
    min-height: 320px;
  }

  .about-mosaic__card--text {
    padding: 88px 24px 52px;
  }
}



.design-gallery.section-light {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.design-gallery__top {
  width: min(1500px, 100%);
  margin: 0 auto;
  padding: 0 clamp(22px, 5vw, 76px);
  display: grid;
  gap: 18px;
}

.design-gallery__top p {
  max-width: 520px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  line-height: 1.35;
  color: rgba(56,56,52,.72);
}

.design-gallery__viewport {
  position: relative;
  width: 100%;
  margin-top: clamp(42px, 6vw, 82px);
  outline: 0;
  touch-action: pan-y;
}

.design-gallery__viewport:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -8px;
}

.design-gallery__stage {
  position: relative;
  height: clamp(440px, 54vw, 720px);
  perspective: 1500px;
  transform-style: preserve-3d;
}

.design-gallery__card {
  --gallery-x: 0px;
  --gallery-z: 0px;
  --gallery-rotate: 0deg;
  --gallery-scale: 1;
  --gallery-opacity: 1;

  position: absolute;
  top: 0;
  left: 50%;
  width: 50vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 3vw, 38px);
  overflow: hidden;
  color: var(--soft);
  background: var(--black);
  border: 1px solid rgba(56,56,52,.14);
  box-shadow: 0 34px 90px rgba(0,0,0,.2);
  transform:
    translateX(calc(-50% + var(--gallery-x)))
    translateZ(var(--gallery-z))
    rotateY(var(--gallery-rotate))
    scale(var(--gallery-scale));
  opacity: var(--gallery-opacity);
  transition:
    transform .75s var(--ease),
    opacity .55s var(--ease),
    border-color .45s var(--ease),
    box-shadow .45s var(--ease);
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.design-gallery__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.05);
  transform: scale(1.04);
  transition:
    filter .65s var(--ease),
    transform .85s var(--ease);
}

.design-gallery__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.24)),
    linear-gradient(120deg, rgba(152,136,103,.22), transparent 48%);
  pointer-events: none;
}

.design-gallery__card.is-active {
  border-color: var(--primary);
  box-shadow: 0 42px 110px rgba(0,0,0,.28);
}

.design-gallery__card.is-active::before,
.design-gallery__card:hover::before {
  filter: grayscale(0) contrast(1);
  transform: scale(1.09);
}

.design-gallery__card.is-away {
  pointer-events: none;
}

.design-gallery__number,
.design-gallery__content {
  position: relative;
  z-index: 1;
}

.design-gallery__number {
  width: max-content;
  padding: 9px 13px;
  border: none;
  background: none;

}



.design-gallery__content {
  display: grid;
  gap: 10px;
  max-width: 85%;
}

.design-gallery__title {
  width: max-content;
  max-width: 100%;
  font-family: var(--short);
  font-size: clamp(1.15rem, 1.8vw, 1.9rem);
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--soft);
  transition: color .35s var(--ease), transform .35s var(--ease);
}

.design-gallery__title:hover {
  color: var(--primary);
  transform: translateX(4px);
}
.design-gallery__content em {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.3vw, 1.35rem);
  font-style: normal;
  color: var(--soft-2);
}

.design-gallery__controls {
  width: min(1500px, 100%);
  margin: clamp(28px, 4vw, 54px) auto 0;
  padding: 0 clamp(22px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
}

.design-gallery__button {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(56,56,52,.2);
  border-radius: 999px;
  color: var(--ink);
  transition:
    background .35s var(--ease),
    border-color .35s var(--ease),
    color .35s var(--ease),
    transform .35s var(--ease);
}

.design-gallery__button:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--black);
  transform: translateY(-3px);
}

.design-gallery__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.design-gallery__dot {
  width: 9px;
  height: 9px;
  border: 1px solid rgba(56,56,52,.32);
  border-radius: 999px;
  background: transparent;
  transition:
    width .35s var(--ease),
    background .35s var(--ease),
    border-color .35s var(--ease);
}

.design-gallery__dot.is-active {
  width: 34px;
  background: var(--primary);
  border-color: var(--primary);
}

@media (max-width: 720px) {
  .design-gallery__stage {
    height: 440px;
  }

  .design-gallery__card {
    width: min(82vw, 360px);
    padding: 22px;
  }

  .design-gallery__content {
    max-width: 100%;
  }

  .design-gallery__controls {
    justify-content: space-between;
    gap: 14px;
  }

  .design-gallery__button {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }

  .design-gallery__dots {
    max-width: 56vw;
    overflow: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .design-gallery__card {
    transition: none;
  }

  .design-gallery__card::before {
    transition: none;
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.footer_logo {
  position: absolute;
  right: clamp(22px, 5vw, 76px);
  bottom: clamp(86px, 8vw, 140px);
  z-index: 0;

  width: clamp(180px, 22vw, 360px);
  max-width: calc(100% - 44px);

  pointer-events: none;
  opacity: .1;
}

.footer_logo::after {
  content: '';
  position: absolute;
  inset: -8%;
  background:
    linear-gradient(120deg, rgba(0,0,0,.22), rgba(0,0,0,.08) 48%, rgba(0,0,0,.24)),
    radial-gradient(circle at 50% 50%, transparent 0 38%, rgba(0,0,0,.08) 76%);
  pointer-events: none;
}

.footer_logo img {
  width: 100%;
  height: auto;
}

.footer-grid,
.footer-bottom,
.footer-bottom-2 {
  position: relative;
  z-index: 1;
}

.footer-column:last-child {
  position: relative;
  z-index: 2;
}

@media (max-width: 720px) {
  .footer_logo {
    right: 18px;
    bottom: 150px;
    width: min(230px, 58vw);
    opacity: .08;
  }
}




.statement {
  position: relative;
  min-height: 90svh;
  display: grid;
  place-items: center;
  padding: clamp(86px, 12vw, 180px) clamp(22px, 6vw, 92px);
  color: var(--soft);
  background-size: cover;
  background-position: center;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}

.statement::before {
  display: none;
}

.parallax__shade {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  max-width: none;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.48), rgba(0,0,0,.22)),
    radial-gradient(circle at 50% 48%, rgba(0,0,0,.08), rgba(0,0,0,.78) 72%);
}

.statement__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 30px;
  max-width: 1120px;
}

.statement__content h2 {
  text-shadow: 0 18px 60px rgba(0,0,0,.55);
}

.statement__content .eyebrow {
  color: var(--soft-2);
}

.service-rhythm {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-top: clamp(90px, 11vw, 170px);
  padding-bottom: clamp(90px, 11vw, 170px);
  background:
    radial-gradient(circle at 15% 10%, rgba(152,136,103,.18), transparent 32vw),
    radial-gradient(circle at 86% 52%, rgba(152,136,103,.12), transparent 28vw),
    var(--black);
}

.service-rhythm::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.82)),
    repeating-linear-gradient(
      90deg,
      rgba(242,241,239,.035) 0,
      rgba(242,241,239,.035) 1px,
      transparent 1px,
      transparent 14vw
    );
}

.service-rhythm__intro {
  display: grid;
  gap: 22px;
  margin-bottom: clamp(56px, 8vw, 120px);
}

.service-rhythm__list {
  display: grid;
  gap: clamp(34px, 5vw, 72px);
}

.service-rhythm__item {
  --shift: clamp(18px, 5vw, 74px);

  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(320px, 1fr);
  align-items: stretch;
  gap: 0;
  max-width: 1320px;
  margin-right: auto;
  border: 1px solid rgba(242,241,239,.14);
  background: rgba(242,241,239,.045);
  backdrop-filter: blur(16px);
  box-shadow: 0 34px 100px rgba(0,0,0,.2);
  transform: translateX(var(--shift));
  transition:
    border-color .45s var(--ease),
    background .45s var(--ease),
    transform .45s var(--ease);
}

.service-rhythm__item--reverse {
  grid-template-columns: minmax(320px, 1fr) minmax(260px, .7fr);
  margin-left: auto;
  margin-right: 0;
  transform: translateX(calc(var(--shift) * -1));
}

.service-rhythm__item:hover {
  border-color: rgba(152,136,103,.68);
  background: rgba(152,136,103,.12);
  transform: translateX(0);
}

.service-rhythm__item--reverse .service-rhythm__media {
  order: 2;
}

.service-rhythm__item--reverse .service-rhythm__content {
  order: 1;
}

.service-rhythm__media {
  min-height: clamp(280px, 33vw, 460px);
  overflow: hidden;
  background: var(--ink);
}

.service-rhythm__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  transform: scale(1.04);
  transition:
    filter .65s var(--ease),
    transform .8s var(--ease);
}

.service-rhythm__item:hover .service-rhythm__media img {
  filter: grayscale(0) contrast(1);
  transform: scale(1.1);
}

.service-rhythm__content {
  min-height: clamp(280px, 33vw, 460px);
  display: grid;
  align-content: center;
  gap: clamp(14px, 1.8vw, 24px);
  padding: clamp(28px, 4.8vw, 70px);
}

.service-rhythm__count {
  width: max-content;
  padding: 8px 13px;
  border: 1px solid rgba(242,241,239,.2);
  border-radius: 999px;
  color: var(--primary);
  font-family: var(--short);
  font-size: .68rem;
  letter-spacing: .16em;
}

.service-rhythm__kicker {
  color: var(--primary);
  font-family: var(--short);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.service-rhythm__content h3 {
  max-width: 13ch;
  font-family: var(--title);
  font-size: clamp(2.1rem, 4.2vw, 5.6rem);
  line-height: .9;
  letter-spacing: -.06em;
  text-transform: none;
}

.service-rhythm__content ul:not(.service-rhythm__bullets) {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-rhythm__content strong {
  width: max-content;
  max-width: 100%;
  margin-top: 8px;
  color: var(--soft-2);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.35vw, 1.45rem);
  font-weight: 400;
  line-height: 1.25;
}

.service-rhythm__content strong::before {
  content: '— ';
  color: var(--primary);
}

@media (max-width: 1100px) {
  .service-rhythm__item,
  .service-rhythm__item--reverse {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-left: 0;
    margin-right: 0;
    transform: none;
  }

  .service-rhythm__item--reverse .service-rhythm__media,
  .service-rhythm__item--reverse .service-rhythm__content {
    order: initial;
  }

  .service-rhythm__item:nth-child(even) {
    justify-self: end;
  }

  .service-rhythm__media,
  .service-rhythm__content {
    min-height: auto;
  }

  .service-rhythm__media {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 720px) {
  .service-rhythm {
    padding-left: 18px;
    padding-right: 18px;
  }

  .service-rhythm__list {
    gap: 28px;
  }

  .service-rhythm__item,
  .service-rhythm__item:nth-child(even) {
    justify-self: stretch;
  }

  .service-rhythm__content {
    padding: 28px 22px 32px;
  }

  .service-rhythm__content h3 {
    max-width: 100%;
    font-size: clamp(2rem, 12vw, 3.6rem);
  }

  .service-rhythm__content ul {
    gap: 7px;
  }

  .service-rhythm__content li {
    font-size: .62rem;
    padding: 8px 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-rhythm__item,
  .service-rhythm__media img {
    transform: none !important;
    transition: none !important;
  }
}

.service-rhythm__item {
  --service-accent: var(--primary);
  --slide-distance: clamp(70px, 9vw, 150px);

  opacity: 0;
  overflow: hidden;
  border-color: rgba(242,241,239,.12);
  background:
    linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    rgba(242,241,239,.035);

  transition:
    opacity .9s var(--ease),
    transform 1.15s var(--ease),
    border-color .45s var(--ease),
    background .45s var(--ease),
    box-shadow .45s var(--ease);
}

.service-rhythm__item:nth-child(1) { --service-accent: #988867; }
.service-rhythm__item:nth-child(2) { --service-accent: #b28d5c; }
.service-rhythm__item:nth-child(3) { --service-accent: #7f806b; }
.service-rhythm__item:nth-child(4) { --service-accent: #ad8330; }
.service-rhythm__item:nth-child(5) { --service-accent: #8f6f55; }
.service-rhythm__item:nth-child(6) { --service-accent: #c2aa78; }

.service-rhythm__item--from-left {
  transform: translate3d(calc(var(--slide-distance) * -1), 44px, 0) rotate(-1.4deg);
}

.service-rhythm__item--from-right {
  transform: translate3d(var(--slide-distance), 44px, 0) rotate(1.4deg);
}

.service-rhythm__item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg);
}

.service-rhythm__item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, color-mix(in srgb, var(--service-accent) 36%, transparent), transparent 28%),
    linear-gradient(90deg, color-mix(in srgb, var(--service-accent) 22%, transparent), transparent 45%);
  opacity: .55;
  transition: opacity .45s var(--ease);
}

.service-rhythm__item::after {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 5px;
  background: var(--service-accent);
  box-shadow: 0 0 34px color-mix(in srgb, var(--service-accent) 70%, transparent);
  opacity: .9;
}

.service-rhythm__item--reverse::after {
  left: auto;
  right: 0;
}

.service-rhythm__item:hover {
  border-color: color-mix(in srgb, var(--service-accent) 75%, transparent);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--service-accent) 18%, transparent), rgba(255,255,255,.035)),
    rgba(242,241,239,.055);
  box-shadow:
    0 36px 110px rgba(0,0,0,.32),
    0 0 0 1px color-mix(in srgb, var(--service-accent) 28%, transparent);
}

.service-rhythm__item:hover::before {
  opacity: .9;
}

.service-rhythm__media,
.service-rhythm__content {
  position: relative;
  z-index: 1;
}

.service-rhythm__media {
  position: relative;
}

.service-rhythm__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,.44)),
    linear-gradient(120deg, color-mix(in srgb, var(--service-accent) 28%, transparent), transparent 54%);
  pointer-events: none;
}

.service-rhythm__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.service-rhythm__count {
  border-color: color-mix(in srgb, var(--service-accent) 68%, rgba(242,241,239,.2));
  color: var(--black);
  background: var(--service-accent);
}

.service-rhythm__kicker {
  color: var(--service-accent);
}

.service-rhythm__content h3 {
  color: var(--soft);
  text-shadow: 0 20px 70px rgba(0,0,0,.38);
}

.service-rhythm__content ul:not(.service-rhythm__bullets) li {
  border-color: rgba(242,241,239,.16);
  background: rgba(0,0,0,.16);
}

.service-rhythm__item:hover .service-rhythm__content ul:not(.service-rhythm__bullets) li {
  border-color: color-mix(in srgb, var(--service-accent) 58%, transparent);
  background: color-mix(in srgb, var(--service-accent) 15%, rgba(0,0,0,.2));
}

.service-rhythm__content strong {
  color: var(--soft);
}

.service-rhythm__content strong::before {
  color: var(--service-accent);
}

@media (max-width: 1100px) {
  .service-rhythm__item--from-left,
  .service-rhythm__item--from-right {
    transform: translate3d(0, 52px, 0);
  }

  .service-rhythm__item.is-visible {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 720px) {
  .service-rhythm__item::after {
    width: 100%;
    height: 4px;
    inset: 0 0 auto 0;
  }

  .service-rhythm__item--reverse::after {
    left: 0;
    right: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-rhythm__item {
    opacity: 1;
    transform: none !important;
    transition: none !important;
  }
}


.service-rhythm__content .service-rhythm__bullets {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.25rem;
  list-style: disc outside;
}

.service-rhythm__content .service-rhythm__bullets li {
  display: list-item;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(242,241,239,.84);

  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.25vw, 1.35rem);
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

.service-rhythm__content .service-rhythm__bullets li::marker {
  color: var(--service-accent);
  font-size: .9em;
}

.service-rhythm__item:hover .service-rhythm__content .service-rhythm__bullets li {
  border-color: transparent;
  background: transparent;
  color: var(--soft);
}

.service-rhythm__cta {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(8px, 1.4vw, 18px);
  padding: 13px 18px;

  border: 1px solid color-mix(in srgb, var(--service-accent) 72%, rgba(242,241,239,.28));
  border-radius: 999px;
  background: rgba(0,0,0,.24);
  color: var(--soft);

  font-family: var(--short);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;

  transition:
    background .35s var(--ease),
    color .35s var(--ease),
    border-color .35s var(--ease),
    transform .35s var(--ease);
}

.service-rhythm__cta:hover {
  background: var(--service-accent);
  border-color: var(--service-accent);
  color: var(--black);
  transform: translateX(6px);
}

.service-rhythm__cta i {
  font-size: .8rem;
  transition: transform .35s var(--ease);
}

.service-rhythm__cta:hover i {
  transform: translateX(4px);
}

@media (max-width: 720px) {
  .service-rhythm__cta {
    width: 100%;
    justify-content: center;
  }
}

/* Make every text element sit above the image overlays */
.work-no,
.work-title,
.work-type,
.flip-card strong,
.flip-card em,
.flip-card small,
.work-copy {
  position: relative;
  z-index: 2;
}

/* Keep overlays behind the text */
.flip-card__front::before,
.flip-card__back::before,
.flip-card__back::after {
  z-index: 0;
  pointer-events: none;
}

/* Stronger readable back overlay */
.flip-card__back::before {
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, .18) 0%,
      rgba(0, 0, 0, .48) 38%,
      rgba(0, 0, 0, .88) 100%
    );
}

.flip-card__back::after {
  background:
    linear-gradient(
      135deg,
      rgba(152, 136, 103, .22),
      rgba(0, 0, 0, .18) 52%,
      rgba(0, 0, 0, .44)
    );
}

/* Better spacing on the back of the card */
.flip-card__back {
  gap: 0;
  padding: clamp(24px, 2.8vw, 38px);
}

/* Put project number at the top, separate from the copy */
.flip-card__back .work-no {
  position: absolute;
  top: clamp(22px, 2vw, 32px);
  left: clamp(24px, 2.8vw, 38px);
  margin: 0;
  font-size: .95rem;
  color: rgba(242, 241, 239, .78);
}

/* Project title */
.flip-card__back strong {
  max-width: 14ch;
  font-family: var(--short);
  font-size: clamp(1.05rem, 1.55vw, 1.45rem);
  line-height: 1.08;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--soft);
  text-shadow: 0 12px 36px rgba(0, 0, 0, .55);
}

/* Client name */
.flip-card__back em {
  max-width: 28ch;
  margin-top: 10px;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.25;
  color: rgba(242, 241, 239, .82);
}

/* Type tag */
.flip-card__back small {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  margin-top: 16px;
  padding: 7px 10px;

  border: 1px solid rgba(242, 241, 239, .28);
  border-radius: 999px;
  background: rgba(0, 0, 0, .22);
  backdrop-filter: blur(10px);

  font-family: var(--short);
  font-size: .62rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--soft-2);
}

/* Main readable project copy */
.work-copy {
  display: block;
  max-width: min(36ch, 100%);
  margin-top: 18px;
  padding-top: 16px;

  border-top: 1px solid rgba(242, 241, 239, .22);

  font-family: var(--serif);
  font-size: clamp(.98rem, 1.15vw, 1.12rem);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -.01em;
  color: rgba(242, 241, 239, .92);

  text-wrap: pretty;
  text-shadow: 0 10px 32px rgba(0, 0, 0, .58);
}

@media (max-width: 720px) {
  .flip-card__back {
    padding: 24px 22px 28px;
  }

  .flip-card__back .work-no {
    top: 22px;
    left: 22px;
  }

  .flip-card__back strong {
    max-width: 100%;
    font-size: 1rem;
  }

  .work-copy {
    max-width: 100%;
    margin-top: 16px;
    padding-top: 14px;
    font-size: .98rem;
    line-height: 1.5;
  }
}



.cookie-banner {
  position: fixed;
  left: clamp(18px, 3vw, 42px);
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 42px);
  z-index: 10000;

  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);

  max-width: 980px;
  margin: 0 auto;
  padding: clamp(18px, 2.4vw, 28px);

  background: rgba(242, 241, 239, .94);
  color: var(--ink);
  border: 1px solid rgba(56, 56, 52, .12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .18);
  backdrop-filter: blur(22px);

  opacity: 0;
  transform: translateY(18px);
  visibility: hidden;

  transition:
    opacity .45s var(--ease),
    transform .45s var(--ease),
    visibility .45s var(--ease);
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.cookie-banner__copy {
  display: grid;
  gap: 8px;
}

.cookie-banner__eyebrow {
  font-family: var(--short);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
}

.cookie-banner p {
  max-width: 62ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(.98rem, 1.15vw, 1.14rem);
  line-height: 1.45;
  color: rgba(56, 56, 52, .82);
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.cookie-banner__link {
  padding: 12px 4px;
  font-family: var(--short);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: .72;
  transition: color .25s var(--ease), opacity .25s var(--ease);
}

.cookie-banner__link:hover {
  color: var(--primary);
  opacity: 1;
}

.cookie-banner__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  min-height: 46px;
  padding: 0 18px;

  border: 1px solid var(--black);
  border-radius: 999px;
  background: var(--black);
  color: var(--soft);

  font-family: var(--short);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;

  transition:
    background .35s var(--ease),
    color .35s var(--ease),
    border-color .35s var(--ease),
    transform .35s var(--ease);
}

.cookie-banner__button:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--black);
  transform: translateY(-2px);
}

.cookie-banner__button i {
  font-size: .78rem;
}

@media (max-width: 720px) {
  .cookie-banner {
    grid-template-columns: 1fr;
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 20px;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: space-between;
  }

  .cookie-banner__button {
    min-height: 44px;
    padding: 0 16px;
  }
}



/* ================================
   WORKS PAGE — upgraded flip cards
================================ */

.works-intro {
  align-items: flex-start;
  padding-bottom: clamp(34px, 5vw, 68px);
}

.works-intro > div:first-child {
  max-width: 760px;
}

.works-filter {
  max-width: 680px;
  justify-content: flex-end;
}

.filter-button {
  background: rgba(255,255,255,.34);
  backdrop-filter: blur(14px);
}

.filter-button.is-active,
.filter-button:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--soft);
}

.works-grid-section {
  padding-top: clamp(18px, 3vw, 44px);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
  align-items: stretch;
}

.flip-card {
  perspective: 1600px;
  min-height: clamp(430px, 42vw, 660px);
  isolation: isolate;
}

.flip-card.is-hidden {
  display: none;
}

.flip-card__button {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  padding: 0;
  text-align: inherit;
  transform: translateY(0);
  transition:
    transform .45s var(--ease),
    filter .45s var(--ease);
}

.flip-card:hover .flip-card__button,
.flip-card__button:focus-visible {
  transform: translateY(-10px);
}

.flip-card__button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 8px;
}

.flip-card__inner {
  position: relative;
  display: block;
  height: 100%;
  min-height: inherit;
  transform-style: preserve-3d;
  transition: transform .9s var(--ease);
  will-change: transform;
}

.flip-card.is-flipped .flip-card__inner {
  transform: rotateY(180deg);
}

.flip-card__face {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  padding: 0;
  color: var(--soft);
  background: var(--black);
  border: 1px solid rgba(56,56,52,.14);
  box-shadow: 0 32px 90px rgba(0,0,0,.16);
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

/* Disable old pseudo overlays from previous CSS */
.flip-card__front::before,
.flip-card__back::before,
.flip-card__back::after {
  content: none !important;
}

.flip-card__back {
  transform: rotateY(180deg);
}

/* Image layer */
.flip-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  background-image: var(--work-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.025);
  transition:
    transform .9s var(--ease),
    filter .75s var(--ease),
    opacity .75s var(--ease);
}

.flip-card:hover .flip-card__media,
.flip-card.is-flipped .flip-card__media {
  transform: scale(1.09);
}

/* Front is full color */
.flip-card__front .flip-card__media {
  filter: grayscale(0) saturate(1.08) contrast(1.03);
}

/* Back is black and white */
.flip-card__back .flip-card__media {
  filter: grayscale(1) contrast(1.18) brightness(.82);
  opacity: .9;
}

/* Overlay layer */
.flip-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  pointer-events: none;
}


.flip-card__back .flip-card__overlay {
  background:
    linear-gradient(180deg, rgba(0,0,0,.62), rgba(0,0,0,.88)),
    radial-gradient(circle at 50% 42%, rgba(152,136,103,.28), transparent 42%);
}

/* Full-card centered text layer */
.flip-card__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  min-height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.4vw, 18px);
  padding: clamp(24px, 3.6vw, 54px);
  text-align: center;
  color: var(--soft);
  transform: translateZ(46px);
}

.work-no {
  position: static;
  z-index: 2;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(.95rem, 1.05vw, 1.12rem);
  line-height: 1;
  color: rgba(242,241,239,.78);
}

.work-kicker,
.work-hint {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  padding: 9px 13px;
  border: 1px solid rgba(242,241,239,.28);
  border-radius: 999px;
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
  font-family: var(--short);
  font-size: .62rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--soft-2);
}

.work-hint {
  margin-top: clamp(6px, 1vw, 14px);
  color: var(--black);
  background: var(--primary);
  border-color: var(--primary);
}

/* Front teaser typography */
.work-headline {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  margin: 0;
  font-family: var(--title);
  font-size: clamp(2.7rem, 5.2vw, 6.8rem);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.075em;
  text-transform: none;
  color: var(--black);
  text-wrap: balance;

-webkit-text-stroke: 1.8px var(--white);  paint-order: stroke fill;

  text-shadow:
    0 2px 18px rgba(0, 0, 0, .38),
    0 22px 70px rgba(255, 255, 255, .28);
}

/* Back details typography */
.work-detail-title {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 14ch);
  margin: 0;
  font-family: var(--title);
  font-size: clamp(2.2rem, 4.1vw, 5.5rem);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.07em;
  text-transform: none;
  color: var(--soft);
  text-wrap: balance;
  text-shadow: 0 22px 70px rgba(0,0,0,.62);
}

.work-client {
  position: relative;
  z-index: 2;
  max-width: 28ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  font-style: normal;
  line-height: 1.25;
  color: rgba(242,241,239,.82);
}

.work-copy {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 38ch);
  max-width: 100%;
  margin: clamp(4px, .7vw, 10px) 0 0;
  padding-top: clamp(14px, 1.4vw, 22px);
  border-top: 1px solid rgba(242,241,239,.24);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.25vw, 1.26rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -.01em;
  color: rgba(242,241,239,.92);
  text-wrap: pretty;
  text-shadow: 0 14px 36px rgba(0,0,0,.58);
}

/* Better hover feedback */
.flip-card__front .work-headline,
.flip-card__back .work-detail-title,
.work-copy,
.work-client,
.work-kicker,
.work-hint,
.work-no {
  transition:
    transform .45s var(--ease),
    opacity .45s var(--ease),
    color .45s var(--ease),
    background .45s var(--ease);
}

.flip-card:hover .work-headline,
.flip-card:hover .work-detail-title {
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 1100px) {
  .works-intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .works-filter {
    justify-content: flex-start;
  }

  .works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flip-card {
    min-height: clamp(400px, 58vw, 580px);
  }
}

@media (max-width: 720px) {
  .works-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .works-filter {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .works-filter::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .flip-card {
    min-height: 430px;
  }

  .flip-card__content {
    padding: 28px 22px;
  }

  .work-headline {
    width: min(100%, 10ch);
    font-size: clamp(3rem, 16vw, 5.2rem);
  }

  .work-detail-title {
    width: min(100%, 12ch);
    font-size: clamp(2.35rem, 13vw, 4.4rem);
  }

  .work-copy {
    width: min(100%, 34ch);
    font-size: 1rem;
    line-height: 1.48;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flip-card__button,
  .flip-card__inner,
  .flip-card__media,
  .flip-card__content * {
    transition: none !important;
  }

  .flip-card:hover .flip-card__button,
  .flip-card:hover .work-headline,
  .flip-card:hover .work-detail-title {
    transform: none;
  }
}


/* ================================
   FAQ PAGE
================================ */

.subhero--faq {
  background-position: center;
}

.subhero--faq::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,.42), rgba(0,0,0,.76)),
    radial-gradient(circle at 50% 50%, rgba(152,136,103,.2), transparent 44%);
}

.faq-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 7vw, 110px);
  padding-bottom: clamp(34px, 5vw, 70px);
}

.faq-intro__copy {
  display: grid;
  gap: 24px;
}

.faq-intro__copy p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.55vw, 1.55rem);
  line-height: 1.45;
  color: rgba(56,56,52,.76);
}

.faq-section {
  padding-top: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(56,56,52,.12);
  background:
    linear-gradient(135deg, rgba(255,255,255,.46), rgba(255,255,255,.18)),
    var(--soft);
  box-shadow: 0 24px 70px rgba(0,0,0,.06);
  transition:
    border-color .35s var(--ease),
    background .35s var(--ease),
    transform .35s var(--ease),
    box-shadow .35s var(--ease);
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(152,136,103,.56);
  background:
    radial-gradient(circle at 12% 18%, rgba(152,136,103,.16), transparent 32%),
    rgba(255,255,255,.46);
  transform: translateY(-3px);
  box-shadow: 0 30px 80px rgba(0,0,0,.1);
}

.faq-item summary {
  min-height: clamp(96px, 9vw, 132px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  padding: clamp(22px, 3.2vw, 42px);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item__number {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 2rem);
  color: var(--primary);
}

.faq-item__question {
  font-family: var(--title);
  font-size: clamp(1.8rem, 3.1vw, 4rem);
  line-height: .95;
  letter-spacing: -.06em;
  color: var(--ink);
  text-wrap: balance;
}

.faq-item__icon {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(56,56,52,.18);
  border-radius: 999px;
  color: var(--ink);
  transition:
    transform .35s var(--ease),
    background .35s var(--ease),
    color .35s var(--ease),
    border-color .35s var(--ease);
}

.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
  background: var(--primary);
  border-color: var(--primary);
  color: var(--black);
}

.faq-item__answer {
  display: grid;
  justify-items: center;
  padding: 0 clamp(22px, 3.2vw, 42px) clamp(26px, 3.4vw, 46px);
}

.faq-item__answer p {
  width: min(100%, 760px);
  margin: 0;
  padding-top: clamp(18px, 2vw, 28px);
  border-top: 1px solid rgba(56,56,52,.14);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.35vw, 1.35rem);
  line-height: 1.55;
  color: rgba(56,56,52,.78);
  text-align: center;
}

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

@media (max-width: 720px) {
  .faq-item summary {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 24px 20px;
  }

  .faq-item__number {
    grid-column: 1 / -1;
  }

  .faq-item__question {
    font-size: clamp(1.75rem, 10vw, 3.1rem);
  }

  .faq-item__icon {
    width: 42px;
    height: 42px;
  }

  .faq-item__answer {
    padding: 0 20px 26px;
    justify-items: start;
  }

  .faq-item__answer p {
    text-align: left;
  }
}


.form-message {
  max-width: 760px;
  padding: 18px 20px;
  border: 1px solid rgba(242,241,239,.22);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.45;
}

.form-message--success {
  background: rgba(152,136,103,.22);
  color: var(--soft);
  border-color: rgba(152,136,103,.72);
}

.form-message--error {
  background: rgba(255,255,255,.08);
  color: var(--soft);
  border-color: rgba(255,255,255,.34);
}

.turnstile-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 70px;
}

@media (max-width: 720px) {
  .turnstile-wrap {
    overflow-x: auto;
  }
}


.legal-section {
  padding-top: clamp(72px, 8vw, 120px);
}

.legal-grid {
  align-items: stretch;
}

.legal-card {
  min-height: auto;
  gap: 14px;
}

.legal-card span:not(.footer-label),
.legal-card a {
  max-width: 100%;
  font-size: clamp(1rem, 1.12vw, 1.18rem);
  line-height: 1.45;
}

.legal-card .footer-label {
  color: var(--primary);
}

.legal-card a {
  width: fit-content;
  line-height: 1.35;
}

@media (min-width: 1101px) {
  .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-card:first-child,
  .legal-card:nth-child(2),
  .legal-card:nth-child(3) {
    grid-column: span 1;
  }
}

@media (max-width: 720px) {
  .legal-card {
    padding: 24px 20px;
  }
}