:root {
  --black: #080807;
  --black-soft: #10100e;
  --paper: #f1ede4;
  --muted: rgba(241, 237, 228, 0.63);
  --line: rgba(241, 237, 228, 0.16);
  --gold: #c9a864;
  --gold-light: #e1c47e;
  --shell: min(1320px, calc(100vw - 80px));
  --font-display: "Rajdhani", "Arial Narrow", sans-serif;
  --font-body: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 5%, rgba(201, 168, 100, 0.08), transparent 25rem),
    var(--black);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body.home-page {
  --building-scroll: 0px;
  --building-scale: 1.18;
  position: relative;
  isolation: isolate;
  background: var(--black);
}

body.home-page::before {
  position: fixed;
  z-index: -1;
  inset: -22vh 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.7), rgba(8, 8, 7, 0.86)),
    linear-gradient(90deg, rgba(8, 8, 7, 0.12), rgba(8, 8, 7, 0.42)),
    url("/assets/bg.jpeg") center center / cover no-repeat;
  content: "";
  pointer-events: none;
  transform: translate3d(0, var(--building-scroll), 0) scale(var(--building-scale));
  transform-origin: center center;
  transition: transform 80ms linear;
  will-change: transform;
}

body.menu-open {
  overflow: hidden;
}

body.is-leaving {
  opacity: 0;
  transition: opacity 320ms ease;
}

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button {
  cursor: none;
}

img,
video {
  display: block;
  width: 100%;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button {
  padding: 0;
  border: 0;
  background: none;
}

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

p,
h1,
h2,
h3,
figure,
dl,
dd {
  margin: 0;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.loader {
  position: fixed;
  z-index: 1000;
  display: grid;
  inset: 0;
  place-items: center;
  background: #050504;
  transition:
    visibility 0s linear 900ms,
    transform 900ms cubic-bezier(0.76, 0, 0.24, 1);
}

.loader.is-hidden {
  visibility: hidden;
  transform: translateY(-100%);
}

.loader__mark {
  display: grid;
  width: min(360px, 76vw);
  gap: 16px;
}

.loader__logo {
  width: min(180px, 46vw);
  height: auto;
  max-height: 45vh;
  justify-self: center;
  object-fit: contain;
}

.loader__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 22px);
}

.loader__brand .loader__logo {
  width: min(150px, 36vw);
  max-height: 38vh;
}

.loader__wordmark {
  width: min(220px, 48vw);
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 18px rgba(217, 185, 109, 0.22))
    contrast(1.16)
    brightness(1.08);
}

.loader__line {
  align-self: end;
  height: 1px;
  overflow: hidden;
  background: rgba(241, 237, 228, 0.2);
}

.loader__line::after {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  content: "";
  animation: loader-line 1s cubic-bezier(0.76, 0, 0.24, 1) both;
}

.loader__mark small {
  color: var(--muted);
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  text-align: center;
}

@keyframes loader-line {
  from {
    transform: translateX(-100%);
  }
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(225, 196, 126, 0.6);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-80px, -80px, 0);
  transition:
    width 180ms ease,
    height 180ms ease,
    background-color 180ms ease,
    opacity 180ms ease;
  will-change: transform;
}

.cursor span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-light);
  transform: translate(-50%, -50%);
}

.cursor.is-visible {
  opacity: 1;
}

.cursor.is-active {
  width: 68px;
  height: 68px;
  background: rgba(201, 168, 100, 0.11);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 100%;
  height: 2px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left center;
}

.topbar {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 100;
  display: grid;
  width: min(1420px, calc(100vw - 44px));
  min-height: 84px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid rgba(241, 237, 228, 0.17);
  background: rgba(8, 8, 7, 0.32);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
  transition:
    top 260ms ease,
    background-color 260ms ease,
    border-color 260ms ease;
}

.topbar.is-scrolled {
  top: 10px;
  border-color: rgba(241, 237, 228, 0.12);
  background: rgba(8, 8, 7, 0.86);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
}

.brand__icon {
  flex: 0 0 auto;
  width: clamp(72px, 6.5vw, 96px);
  height: clamp(72px, 8.5vw, 90px);
  object-fit: contain;
  filter:
    drop-shadow(0 0 18px rgba(217, 185, 109, 0.34))
    drop-shadow(0 10px 24px rgba(0, 0, 0, 0.52))
    saturate(0.95)
    contrast(1.12);
}

.brand__wordmark {
  width: clamp(60px, 5vw, 190px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 14px rgba(217, 185, 109, 0.28))
    drop-shadow(0 8px 20px rgba(0, 0, 0, 0.58))
    contrast(1.18)
    brightness(1.08);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
}

.desktop-nav a {
  position: relative;
  color: rgba(241, 237, 228, 0.7);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--paper);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.topbar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.language {
  display: inline-flex;
  border: 1px solid var(--line);
}

.language button {
  min-width: 38px;
  min-height: 35px;
  color: rgba(241, 237, 228, 0.52);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
}

.language button.is-active {
  background: rgba(201, 168, 100, 0.17);
  color: var(--gold-light);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.menu-panel {
  position: fixed;
  z-index: 90;
  display: flex;
  visibility: hidden;
  inset: 0;
  padding: 150px 34px 34px;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 80% 16%, rgba(201, 168, 100, 0.13), transparent 36%),
    rgba(7, 7, 6, 0.98);
  opacity: 0;
  transform: translateY(-18px);
  transition:
    visibility 0s linear 360ms,
    opacity 300ms ease,
    transform 360ms ease;
}

.menu-open .menu-panel {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}

.menu-panel nav {
  display: grid;
}

.menu-panel nav a {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.menu-panel nav span {
  color: var(--gold);
  font-size: 0.68rem;
}

.menu-panel nav strong {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 12vw, 5rem);
  font-weight: 600;
  line-height: 0.9;
  text-transform: uppercase;
}

.menu-panel > p {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #0c0c0b;
}

.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__media {
  transform: scale(1.035);
  will-change: transform;
}

.hero__media video {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.68) contrast(1.12);
}

.hero__object {
  position: absolute;
  right: clamp(18px, 6vw, 110px);
  bottom: clamp(-54px, -3vw, -20px);
  z-index: 1;
  width: clamp(300px, 35vw, 620px);
  height: auto;
  object-fit: contain;
  opacity: 0.58;
  filter: drop-shadow(0 30px 55px rgba(0, 0, 0, 0.72));
  transform: translate3d(0, 0, 0);
  pointer-events: none;
}

.hero__veil {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.84), rgba(5, 5, 4, 0.25) 58%, rgba(5, 5, 4, 0.64)),
    linear-gradient(180deg, rgba(5, 5, 4, 0.18), rgba(5, 5, 4, 0.76));
}

.hero__veil::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(241, 237, 228, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 237, 228, 0.055) 1px, transparent 1px);
  background-size: 9vw 9vw;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 85%);
}

.hero__coordinates {
  position: absolute;
  top: 48%;
  right: 29px;
  z-index: 2;
  display: flex;
  color: rgba(241, 237, 228, 0.5);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.hero__coordinates span + span::before {
  margin: 0 10px;
  content: "—";
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  width: var(--shell);
  min-height: 100svh;
  margin-inline: auto;
  padding: clamp(160px, 19vh, 220px) 0 68px;
  flex-direction: column;
  justify-content: flex-end;
}

.kicker {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  display: grid;
  max-width: 1040px;
  margin-top: 26px;
  font-family: var(--font-display);
  font-size: clamp(5.2rem, 10.5vw, 10.5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.72;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero h1.hero-title-art {
  display: block;
  width: min(1040px, 100%);
  max-width: 1040px;
  line-height: 1;
}

.hero-title-art img {
  display: none;
  width: 100%;
  max-height: 54vh;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 18px 50px rgba(0, 0, 0, 0.52));
}

html[lang="en"] .hero-title-art__image--en,
html[lang="sq"] .hero-title-art__image--sq {
  display: block;
}

.hero__outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(241, 237, 228, 0.72);
}

.hero__bottom {
  margin-top: 56px;
}

.hero__bottom > p {
  max-width: 480px;
  color: rgba(241, 237, 228, 0.76);
  font-size: clamp(0.9rem, 1.2vw, 1.06rem);
  line-height: 1.65;
}

.hero__index {
  position: absolute;
  right: 28px;
  bottom: 20px;
  left: 28px;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  color: rgba(241, 237, 228, 0.4);
  font-size: 0.56rem;
  letter-spacing: 0.14em;
}

.manifesto-strip {
  overflow: hidden;
  border-top: 1px solid rgba(201, 168, 100, 0.38);
  border-bottom: 1px solid rgba(201, 168, 100, 0.22);
  background: var(--gold);
  color: var(--black);
}

.manifesto-strip__track {
  display: flex;
  width: max-content;
  animation: strip 25s linear infinite;
}

.manifesto-strip__group {
  display: flex;
  width: max-content;
  min-width: 100vw;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  padding: 13px 15px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.manifesto-strip i {
  font-style: normal;
}

@keyframes strip {
  to {
    transform: translateX(-50%);
  }
}

.projects,
.disciplines,
.process {
  padding-block: clamp(100px, 13vw, 190px);
}

.section-heading {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) minmax(230px, 340px);
  gap: 28px;
  align-items: end;
  padding-bottom: 58px;
  border-bottom: 1px solid var(--line);
}

.section-number {
  align-self: start;
  color: rgba(241, 237, 228, 0.4);
  font-size: 0.63rem;
  letter-spacing: 0.14em;
}

.section-heading h2,
.process__intro h2,
.studio__content > h2 {
  max-width: 820px;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.5vw, 6.7rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.86;
  text-transform: uppercase;
}

.section-heading__copy {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.project-browser {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  gap: 58px;
  margin-top: 58px;
}

.project-preview {
  position: sticky;
  top: 118px;
  align-self: start;
}

.project-preview__image {
  position: relative;
  aspect-ratio: 1.23;
  overflow: hidden;
  background: #141411;
}

.project-preview__image::after {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(241, 237, 228, 0.23);
  content: "";
  pointer-events: none;
}

.project-preview__image img {
  height: 100%;
  object-fit: cover;
  transition:
    opacity 260ms ease,
    transform 900ms cubic-bezier(0.2, 0.7, 0, 1);
}

.project-preview.is-changing img {
  opacity: 0.25;
  transform: scale(1.04);
}

.project-preview figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  color: rgba(241, 237, 228, 0.48);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-index {
  display: grid;
  align-content: start;
}

.project-row {
  display: grid;
  min-height: 92px;
  grid-template-columns: 42px minmax(0, 1fr) 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition:
    padding-left 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.project-row > span {
  color: rgba(241, 237, 228, 0.35);
  font-size: 0.62rem;
}

.project-row strong {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.4vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-transform: uppercase;
}

.project-row em {
  color: var(--gold);
  font-size: 1.2rem;
  font-style: normal;
  opacity: 0;
  transform: translate(-8px, 8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.project-row:hover,
.project-row.is-active {
  padding-left: 12px;
  border-color: rgba(201, 168, 100, 0.7);
  color: var(--gold-light);
}

.project-row:hover em,
.project-row.is-active em {
  opacity: 1;
  transform: none;
}

.statement {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  background: #ddd5c6;
  color: #11110f;
}

.statement__image {
  min-height: 100%;
  overflow: hidden;
}

.statement__image img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78);
}

.statement__copy {
  display: flex;
  padding: clamp(60px, 8vw, 130px);
  flex-direction: column;
  justify-content: center;
}

.statement .kicker {
  color: #7f5d25;
}

.statement h2 {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 6vw, 6.6rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.84;
  text-transform: uppercase;
}

.statement__copy > p:last-child {
  max-width: 520px;
  margin-top: 42px;
  color: rgba(17, 17, 15, 0.66);
  line-height: 1.75;
}

.disciplines .section-heading {
  grid-template-columns: 100px 1fr;
}

.discipline-list {
  margin-top: 40px;
}

.discipline {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
  scroll-margin-top: 120px;
}

.discipline__media {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 400ms ease,
    transform 800ms ease;
}

.discipline.is-open .discipline__media {
  opacity: 1;
  transform: scale(1);
}

.discipline__media span {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 1100ms ease,
    transform 4800ms linear;
}

.discipline__media span.is-active {
  opacity: 1;
  transform: scale(1);
}

.discipline::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 7, 0.85), transparent);
  content: "";
}

.discipline button {
  display: grid;
  width: 100%;
  min-height: 122px;
  grid-template-columns: 70px 1fr 30px;
  align-items: center;
  text-align: left;
}

.discipline button span {
  color: var(--gold);
  font-size: 0.63rem;
}

.discipline button strong {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5.4vw, 5.8rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.8;
  text-transform: uppercase;
}

.discipline button i {
  color: var(--gold-light);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 300;
}

.discipline__body {
  display: grid;
  max-height: 0;
  grid-template-columns: minmax(260px, 540px) auto;
  align-items: end;
  gap: 36px;
  margin-left: 70px;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 500ms ease,
    opacity 300ms ease,
    padding 500ms ease;
}

.discipline.is-open .discipline__body {
  max-height: 240px;
  padding: 0 0 36px;
  opacity: 1;
}

.discipline__body p {
  color: rgba(241, 237, 228, 0.7);
  line-height: 1.65;
  white-space: pre-line;
}

#discipline-identity.is-open .discipline__body {
  max-height: 1100px;
}

.discipline__body a {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(500px, 1.25fr);
  gap: clamp(70px, 10vw, 160px);
}

.process__intro {
  --process-route-x: 16%;
  --process-route-y: 76px;
  position: sticky;
  top: 132px;
  align-self: start;
  min-height: 560px;
  isolation: isolate;
}

.process__intro .section-number {
  position: relative;
  z-index: 4;
}

.process__route {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: -5%;
  width: 110%;
  height: 500px;
  overflow: visible;
  pointer-events: none;
}

.process__route path {
  fill: none;
  stroke: var(--gold);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.process__moving-kicker {
  position: absolute;
  z-index: 3;
  top: var(--process-route-y);
  left: var(--process-route-x);
  margin: 0;
  padding: 5px 7px;
  background: rgba(8, 8, 7, 0.82);
  white-space: nowrap;
  transform: translate(-50%, -50%);
  transition:
    top 70ms linear,
    left 70ms linear;
}

.process__intro h2 {
  position: relative;
  z-index: 1;
  margin-top: 92px;
  font-size: clamp(3.3rem, 5vw, 5.6rem);
}

.process__steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process__steps li {
  display: grid;
  min-height: 170px;
  grid-template-columns: 64px minmax(150px, 0.65fr) 1fr;
  align-items: start;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.process__steps li > span {
  color: var(--gold);
  font-size: 0.63rem;
}

.process__steps strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 0.9;
  text-transform: uppercase;
}

.process__steps p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.studio {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  isolation: isolate;
}

.studio__media {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.studio__media img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.55) contrast(1.1);
}

.studio::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.92), rgba(5, 5, 4, 0.38)),
    linear-gradient(180deg, rgba(5, 5, 4, 0.18), rgba(5, 5, 4, 0.88));
  content: "";
}

.studio__content {
  display: flex;
  min-height: 900px;
  padding-block: 120px 82px;
  flex-direction: column;
  justify-content: flex-end;
}

.studio__content > .kicker {
  margin-top: auto;
}

.studio__content > h2 {
  max-width: 1050px;
  font-size: clamp(4rem, 7.7vw, 8rem);
}

.studio__bottom {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(520px, 1.2fr);
  gap: 80px;
  margin-top: 60px;
  padding-top: 34px;
  border-top: 1px solid rgba(241, 237, 228, 0.2);
}

.studio__bottom > p {
  max-width: 500px;
  color: rgba(241, 237, 228, 0.72);
  line-height: 1.7;
}

.studio__bottom dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.studio__bottom dt {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 0.9;
}

.studio__bottom dd {
  margin-top: 10px;
  color: rgba(241, 237, 228, 0.56);
  font-size: 0.66rem;
  line-height: 1.45;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact {
  padding-block: clamp(110px, 14vw, 200px);
}

.contact__headline {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  margin-top: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.contact__headline span {
  max-width: 1080px;
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.8;
  text-transform: uppercase;
}

.contact__headline i {
  color: var(--gold);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-style: normal;
  transition: transform 220ms ease;
}

.contact__headline:hover i {
  transform: translate(8px, -8px);
}

.contact__details {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.contact__details a:hover {
  color: var(--gold-light);
}

.footer {
  display: grid;
  width: min(1420px, calc(100vw - 44px));
  margin: 0 auto 22px;
  grid-template-columns: minmax(230px, 0.8fr) minmax(450px, 1.2fr);
  gap: 32px 50px;
  padding: 34px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 0%, rgba(201, 168, 100, 0.12), transparent 34%),
    #0d0d0b;
}

.footer__brand {
  display: grid;
  align-content: start;
  gap: 7px;
  font-family: var(--font-display);
}

.footer__brand strong {
  font-size: 1.45rem;
}

.footer__brand span {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer nav {
  display: flex;
  align-items: start;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.footer nav a {
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
  color: rgba(241, 237, 228, 0.7);
  font-size: 0.69rem;
  letter-spacing: 0.06em;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.footer nav a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.footer > p {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: rgba(241, 237, 228, 0.38);
  font-size: 0.65rem;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 800ms ease,
    transform 800ms cubic-bezier(0.2, 0.7, 0, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Project detail */
.topbar--project {
  grid-template-columns: 1fr auto 1fr;
}

.topbar--project > .language {
  justify-self: end;
}

.project-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(241, 237, 228, 0.7);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-back span {
  color: var(--gold-light);
  font-size: 1rem;
}

.project-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.project-hero__image,
.project-hero__overlay {
  position: absolute;
  inset: 0;
}

.project-hero__image img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.05);
  animation: project-cover 1.6s cubic-bezier(0.2, 0.7, 0, 1) both;
}

@keyframes project-cover {
  from {
    transform: scale(1.08);
  }
}

.project-hero__overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.72), transparent 64%),
    linear-gradient(180deg, rgba(5, 5, 4, 0.16), rgba(5, 5, 4, 0.82));
}

.project-hero__content {
  position: absolute;
  right: 6vw;
  bottom: 8vh;
  left: 6vw;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  gap: clamp(32px, 6vw, 90px);
}

.project-hero__heading {
  min-width: 0;
}

.project-hero__content h1 {
  max-width: 1100px;
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: clamp(5rem, 11vw, 11rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.72;
  text-transform: uppercase;
}

.project-hero__content h1.is-long {
  font-size: clamp(3.8rem, 8vw, 8rem);
  line-height: 0.8;
}

.project-hero__meta {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  color: rgba(241, 237, 228, 0.7);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-hero__description {
  max-width: 420px;
  margin: 0;
  padding: 18px 20px;
  border-left: 1px solid var(--gold);
  background: rgba(7, 7, 6, 0.58);
  color: rgba(241, 237, 228, 0.82);
  font-size: 0.9rem;
  line-height: 1.65;
  backdrop-filter: blur(12px);
}

.project-hero__counter {
  position: absolute;
  right: 26px;
  bottom: 24px;
  z-index: 2;
  color: rgba(241, 237, 228, 0.5);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.project-intro {
  display: grid;
  grid-template-columns: 100px minmax(350px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(34px, 6vw, 90px);
  padding-block: clamp(100px, 13vw, 180px);
}

.project-intro > span {
  padding-top: 8px;
  color: rgba(241, 237, 228, 0.44);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.8vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.88;
  text-transform: uppercase;
}

.project-intro > div > p {
  max-width: 600px;
  color: rgba(241, 237, 228, 0.72);
  font-size: 1rem;
  line-height: 1.8;
  white-space: pre-line;
}

.project-intro dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 60px;
}

.project-intro dl > div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.project-intro dt {
  color: var(--gold);
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-intro dd {
  margin-top: 10px;
  color: rgba(241, 237, 228, 0.68);
  font-size: 0.7rem;
  line-height: 1.5;
}

.project-gallery {
  display: block;
  padding-top: clamp(20px, 3vw, 42px);
  padding-bottom: clamp(42px, 6vw, 80px);
}

.project-gallery__viewport {
  overflow: hidden;
  background: var(--black-soft);
  outline: none;
}

.project-gallery__viewport:focus-visible {
  box-shadow: 0 0 0 1px var(--gold);
}

.project-gallery__track {
  display: flex;
  transition: transform 700ms cubic-bezier(0.22, 0.78, 0.2, 1);
  will-change: transform;
}

.project-gallery__track figure,
.project-gallery__track figure:nth-child(n) {
  min-height: 0;
  flex: 0 0 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  grid-column: auto;
}

.project-gallery__track img,
.project-gallery__track video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-gallery__track img {
  transition: transform 1s cubic-bezier(0.2, 0.7, 0, 1);
}

.project-gallery__track video {
  background: #000;
}

.project-gallery__track figure:hover img {
  transform: scale(1.025);
}

.project-gallery__controls {
  display: grid;
  min-height: 70px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.project-gallery__controls[hidden],
.project-gallery__thumbs[hidden] {
  display: none;
}

.project-gallery__button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 12px;
  color: rgba(241, 237, 228, 0.72);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.project-gallery__button:last-child {
  justify-self: end;
}

.project-gallery__button span {
  color: var(--gold-light);
  font-size: 1.1rem;
}

.project-gallery__button:hover,
.project-gallery__button:focus-visible {
  color: var(--paper);
  outline: none;
}

.project-gallery__status {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: rgba(241, 237, 228, 0.48);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.project-gallery__status i {
  color: var(--gold);
  font-style: normal;
}

.project-gallery__thumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-top: 12px;
  padding-bottom: 5px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 168, 100, 0.42) transparent;
}

.project-gallery__thumbs button {
  position: relative;
  overflow: hidden;
  flex: 0 0 clamp(110px, 13vw, 180px);
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(241, 237, 228, 0.14);
  background: var(--black-soft);
  opacity: 0.55;
  scroll-snap-align: start;
  transition: border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.project-gallery__thumbs button:hover,
.project-gallery__thumbs button:focus-visible {
  border-color: rgba(217, 185, 109, 0.66);
  opacity: 0.9;
  outline: none;
}

.project-gallery__thumbs button.is-active {
  border-color: var(--gold-light);
  box-shadow: inset 0 0 0 1px var(--gold-light);
  opacity: 1;
}

.project-gallery__thumbs button.is-video::after {
  position: absolute;
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(5, 5, 4, 0.66);
  color: #fff;
  content: "▶";
  font-size: 0.68rem;
  inset: 50% auto auto 50%;
  place-items: center;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.project-gallery__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-description {
  padding-top: 0;
  padding-bottom: clamp(100px, 13vw, 180px);
}

.project-description > .kicker {
  margin: 0 0 18px;
}

.project-description__body {
  max-width: 860px;
  margin: 0;
  padding-top: clamp(28px, 4vw, 52px);
  border-top: 1px solid var(--line);
}

.project-description__body p {
  margin: 0;
  color: rgba(241, 237, 228, 0.72);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.75;
  white-space: pre-line;
}

.project-description__body p + p {
  margin-top: 1.5em;
}

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

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 44px, 940px);
  }

  .section-heading {
    grid-template-columns: 64px 1fr;
  }

  .section-heading__copy {
    grid-column: 2;
    max-width: 480px;
  }

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

  .project-preview {
    position: relative;
    top: auto;
  }

  .statement {
    grid-template-columns: 1fr;
  }

  .statement__image {
    min-height: 68vw;
  }

  .process {
    grid-template-columns: 1fr;
  }

  .process__intro {
    position: relative;
    top: auto;
    min-height: 0;
  }

  .process__route {
    display: none;
  }

  .process__moving-kicker {
    position: static;
    display: inline-block;
    margin-top: 40px;
    padding: 0;
    background: transparent;
    transform: none;
  }

  .process__intro h2 {
    margin-top: 14px;
  }

  .studio__bottom {
    grid-template-columns: 1fr;
  }

  .project-intro {
    grid-template-columns: 64px 1fr;
  }

  .project-intro > div {
    grid-column: 2;
  }

  .project-hero__content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .project-hero__description {
    max-width: 560px;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .topbar {
    top: 10px;
    width: calc(100vw - 20px);
    min-height: 68px;
    grid-template-columns: 1fr auto;
    padding: 7px 10px;
    background: rgba(8, 8, 7, 0.76);
  }

  .brand {
    min-width: 0;
    max-width: min(52vw, 160px);
    gap: 8px;
  }

  .brand__icon {
    width: 44px;
    height: 52px;
  }

  .brand__wordmark {
    width: 98px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero__content {
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: clamp(4.4rem, 20vw, 7rem);
    line-height: 0.75;
  }

  .hero__bottom {
    margin-top: 38px;
  }

  .hero__coordinates {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    padding-bottom: 38px;
  }

  .section-heading__copy {
    grid-column: auto;
  }

  .section-heading h2,
  .process__intro h2 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .project-browser {
    gap: 28px;
    margin-top: 34px;
  }

  .project-preview figcaption {
    align-items: start;
    flex-direction: column;
    gap: 7px;
  }

  .project-row {
    min-height: 76px;
  }

  .statement__copy {
    padding: 64px 22px;
  }

  .statement h2 {
    font-size: clamp(3.3rem, 15vw, 5rem);
  }

  .disciplines .section-heading {
    grid-template-columns: 1fr;
  }

  .discipline button {
    min-height: 94px;
    grid-template-columns: 40px 1fr 24px;
  }

  .discipline__body {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
    margin-left: 40px;
  }

  .discipline.is-open .discipline__body {
    max-height: 300px;
  }

  #discipline-identity.is-open .discipline__body {
    max-height: 1600px;
  }

  .process__steps li {
    grid-template-columns: 40px 1fr;
  }

  .process__steps p {
    grid-column: 2;
  }

  .studio,
  .studio__content {
    min-height: 780px;
  }

  .studio__content {
    padding-block: 100px 58px;
  }

  .studio__content > h2 {
    font-size: clamp(3.7rem, 17vw, 6rem);
  }

  .studio__bottom {
    gap: 34px;
    margin-top: 40px;
  }

  .studio__bottom dl {
    gap: 12px;
  }

  .studio__bottom dt {
    font-size: 2.1rem;
  }

  .contact__headline {
    grid-template-columns: 1fr;
  }

  .contact__headline span {
    font-size: clamp(3.5rem, 17vw, 6rem);
  }

  .contact__details {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer {
    width: calc(100vw - 20px);
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .footer nav {
    justify-content: flex-start;
    gap: 16px;
  }

  .topbar--project {
    grid-template-columns: 1fr auto;
  }

  .topbar--project .project-back {
    display: none;
  }

  .project-hero__content {
    right: 18px;
    bottom: 9vh;
    left: 18px;
  }

  .project-hero__content h1 {
    font-size: clamp(4.2rem, 20vw, 7rem);
  }

  .project-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .project-intro > div {
    grid-column: auto;
  }

  .project-intro dl {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .project-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .project-gallery figure,
  .project-gallery figure:nth-child(n) {
    min-height: 65vw;
    grid-column: auto;
  }

}

@media (max-width: 480px) {
  .brand {
    max-width: 46vw;
    gap: 7px;
  }

  .brand__icon {
    width: 38px;
    height: 46px;
  }

  .brand__wordmark {
    width: 78px;
  }

  .language button {
    min-width: 32px;
    min-height: 31px;
  }

  .topbar__actions {
    gap: 8px;
  }

  .hero__content {
    padding-top: 130px;
  }

  .hero__index {
    right: 14px;
    left: 14px;
  }

  .project-row {
    grid-template-columns: 32px minmax(0, 1fr) 20px;
  }

  .project-row strong {
    font-size: 1.55rem;
  }

  .studio__bottom dl {
    grid-template-columns: 1fr;
  }

  .footer nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Discipline work pages */
.work-page {
  background:
    radial-gradient(circle at 78% 0%, rgba(201, 168, 100, 0.1), transparent 30rem),
    var(--black);
}

.work-main {
  padding-top: 130px;
}

.work-hero {
  display: flex;
  min-height: min(760px, calc(100svh - 130px));
  flex-direction: column;
  justify-content: flex-end;
  padding-block: clamp(110px, 14vw, 190px) 54px;
  border-bottom: 1px solid var(--line);
}

.work-hero__index,
.work-hero__footer,
.work-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.work-hero__index {
  margin-bottom: auto;
  color: rgba(241, 237, 228, 0.42);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.work-hero h1 {
  max-width: 1120px;
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: clamp(5rem, 11vw, 11rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.72;
  text-transform: uppercase;
}

.work-hero__intro {
  max-width: 650px;
  margin-top: 48px;
  color: rgba(241, 237, 228, 0.7);
  font-size: clamp(0.95rem, 1.25vw, 1.1rem);
  line-height: 1.75;
  white-space: pre-line;
}

.work-hero__footer {
  gap: 32px;
  margin-top: 64px;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work-tabs {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
}

.work-tabs a {
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.work-tabs a:hover,
.work-tabs a:focus-visible,
.work-tabs a.is-active {
  border-color: var(--gold);
  color: var(--gold-light);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(54px, 7vw, 96px) 24px;
  padding-block: clamp(80px, 10vw, 150px);
}

.work-card {
  display: grid;
  min-width: 0;
  align-content: start;
}

.work-card figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--black-soft);
}

.work-card figure::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(241, 237, 228, 0.12);
  background: linear-gradient(180deg, transparent 58%, rgba(8, 8, 7, 0.3));
  content: "";
  pointer-events: none;
}

.work-card img {
  height: 100%;
  object-fit: cover;
  transition:
    filter 500ms ease,
    transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.work-card:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.035);
}

.work-card__meta {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(241, 237, 228, 0.46);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work-card__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.62fr);
  gap: 12px 30px;
  padding-top: 22px;
}

.work-card__type {
  grid-column: 1 / -1;
  color: var(--gold-light);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-transform: uppercase;
}

.work-card__description {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(241, 237, 228, 0.62);
  font-size: 0.88rem;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.work-card__action {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  grid-column: 2;
  margin-top: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-card__action i {
  font-style: normal;
}

.work-contact {
  padding-block: clamp(80px, 11vw, 150px);
  border-top: 1px solid var(--line);
}

.work-contact > a {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7.8rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.86;
  text-transform: uppercase;
}

.work-contact i {
  color: var(--gold);
  font-size: 0.5em;
  font-style: normal;
}

@media (max-width: 780px) {
  .work-main {
    padding-top: 88px;
  }

  .work-hero {
    min-height: calc(100svh - 88px);
    padding-block: 84px 34px;
  }

  .work-hero h1 {
    font-size: clamp(4.1rem, 19vw, 7rem);
  }

  .work-hero__intro {
    margin-top: 34px;
  }

  .work-hero__footer {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 44px;
  }

  .work-tabs {
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .work-tabs a {
    flex: 0 0 auto;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 66px;
  }

  .work-card figure {
    aspect-ratio: 4 / 3;
  }

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

  .work-card__type,
  .work-card__action {
    grid-column: auto;
  }

  .work-card__description {
    max-width: 520px;
  }

  .work-contact > a {
    align-items: flex-start;
  }
}

@media (pointer: coarse), (max-width: 900px) {
  .cursor {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .cursor {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
