@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 300;
  src: url("assets/Fonts/Geist-Light.ttf") format("truetype");
}

@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 500;
  src: url("assets/Fonts/Geist-Medium_0.ttf") format("truetype");
}

@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 600;
  src: url("assets/Fonts/Geist-SemiBold_0.ttf") format("truetype");
}

@font-face {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 700 900;
  src: url("assets/Fonts/PublicSans-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Bodoni Moda";
  font-style: normal;
  font-weight: 400 900;
  src: url("assets/Fonts/BodoniModa-VariableFont_opsz,wght.ttf") format("truetype");
}

:root {
  --yellow: #ffd01f;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --font-body: "Geist", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Bodoni Moda", Georgia, serif;
  --font-ui: "Public Sans", "Geist", "Helvetica Neue", Arial, sans-serif;
  --page-gutter: clamp(18px, 4vw, 58px);
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  min-height: 100%;
  background: #ffffff;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-body);
  background: #111111;
  color: var(--text);
}

body.home-page {
  overflow: hidden;
}

.page-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  overflow: hidden;
  background: #111111;
  transform: translate3d(0, 100%, 0);
  transition: transform 560ms cubic-bezier(0.83, 0, 0.17, 1);
  will-change: transform;
}

.page-transition-overlay::after {
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: var(--yellow);
  content: "";
}

.page-transition-overlay.is-covering {
  transform: translate3d(0, 0, 0);
}

.page-transition-overlay.is-revealing {
  transform: translate3d(0, -100%, 0);
}

.loader-transition {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  pointer-events: none;
  background: #050505;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 260ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.loader-transition.is-visible {
  opacity: 1;
  transform: scale(1);
}

.loader-transition.is-done {
  opacity: 0;
  transform: scale(0.985);
}

.loader-transition-track {
  animation: yellow-box-drift 2200ms ease-in-out infinite;
  animation-delay: var(--loader-phase-delay, 0ms);
}

.loader-transition-mark {
  width: clamp(62px, 8vw, 108px);
  aspect-ratio: 1;
  background: var(--yellow);
  box-shadow: 0 0 42px rgba(255, 208, 31, 0.2);
  animation: yellow-box-float 1100ms ease-in-out infinite;
  animation-delay: var(--loader-phase-delay, 0ms);
}

@keyframes yellow-box-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-3deg);
  }

  50% {
    transform: translate3d(0, -34px, 0) rotate(5deg);
  }
}

@keyframes yellow-box-drift {
  0%,
  100% {
    transform: translate3d(-74px, 0, 0);
  }

  50% {
    transform: translate3d(74px, 0, 0);
  }
}

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

button {
  border: 0;
  color: inherit;
  font: inherit;
}

.home {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.carousel-slides,
.carousel-slide,
.carousel-shade {
  position: absolute;
  inset: 0;
}

.carousel-slides {
  z-index: -3;
}

.carousel-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 700ms ease,
    transform 1100ms ease;
}

.carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.carousel-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.06) 46%, rgba(0, 0, 0, 0.3)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.08) 46%, rgba(0, 0, 0, 0.36));
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 18px var(--page-gutter);
  background: transparent;
}

.about-navbar {
  position: absolute;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-width: 0;
}

.brand img {
  display: block;
  width: clamp(170px, 18vw, 260px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 38px);
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

.carousel-copy {
  position: absolute;
  inset: 0;
  display: grid;
  width: 100%;
  place-content: center;
  justify-items: center;
  padding: 0 clamp(24px, 8vw, 120px);
  text-align: center;
}

.carousel-eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-ui);
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.carousel-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 7vw, 6.8rem);
  font-weight: 600;
  letter-spacing: 0.34em;
  line-height: 1;
  text-indent: 0;
  text-transform: uppercase;
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.4);
}

.carousel-button {
  position: absolute;
  top: 53%;
  z-index: 4;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.carousel-button:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-50%) scale(1.04);
}

.carousel-button span {
  font-size: 1.8rem;
  line-height: 1;
}

.carousel-button.previous {
  left: clamp(18px, 3vw, 42px);
}

.carousel-button.next {
  right: clamp(18px, 3vw, 42px);
}

.carousel-status {
  position: absolute;
  bottom: 34px;
  left: 50%;
  z-index: 4;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.dot {
  width: 34px;
  height: 3px;
  padding: 0;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
}

.dot.is-active {
  background: var(--yellow);
}

.about-page {
  background: #050505;
  overflow-x: hidden;
}

.about-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(170px, 16vw, 250px) clamp(24px, 8vw, 120px)
    clamp(80px, 10vw, 140px);
  background: #050505;
  isolation: isolate;
}

.about-hero img,
.about-hero-overlay {
  position: absolute;
  inset: 0;
}

.about-hero img {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero-overlay {
  z-index: -2;
  background: rgba(0, 0, 0, 0.12);
}

.about-hero-copy {
  width: min(760px, 100%);
  margin-left: clamp(0px, 18vw, 340px);
  transform: translateY(-20px);
}

.about-hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.25rem, 2.2vw, 2.2rem);
  font-weight: 500;
  line-height: 1.25;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.studio-overview {
  display: flex;
  align-items: center;
  padding: clamp(86px, 9vw, 136px) clamp(28px, 13vw, 220px)
    clamp(42px, 5vw, 74px);
  background: #ffffff;
  color: #171717;
}

.studio-overview-content {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(420px, 1.45fr);
  gap: clamp(50px, 7vw, 96px);
  width: 100%;
  align-items: start;
}

.studio-overview-kicker {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
}

.studio-overview-content > p:last-child {
  max-width: 820px;
  margin: 0;
  color: rgba(23, 23, 23, 0.72);
  font-size: clamp(1.35rem, 2vw, 2.12rem);
  font-weight: 500;
  line-height: 1.34;
}

.join-us {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(72px, 10vw, 130px);
  padding: clamp(42px, 5vw, 74px) clamp(28px, 13vw, 220px)
    clamp(86px, 9vw, 136px);
  background: #ffffff;
  color: #171717;
}

.join-us-content {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(420px, 1.45fr);
  gap: clamp(50px, 7vw, 96px);
  align-items: start;
}

.join-us-intro h1 {
  margin: 0 0 clamp(58px, 7vw, 88px);
  font-family: var(--font-ui);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: 0;
}

.join-us-intro p {
  max-width: 500px;
  margin: 0;
  color: rgba(23, 23, 23, 0.48);
  font-size: clamp(0.95rem, 1.25vw, 1.22rem);
  font-weight: 600;
  line-height: 1.55;
}

.join-us-form {
  display: grid;
  gap: 36px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 34px;
  row-gap: 28px;
}

.join-us-form label {
  display: grid;
  gap: 10px;
}

.join-us-form span {
  color: rgba(23, 23, 23, 0.54);
  font-family: var(--font-ui);
  font-size: clamp(0.95rem, 1.15vw, 1.14rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.join-us-form input,
.join-us-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid rgba(23, 23, 23, 0.48);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #171717;
  font: inherit;
}

.join-us-form input {
  height: 28px;
}

.join-us-form textarea {
  min-height: 92px;
  resize: vertical;
}

.join-us-form input:focus,
.join-us-form textarea:focus {
  border-bottom-color: #171717;
}

.join-us-form button {
  justify-self: end;
  min-width: 150px;
  padding: 18px 26px;
  background: #050505;
  color: #ffffff;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
}

.join-us blockquote {
  margin: 0;
  color: #151515;
  font-family: var(--font-ui);
  text-align: center;
  font-size: clamp(1rem, 1.45vw, 1.32rem);
  font-weight: 900;
  line-height: 1.45;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 0.9fr) minmax(260px, 0.8fr);
  gap: clamp(48px, 8vw, 120px);
  padding: clamp(70px, 7vw, 110px) clamp(34px, 12vw, 190px);
  background: #151515;
  color: rgba(255, 255, 255, 0.46);
}

.footer-brand img {
  display: block;
  width: clamp(160px, 17vw, 260px);
  height: auto;
  margin: -44px 0 -18px -54px;
}

.footer-brand p,
.footer-column p,
.footer-column address {
  margin: 0;
  font-style: normal;
  font-size: clamp(0.95rem, 1.1vw, 1.12rem);
  font-weight: 600;
  line-height: 1.7;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 38px;
}

.footer-column h2 {
  margin: 0 0 -8px;
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: clamp(1.12rem, 1.45vw, 1.42rem);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.footer-column strong,
.footer-column a {
  color: #ffffff;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
}

.footer-socials a {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

.footer-socials a:hover {
  color: #ffffff;
}

.footer-socials svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.projects-page {
  --text: #0b0b0b;
  --muted: rgba(11, 11, 11, 0.62);
  min-height: 100vh;
  overflow-x: hidden;
  background: #ffffff;
  color: #0b0b0b;
}

.projects-page .nav-links a {
  color: var(--muted);
}

.projects-page .nav-links a:hover,
.projects-page .nav-links a.active {
  color: var(--text);
}

.projects-shell {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 34px;
  width: min(920px, calc(100% - var(--page-gutter) - var(--page-gutter) - clamp(64px, 9vw, 82px)));
  margin: 0 auto 56px calc(var(--page-gutter) + clamp(64px, 9vw, 82px));
  padding-top: 176px;
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  width: fit-content;
  padding: 10px 0 12px;
  border-bottom: 1px solid rgba(11, 11, 11, 0.14);
  color: #4b4b4b;
  line-height: 1.3;
}

.project-filters button {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 6px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: inherit;
  font-weight: 600;
  font-style: italic;
  white-space: nowrap;
  cursor: pointer;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.project-filters button.active {
  color: #111111;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.project-filters button:hover {
  color: #111111;
  transform: translateY(-1px);
}

.project-filters sup {
  position: relative;
  top: -0.28em;
  font-size: 10px;
  line-height: 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: minmax(320px, 440px);
  column-gap: 0;
  row-gap: 34px;
  padding-top: 0;
}

.project-card {
  display: block;
  min-width: 0;
}

.project-card img {
  display: block;
  width: 100%;
  aspect-ratio: 258 / 171;
  image-orientation: from-image;
  object-fit: cover;
  object-position: center;
}

.project-card h2 {
  margin: 20px 0 4px;
  font-family: var(--font-ui);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.project-card p {
  margin: 0;
  color: #777777;
  font-size: 12px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.2;
}

.project-detail-page {
  min-height: 100vh;
  overflow-x: hidden;
  background: #ffffff;
  color: #0b0b0b;
}

.project-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 670px) 250px;
  column-gap: 34px;
  align-items: start;
  max-width: 980px;
  margin: 0 auto 56px;
  padding: 48px 24px 0;
}

.project-gallery {
  display: grid;
  gap: 14px;
}

.gallery-image {
  display: block;
  width: 100%;
  background: #f4f1eb;
  image-orientation: from-image;
  object-fit: cover;
}

.gallery-image.landscape {
  aspect-ratio: 1.45 / 1;
}

.gallery-image.rotated {
  aspect-ratio: 1 / 1.55;
}

.project-detail-info {
  position: sticky;
  top: 120px;
}

.project-detail-kicker {
  margin: 0 0 8px;
  color: #7a7a7a;
  font-family: var(--font-body);
  font-size: 12px;
  font-style: italic;
  line-height: 1.2;
}

.project-detail-info h1 {
  margin: 0 0 14px;
  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.project-detail-subtitle {
  margin: 0 0 28px;
  color: #202020;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.project-detail-copy {
  margin: 0 0 22px;
  color: #505050;
  font-size: 14px;
  line-height: 1.7;
}

.project-detail-meta {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
}

.project-detail-meta div {
  display: grid;
  gap: 2px;
}

.project-detail-meta dt {
  color: #8a8a8a;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-detail-meta dd {
  margin: 0;
  color: #0b0b0b;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.project-detail-back {
  display: inline-flex;
  align-items: center;
  color: #0b0b0b;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-page {
  --text: #0b0b0b;
  --muted: rgba(11, 11, 11, 0.62);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  background: #ffffff;
  color: #0b0b0b;
}

.contact-page .nav-links a {
  color: var(--muted);
}

.contact-page .nav-links a:hover,
.contact-page .nav-links a.active {
  color: var(--text);
}

.contact-shell {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-top: 172px;
  padding-bottom: 0;
  background: #ffffff;
}

.contact-page #about-footer {
  display: block;
  line-height: 0;
  margin-top: auto;
  background: #151515;
}

.contact-page .site-footer {
  margin-bottom: 0;
}

.contact-banner,
.contact-grid {
  max-width: 1160px;
  margin: 0 auto;
}

.contact-banner {
  width: 100%;
  max-width: none;
  padding: 0;
}

.contact-banner h1 {
  margin: 0;
  padding: 84px 0 92px clamp(96px, 12vw, 170px);
  background: #f5f5f3;
  font-family: var(--font-ui);
  font-size: clamp(2.7rem, 4.2vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 84px;
  padding: 78px 130px 98px;
}

.contact-card {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 14px;
}

.contact-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(11, 11, 11, 0.18);
  color: #8b8b8b;
}

.contact-icon svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-card h2 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.contact-card p {
  margin: 0;
  color: #777777;
  font-size: 1rem;
  line-height: 1.9;
}

.contact-card a {
  color: inherit;
}

@media (max-width: 900px) {
  body.home-page {
    overflow: auto;
  }

  .navbar {
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 14px 18px;
  }

  .nav-links {
    justify-content: flex-end;
    gap: 14px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .carousel-copy {
    inset: 0;
  }

  .carousel-button {
    width: 44px;
    height: 44px;
  }

  .join-us {
    padding: 44px 28px 86px;
  }

  .studio-overview {
    padding: 86px 28px 44px;
  }

  .studio-overview-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .studio-overview-content > p:last-child {
    font-size: clamp(1.16rem, 5vw, 1.55rem);
  }

  .join-us-content {
    grid-template-columns: 1fr;
  }

  .join-us-intro h1 {
    margin-bottom: 28px;
  }

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

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

  .footer-brand img {
    margin-left: -48px;
  }

  .projects-shell {
    width: auto;
    margin: 0 var(--page-gutter) 56px;
    padding-top: 152px;
    row-gap: 30px;
  }

  .project-filters {
    width: 100%;
    padding-top: 0;
  }

  .projects-grid {
    grid-template-columns: minmax(280px, 420px);
    gap: 34px 0;
    padding-top: 0;
  }

  .project-detail-shell {
    grid-template-columns: 1fr;
    row-gap: 28px;
    max-width: none;
    padding-top: 40px;
  }

  .project-detail-info {
    position: static;
  }

  .contact-shell {
    padding-top: 148px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 56px 24px 72px;
  }

  .contact-banner h1 {
    padding: 58px 42px 66px;
  }
}

@media (max-width: 560px) {
  .carousel-slide {
    object-position: center;
  }

  .navbar {
    align-items: start;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    justify-content: end;
    row-gap: 10px;
  }

  .nav-links a {
    font-size: 0.62rem;
  }

  .carousel-title {
    font-size: clamp(2.1rem, 13vw, 4rem);
    letter-spacing: 0.22em;
    text-indent: 0;
  }

  .carousel-eyebrow {
    letter-spacing: 0.16em;
  }

  .about-hero-copy {
    margin-left: 0;
    transform: none;
  }

  .about-hero-copy p {
    font-size: clamp(1.08rem, 5.5vw, 1.75rem);
  }

  .projects-grid {
    grid-template-columns: 1fr;
    padding-top: 8px;
  }

  .project-detail-shell {
    padding: 28px 16px 0;
  }

  .project-detail-copy,
  .project-detail-meta dd {
    font-size: 13px;
  }

  .contact-shell {
    padding-top: 132px;
  }

  .contact-banner {
    padding: 0 16px;
  }

  .contact-banner h1 {
    padding: 42px 24px 48px;
    font-size: 1.9rem;
  }

  .contact-grid {
    padding: 40px 16px 60px;
  }

  .contact-card p {
    font-size: 0.94rem;
    line-height: 1.8;
  }
}
