@font-face {
  font-family: "PP Editorial New";
  src: url("./assets/fonts/pp-editorial-new/PPEditorialNew-Ultralight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PP Editorial New";
  src: url("./assets/fonts/pp-editorial-new/PPEditorialNew-UltralightItalic.otf") format("opentype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "PP Editorial New";
  src: url("./assets/fonts/pp-editorial-new/PPEditorialNew-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PP Editorial New";
  src: url("./assets/fonts/pp-editorial-new/PPEditorialNew-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "PP Editorial New";
  src: url("./assets/fonts/pp-editorial-new/PPEditorialNew-Ultrabold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PP Editorial New";
  src: url("./assets/fonts/pp-editorial-new/PPEditorialNew-UltraboldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --bg-accent: #ffffff;
  --surface: rgba(255, 255, 255, 0.96);
  --surface-strong: rgba(255, 255, 255, 0.99);
  --text: #111111;
  --muted: #5e5a53;
  --line: rgba(17, 17, 17, 0.1);
  --shadow: 0 28px 90px rgba(17, 17, 17, 0.08);
  --accent: #111111;
  --accent-soft: rgba(17, 17, 17, 0.05);
  --font-heading: "PP Editorial New", "Times New Roman", serif;
  --radius: 18px;
  --transition: 320ms ease;
  --route-transition-duration: 600ms;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

html.is-route-changing {
  scroll-behavior: auto;
}

html.home-first-paint,
html.home-first-paint body {
  background: #000000;
  color: #ffffff;
}

html.home-first-paint body {
  min-height: 100vh;
}

html.home-first-paint .site-header,
html.home-first-paint .menu-overlay,
html.home-first-paint .custom-cursor {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

html.home-first-paint #app {
  opacity: 1;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: #ffffff;
  transition:
    background-color var(--route-transition-duration) cubic-bezier(0.22, 1, 0.36, 1),
    color var(--route-transition-duration) cubic-bezier(0.22, 1, 0.36, 1);
}

body p {
  font-family: "ltc-goudy-oldstyle-pro", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem !important;
  color: rgb(65, 65, 65);
  line-height: 1.625;
}

body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

body.home-preload-active {
  overflow: hidden;
}

body.page-home-active.home-preload-active .site-header,
body.page-home-active.home-preload-active .menu-overlay,
body.page-home-active.home-preload-active .custom-cursor {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 96px;
  height: 96px;
  border: 1px solid #000000;
  border-radius: 50%;
  background: transparent;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-999px, -999px, 0);
  will-change: transform, opacity, border-color, border-width;
  transition:
    opacity 180ms ease,
    border-color 360ms ease,
    border-width 180ms ease;
}

body.cursor-visible .custom-cursor {
  opacity: 1;
}

body.cursor-on-link .custom-cursor {
  border-width: 3px;
}

body.page-theme-light {
  background: #ffffff;
  color: #111111;
}

body.page-theme-dark {
  background: #000000;
  color: #ffffff;
}

body.page-home-active {
  background: #ffffff;
  color: #ffffff;
}

body.page-home-active:not(.home-shell-revealed) .custom-cursor {
  border-color: #ffffff;
}

body.page-theme-dark:not(.page-home-active) .custom-cursor,
body.cursor-on-media .custom-cursor {
  border-color: #ffffff;
}

body.page-home-active.home-shell-revealed .custom-cursor {
  border-color: #000000;
}

body.menu-open .custom-cursor {
  border-color: #000000;
}

body.cursor-force-light .custom-cursor {
  border-color: #ffffff;
}

body.cursor-force-dark .custom-cursor {
  border-color: #000000;
}

body.page-home-active:not(.home-shell-revealed):not(.menu-open) .custom-cursor {
  border-color: #ffffff !important;
}

body.page-home-active.home-shell-revealed .custom-cursor,
body.page-home-active.menu-open.home-shell-revealed .custom-cursor {
  border-color: #000000 !important;
}

body.page-home-active.menu-open:not(.home-shell-revealed) .custom-cursor {
  border-color: #ffffff !important;
}

.page-shell {
  width: calc(100% - clamp(1.5rem, 4vw, 5rem));
  margin: 0 auto;
  padding: clamp(1rem, 2vw, 2rem) 0 clamp(2rem, 4vw, 4rem);
}

body:not(.page-home-active) .page-shell {
  padding-top: 0;
}

.site-header {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  padding: 1rem clamp(1rem, 2.4vw, 2rem);
  border: 0px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  /*box-shadow: 0 18px 50px rgba(17, 17, 17, 0.06);*/
  transition:
    opacity 320ms ease,
    background-color var(--route-transition-duration) cubic-bezier(0.22, 1, 0.36, 1),
    color var(--route-transition-duration) cubic-bezier(0.22, 1, 0.36, 1);
}

body:not(.page-home-active) .site-header {
  margin-bottom: 0;
  padding-top: clamp(1rem, 2vw, 2rem);
  padding-bottom: clamp(1rem, 2vw, 2rem);
  border-radius: 0;
  /*background: #ffffff;*/
  backdrop-filter: none;
  color: #111111;
}

body:not(.page-home-active) .site-header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  background: #ffffff;
  transform: translateX(-50%);
  z-index: -1;
  transition: background-color var(--route-transition-duration) cubic-bezier(0.22, 1, 0.36, 1);
}

body:not(.page-home-active) .site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #000000;
  transition: background-color var(--route-transition-duration) cubic-bezier(0.22, 1, 0.36, 1);
}

body:not(.page-home-active) .view::before {
  opacity: 0;
}

body:not(.page-home-active) .brand,
body:not(.page-home-active) .menu-toggle {
  color: #111111;
}

body.route-transitioning.page-home-active .site-header {
  position: fixed;
  top: clamp(1rem, 2vw, 2rem);
  left: 50%;
  width: calc(100% - clamp(1.5rem, 4vw, 5rem));
  margin: 0;
  transform: translateX(-50%);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

body.home-standard-exit.route-transitioning.page-home-active .site-header {
  position: fixed;
  top: 0;
  left: 50%;
  width: calc(100% - clamp(1.5rem, 4vw, 5rem));
  margin: 0;
  padding-top: clamp(1rem, 2vw, 2rem);
  padding-bottom: clamp(1rem, 2vw, 2rem);
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  color: #111111;
  transform: translateX(-50%) translateZ(0);
  will-change: transform, opacity, background-color, color;
  transition:
    opacity 320ms ease,
    background-color var(--route-transition-duration) cubic-bezier(0.22, 1, 0.36, 1),
    color var(--route-transition-duration) cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-standard-exit.route-transitioning.page-home-active .site-header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  background: #ffffff;
  transform: translateX(-50%) translateZ(0);
  z-index: -1;
  will-change: transform, background-color;
  transition: background-color var(--route-transition-duration) cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-standard-exit.route-transitioning.page-home-active .site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #000000;
  transition: background-color var(--route-transition-duration) cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-standard-exit.route-transitioning.page-home-active .brand,
body.home-standard-exit.route-transitioning.page-home-active .header-instagram,
body.home-standard-exit.route-transitioning.page-home-active .menu-toggle {
  color: #111111;
}

body.home-standard-exit.route-transitioning.page-home-active .menu-toggle {
  background: transparent;
}

.brand,
.site-nav a {
  color: inherit;
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color var(--route-transition-duration) cubic-bezier(0.22, 1, 0.36, 1);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.header-actions::after {
  content: "";
  order: 2;
  width: 1px;
  height: 1rem;
  background: currentColor;
  opacity: 0.72;
}

.header-instagram {
  order: 1;
  color: inherit;
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    color var(--route-transition-duration) cubic-bezier(0.22, 1, 0.36, 1),
    opacity var(--transition);
}

.header-instagram:hover,
.header-instagram:focus-visible {
  opacity: 0.64;
  outline: none;
}

.menu-toggle {
  order: 3;
}

.brand-logo {
  display: block;
  width: clamp(2.3rem, 3.2vw, 3.5rem);
  height: auto;
}

.menu-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  border: 0px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  cursor: pointer;
  transition:
    color var(--route-transition-duration) cubic-bezier(0.22, 1, 0.36, 1),
    background-color var(--transition),
    transform var(--transition);
}

.menu-toggle span {
  position: absolute;
  width: 3.15rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-0.44rem);
}

.menu-toggle span:nth-child(2) {
  transform: translateY(0);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(0.44rem);
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(17, 17, 17, 0.06);
  outline: none;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  align-items: center;
  justify-items: start;
  padding: clamp(6rem, 8vw, 8rem) clamp(1.5rem, 4vw, 5rem) clamp(2rem, 4vw, 3rem);
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scaleY(0);
  transform-origin: top center;
  will-change: transform, opacity;
  transition:
    background-color 560ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 546ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 676ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 676ms;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: rgba(17, 17, 17, 0.82);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.lightbox[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-frame {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.lightbox-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 90vh;
  height: auto;
  object-fit: contain;
  transform: scale(0.985);
  transition: transform 220ms ease;
}

.lightbox[aria-hidden="false"] .lightbox-image {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: clamp(1rem, 2.4vw, 1.75rem);
  right: clamp(1rem, 2.4vw, 1.75rem);
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: opacity var(--transition);
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  opacity: 0.7;
  outline: none;
}

.site-header.menu-open + .menu-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scaleY(1);
  transform-origin: top center;
  transition:
    background-color 560ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 546ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 676ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

.site-header.menu-closing {
  background: transparent;
  backdrop-filter: none;
}

.site-header.menu-closing + .menu-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scaleY(0);
  transform-origin: top center;
  transition:
    background-color 560ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 286ms ease 390ms,
    transform 676ms cubic-bezier(0.32, 0.02, 0.12, 1) 300ms,
    visibility 0s linear 976ms;
}

.site-nav {
  display: grid;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  align-content: center;
}

.site-nav a {
  opacity: 0;
  transform: translateY(34px);
  will-change: transform, opacity;
  width: fit-content;
  padding: 0;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: clamp(4rem, 9vw, 8.4rem);
  font-weight: 200;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: none;
  transition:
    opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1),
    color 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.menu-open + .menu-overlay .site-nav a {
  opacity: 1;
  transform: translateY(0);
}

.site-header.menu-closing + .menu-overlay .site-nav a {
  opacity: 0;
  transform: translateY(0);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    color 220ms ease;
  transition-delay: 0ms !important;
}

.site-header.menu-open + .menu-overlay .site-nav a:nth-child(1) {
  transition-delay: 150ms;
}

.site-header.menu-open + .menu-overlay .site-nav a:nth-child(2) {
  transition-delay: 240ms;
}

.site-header.menu-open + .menu-overlay .site-nav a:nth-child(3) {
  transition-delay: 330ms;
}

.site-header.menu-open + .menu-overlay .site-nav a:nth-child(4) {
  transition-delay: 420ms;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: rgba(17, 17, 17, 0.42);
  opacity: 1;
  outline: none;
}

.site-nav a:active {
  transform: translateY(1px);
}

span.home.eyebrow {
    display: none;
}

.view {
  position: relative;
  min-height: calc(100vh - 9rem);
  padding: clamp(1.5rem, 3vw, 3rem);
  border: 0px solid var(--line);
  border-top: 1px solid #000;
  border-radius: 0px;
  /* background: linear-gradient(180deg, var(--surface-strong) 0%, var(--surface) 100%); */
  transition:
    border-top-color 560ms cubic-bezier(0.22, 1, 0.36, 1),
    color 560ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (pointer: fine) {
  body.has-custom-cursor,
  body.has-custom-cursor * {
    cursor: none !important;
  }
}

body.page-theme-dark .site-header {
  background: rgba(0, 0, 0, 0.92);
  color: #ffffff;
}

body.page-theme-dark:not(.page-home-active) .site-header {
  background: transparent;
  backdrop-filter: none;
}

body.page-theme-dark:not(.page-home-active) .site-header::before {
  background: #000000;
}

body.page-theme-dark:not(.page-home-active) .site-header::after {
  background: rgba(255, 255, 255, 0.11);
}

body.page-theme-dark .brand {
  color: #ffffff;
}

body.page-theme-dark .menu-toggle {
  background: rgba(0, 0, 0, 0.92);
  color: #ffffff;
}

body.page-theme-dark .menu-toggle:hover,
body.page-theme-dark .menu-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

body.menu-theme-dark:not(.page-home-active) .menu-overlay {
  background: #000000;
}

body.menu-theme-dark:not(.page-home-active) .menu-overlay .site-nav a {
  color: #ffffff;
}

body.menu-theme-dark:not(.page-home-active) .menu-overlay .site-nav a:hover,
body.menu-theme-dark:not(.page-home-active) .menu-overlay .site-nav a:focus-visible,
body.menu-theme-dark:not(.page-home-active) .menu-overlay .site-nav a.is-active {
  color: rgba(255, 255, 255, 0.42);
}

body.menu-theme-dark:not(.page-home-active) .site-header.menu-closing + .menu-overlay {
  background: #000000;
}

body.page-theme-dark:not(.page-home-active) .menu-overlay {
  background: #ffffff;
}

body.page-theme-dark:not(.page-home-active) .menu-overlay .site-nav a {
  color: #111111;
}

body.page-theme-dark:not(.page-home-active) .menu-overlay .site-nav a:hover,
body.page-theme-dark:not(.page-home-active) .menu-overlay .site-nav a:focus-visible,
body.page-theme-dark:not(.page-home-active) .menu-overlay .site-nav a.is-active {
  color: rgba(17, 17, 17, 0.42);
}

body.page-theme-dark .site-header.menu-closing {
  background: transparent;
  backdrop-filter: none;
}

body:not(.page-home-active) .site-header.menu-closing::before {
  background: transparent;
}

body.page-theme-dark:not(.page-home-active) .site-header.menu-closing + .menu-overlay {
  background: #ffffff;
}

body.page-theme-dark .view {
  border-top-color: rgba(255, 255, 255, 0.11);
  color: #ffffff;
}

body.page-folio-project .site-header,
body.page-folio-index-active .site-header,
body.page-home-active .site-header, body.page-theme-dark:not(.page-home-active) .site-header {
  padding-left: clamp(1.5rem, 3vw, 3rem);
  padding-right: clamp(1.5rem, 3vw, 3rem);
}

.site-header {
  padding-left: clamp(1.5rem, 3vw, 3rem);
  padding-right: clamp(1.5rem, 3vw, 3rem);
}

body.page-folio-project .view,
body.page-folio-index-active .view,
body.page-contact-active .view,
body.page-home-active .view {
  border-top-color: transparent;
}

body.page-folio-project .view::before,
body.page-folio-index-active .view::before,
body.page-home-active .view::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(1.5rem, 3vw, 3rem);
  right: clamp(1.5rem, 3vw, 3rem);
  height: 1px;
  background: #000000;
  opacity: 1;
  transition:
    opacity var(--transition),
    background-color 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.page-theme-dark.page-folio-project .view::before,
body.page-theme-dark.page-folio-index-active .view::before,
body.page-home-active .view::before {
  background: rgba(255, 255, 255, 0.11);
}

body:not(.page-home-active) .view::before {
  content: none !important;
}

body.page-home-active .page-shell {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 0;
}

body.page-home-active .site-header {
  position: absolute;
  top: clamp(1rem, 2vw, 2rem);
  left: 50%;
  z-index: 35;
  width: calc(100% - clamp(1.5rem, 4vw, 5rem));
  margin: 0;
  background: transparent;
  backdrop-filter: none;
  color: #ffffff;
  opacity: 1;
  transform: translateX(-50%);
  transition:
    top 420ms cubic-bezier(0.34, 1.56, 0.64, 1),
    padding-top 420ms cubic-bezier(0.34, 1.56, 0.64, 1),
    padding-bottom 420ms cubic-bezier(0.34, 1.56, 0.64, 1),
    color 360ms ease,
    opacity 360ms ease,
    background-color 360ms ease;
}

body.page-home-active .brand,
body.page-home-active .menu-toggle {
  color: #ffffff;
}

body.page-home-active .menu-toggle {
  background: transparent;
}

body.page-home-active .menu-toggle:hover,
body.page-home-active .menu-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

body.page-home-active .view {
  min-height: 100vh;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0;
  border-top: 0;
  color: #ffffff;
}

body.page-home-active.home-header-docked .site-header {
  position: fixed;
  top: clamp(1rem, 2vw, 2rem);
  left: 50%;
  z-index: 35;
  width: calc(100% - clamp(1.5rem, 4vw, 5rem));
  margin: 0;
  transform: translateX(-50%);
  background: transparent;
  backdrop-filter: none;
  color: #111111;
  opacity: 1;
  animation: none;
}

body.page-home-active.home-header-framed .site-header {
  top: 0;
  padding-top: clamp(1rem, 2vw, 2rem);
  padding-bottom: clamp(1rem, 2vw, 2rem);
  border-radius: 0;
  background: #ffffff;
}

body.page-home-active.home-header-framed .site-header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  background: #ffffff;
  transform: translateX(-50%);
  z-index: -1;
}

body.page-home-active.home-header-framed .site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #000000;
}

body.page-home-active.home-header-framed .view::before {
  opacity: 0;
}

body.page-home-active.home-header-docked .brand,
body.page-home-active.home-header-docked .menu-toggle {
  color: #111111;
}

body.page-home-active.home-shell-revealed .brand,
body.page-home-active.home-shell-revealed .menu-toggle {
  color: #111111;
}

body.page-home-active.home-header-docked .menu-toggle {
  background: transparent;
}

body.page-home-active.home-header-docked .menu-toggle:hover,
body.page-home-active.home-header-docked .menu-toggle:focus-visible {
  background: rgba(17, 17, 17, 0.08);
}

body.page-home-active.menu-open .site-header {
  background: transparent;
}

body.page-home-active.menu-open .menu-toggle {
  background: rgba(255, 255, 255, 0.96);
  color: #111111;
}

body.page-home-active:not(.home-shell-revealed).menu-open .menu-overlay {
  background: #000000;
}

body.page-home-active:not(.home-shell-revealed).menu-open .site-nav a,
body.page-home-active:not(.home-shell-revealed).menu-open .site-nav a:hover,
body.page-home-active:not(.home-shell-revealed).menu-open .site-nav a:focus-visible,
body.page-home-active:not(.home-shell-revealed).menu-open .site-nav a.is-active {
  color: rgba(255, 255, 255, 0.42);
}

body.page-home-active:not(.home-shell-revealed).menu-open .site-nav a {
  color: #ffffff;
}

body.page-home-active:not(.home-shell-revealed).menu-open .menu-toggle {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

body.page-home-active:not(.home-shell-revealed).menu-open .menu-toggle:hover,
body.page-home-active:not(.home-shell-revealed).menu-open .menu-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

body.page-home-active:not(.home-shell-revealed).menu-open .brand {
  color: #ffffff;
}

body.page-home-active:not(.home-shell-revealed).menu-open .custom-cursor {
  border-color: #ffffff;
}

body.page-theme-dark.menu-open .site-header {
  background: transparent;
}

body.page-theme-dark.menu-open .menu-toggle {
  background: rgba(255, 255, 255, 0.96);
  color: #111111;
}

body.menu-theme-light.menu-open:not(.page-home-active) .site-header {
  background: transparent;
  color: #111111;
}

body.menu-theme-light.menu-open:not(.page-home-active) .site-header::before {
  background: #ffffff;
}

body.menu-theme-light.menu-open:not(.page-home-active) .site-header::after {
  background: rgba(17, 17, 17, 0.12);
}

body.menu-theme-light.menu-open:not(.page-home-active) .brand,
body.menu-theme-light.menu-open:not(.page-home-active) .header-instagram,
body.menu-theme-light.menu-open:not(.page-home-active) .menu-toggle {
  color: #111111;
}

body.menu-theme-light.menu-open:not(.page-home-active) .menu-toggle {
  background: rgba(17, 17, 17, 0.06);
}

body.menu-theme-light.menu-open:not(.page-home-active) .menu-toggle:hover,
body.menu-theme-light.menu-open:not(.page-home-active) .menu-toggle:focus-visible {
  background: rgba(17, 17, 17, 0.1);
}

body.menu-theme-light.menu-open:not(.page-home-active) .custom-cursor {
  border-color: #000000;
}

body.menu-theme-dark.menu-open:not(.page-home-active) .site-header {
  background: transparent;
  color: #ffffff;
}

body.menu-theme-dark.menu-open:not(.page-home-active) .site-header::before {
  background: #000000;
}

body.menu-theme-dark.menu-open:not(.page-home-active) .site-header::after {
  background: rgba(255, 255, 255, 0.11);
}

body.menu-theme-dark.menu-open:not(.page-home-active) .brand,
body.menu-theme-dark.menu-open:not(.page-home-active) .header-instagram,
body.menu-theme-dark.menu-open:not(.page-home-active) .menu-toggle {
  color: #ffffff;
}

body.menu-theme-dark.menu-open:not(.page-home-active) .menu-toggle {
  background: rgba(255, 255, 255, 0.08);
}

body.menu-theme-dark.menu-open:not(.page-home-active) .menu-toggle:hover,
body.menu-theme-dark.menu-open:not(.page-home-active) .menu-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

body.menu-theme-dark.menu-open:not(.page-home-active) .custom-cursor {
  border-color: #ffffff;
}

.view-enter {
  opacity: 0;
  transform: translateY(18px);
}

.view-enter::before,
.view-exit-active::before {
  opacity: 0;
}

.view-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.view-enter-active::before,
.view-exit::before {
  opacity: 1;
}

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

.view-exit-active {
  opacity: 0;
  transform: none;
  transition:
    opacity var(--route-transition-duration) ease;
}

.page {
  display: grid;
  gap: clamp(1.25rem, 2vw, 1rem);
  align-content: center;
  min-height: inherit;
}

.page-home-video {
  --home-progress: 0;
  position: relative;
  min-height: 220vh;
  overflow: clip;
  align-content: start;
  gap: 0;
  background: #ffffff;
}

.home-hero-stage {
  position: sticky;
  top: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  height: 100vh;
  padding: 0;
  pointer-events: none;
}

.home-preloader {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  background: #000000;
  color: #ffffff;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 720ms;
}

.home-preloader-mark {
  display: grid;
  place-items: center;
  opacity: 1;
  transition:
    opacity 280ms cubic-bezier(0.32, 0, 0.67, 0),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-preloader-logo {
  width: clamp(14rem, 34vw, 28rem);
  max-width: min(78vw, 28rem);
  height: auto;
  animation: home-preloader-pulse 1.4s ease-in-out infinite alternate;
}

.page-home-video.home-preloader-logo-hidden .home-preloader-mark {
  opacity: 0;
  transform: scale(0.985);
}

.page-home-video.home-is-ready .home-preloader {
  opacity: 0;
  visibility: hidden;
}

.home-video-shell {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000000;
  border-radius: calc(var(--home-progress) * 28px);
  clip-path: inset(
    calc(var(--home-progress) * clamp(9rem, 7vh, 7.5rem))
    calc((var(--home-progress) * (clamp(1.5rem, 4vw, 5rem) / 2)) + (var(--home-progress) * 32px))
    calc(var(--home-progress) * 12vh)
    calc((var(--home-progress) * (clamp(1.5rem, 4vw, 5rem) / 2)) + (var(--home-progress) * 32px))
    round calc(var(--home-progress) * 28px)
  );
  transform-origin: center center;
  will-change: clip-path, border-radius;
  box-shadow: 0 28px 90px rgba(17, 17, 17, calc(var(--home-progress) * 0.1));
  transition:
    border-radius 120ms linear,
    box-shadow 120ms linear;
}

.home-video-media,
.home-video-wordmark-layer,
.home-video-wash,
.home-video-content {
  position: absolute;
  inset: 0;
}

section.folio-index-section.home-folio-section {
    border-top: 1px solid #000;
}

.home-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(calc(1.04 - (var(--home-progress) * 0.04)));
  transform-origin: center center;
  will-change: transform, opacity;
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.page-home-video.home-video-visible .home-video-element {
  transform: scale(calc(1 - (var(--home-progress) * 0.04)));
}

.page-home-video.home-video-live .home-video-element {
  opacity: 1;
}

.home-video-wash {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.28) 38%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.14) 100%);
  opacity: calc(1 - (var(--home-progress) * 1.8));
  will-change: opacity;
  display: none;
}

.home-video-wordmark-layer {
  z-index: 1;
  display: grid;
  align-content: end;
  justify-items: center;
  padding: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 5vw, 5rem) clamp(5.25rem, 9vw, 7rem);
  /*mix-blend-mode: exclusion;*/
  pointer-events: none;
}

.home-video-content {
  z-index: 2;
  display: grid;
  align-content: end;
  justify-items: center;
  padding: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 5vw, 5rem) clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
  opacity: calc(1 - (var(--home-progress) * 1.8));
  pointer-events: none;
}

.page-home-video .home.eyebrow,
.page-home-video .hero-wordmark,
.page-home-video .home-hero-meta,
.page-home-video .home-hero-meta span {
  opacity: 0;
  will-change: opacity, transform, filter;
}

.page-home-video .home.eyebrow {
  transform: translateY(1rem);
  filter: blur(8px);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.page-home-video .eyebrow {
  justify-self: center;
  color: rgba(255, 255, 255, 0.82);
}

span.home.eyebrow {
    margin-bottom: 16px;
}

.page-home-video .hero-copy {
  display: grid;
  justify-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: 100%;
  margin-top: auto;
  container-type: inline-size;
}

.page-home-video .hero-wordmark {
  --hero-wordmark-reveal: 0;
  --hero-wordmark-scroll-fade: clamp(0, (0.42 - var(--home-progress)) * 4.2, 1);
  width: 90vw;
  max-width: 90vw;
  margin: 0;
  margin-bottom: 16px;
  opacity: calc(var(--hero-wordmark-reveal) * var(--hero-wordmark-scroll-fade));
  transform: translateY(2rem) scale(0.985);
  transform-origin: center center;
  filter: blur(16px);
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1200ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.page-home-video .hero-wordmark-image {
  display: block;
  width: 100%;
  height: auto;
}

.home-hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  margin: 0;
  margin-top: clamp(1.5rem, 3vw, 2.2rem);
  color: rgba(255, 255, 255, 0.92);
  font-family: "lft-etica-mono", sans-serif;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(1.25rem);
  filter: blur(10px);
  transition:
    opacity 640ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 960ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 960ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-hero-meta span {
  white-space: nowrap;
  transform: translateY(0.75rem);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-hero-meta span:nth-child(1) {
  transition-delay: 40ms;
}

.home-hero-meta span:nth-child(2) {
  transition-delay: 100ms;
}

.home-hero-meta span:nth-child(3) {
  transition-delay: 160ms;
}

.home-hero-meta span:nth-child(4) {
  transition-delay: 220ms;
}

.page-home-video.home-ui-visible .home.eyebrow,
.page-home-video.home-ui-visible .home-hero-meta,
.page-home-video.home-ui-visible .home-hero-meta span {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.page-home-video.home-ui-visible .hero-wordmark {
  --hero-wordmark-reveal: 1;
  transform: translateY(calc(var(--home-progress) * -5vh)) scale(1);
  filter: blur(0);
}

.home-hero-scroll-space {
  height: 76vh;
}

.home-story {
  position: relative;
  z-index: 2;
  min-height: clamp(48rem, 75vh, 80rem);
  margin-top: -6vh;
  display: grid;
  align-items: center;
  /* Comment out */
  /*padding: clamp(2rem, 4vw, 4rem) clamp(2rem, 5vw, 4.2rem);*/
  background: #ffffff;
  border-top: 1px solid #000000;
}

.home-story-copy {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: min(100%, 78rem);
  margin: 0 auto;
  min-height: clamp(40rem, 78vh, 60rem);
  align-content: center;
  padding: clamp(1rem, 2vw, 1.5rem) 0;
  container-type: inline-size;
}

.home-story-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 100%);
  min-height: inherit;
}

.home-story-secondary {
  padding: 0;
}

.home-story-secondary .home-story-copy {
  width: 100%;
  min-height: clamp(40rem, 78vh, 60rem);
  padding: clamp(2rem, 4vw, 4rem);
  border-left: 1px solid #000000;
  justify-items: center;
  text-align: center;
  overflow: hidden;
}

.home-story-secondary .home-story-copy:first-child {
  border-left: 0;
}

.home-story-heading-split {
  width: min(100%, 7.6ch);
  max-width: none;
  font-size: clamp(3rem, 13cqi, 5.65rem);
  line-height: 1;
  text-wrap: initial;
}

.home-story-heading-split[data-pre-split-heading="true"] {
  display: grid;
  justify-items: center;
  gap: 0.02em;
}

.home-story-heading-split .heading-line-clip {
  padding-bottom: 0;
}

.home-story-heading-split .heading-line {
  white-space: nowrap;
  line-height: 1;
}

@keyframes home-header-fade-in {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes home-preloader-pulse {
  from {
    opacity: 0.58;
    transform: scale(0.98);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.home-story .eyebrow {
  justify-self: center;
  color: #111111;
}

.home-story-heading {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10cqi, 8.6rem);
  font-weight: 200;
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-align: center;
  color: #111111;
}

.home-story-body {
  display: grid;
  justify-items: center;
  gap: 1.35rem;
}

.home-story-body p {
  max-width: 38ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 0.8rem);
  line-height: 1.4;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-decoration: none;
  text-transform: uppercase;
}

.eyebrow-back {
  font-family: "lft-etica-mono", sans-serif;
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.eyebrow-back:hover,
.eyebrow-back:focus-visible {
  opacity: 0.7;
  outline: none;
}

.eyebrow-back-icon {
  width: 0.7rem;
  height: 0.7rem;
  flex: 0 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(20rem, 0.72fr);
  gap: clamp(2rem, 6vw, 8rem);
  align-items: start;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  max-width: 10ch;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 200;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.heading-lines {
  display: block;
}

.heading-line-clip {
  display: block;
  overflow: hidden;
  padding-top: 0.05em;
  padding-bottom: 0.08em;
}

.heading-line {
  display: block;
  opacity: 0;
  transform: translateY(0.7em);
  filter: blur(6px);
}

.heading-line.is-visible {
  animation: heading-line-in 700ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: var(--line-delay, 0ms);
}

@keyframes heading-line-in {
  from {
    opacity: 0;
    transform: translateY(0.7em);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-copy p,
.panel p {
  margin: 0;
  max-width: 65ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.95;
}

.fade-copy,
.home-story-fade,
.fade-item {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);
}

.fade-copy.is-visible,
.home-story-fade.is-visible,
.fade-item.is-visible {
  animation: fade-item-in 760ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: var(--item-delay, 0ms);
}

.folio-card.fade-item {
  transform: translateY(32px);
}

.folio-card.fade-item.is-visible {
  animation: folio-image-in 980ms cubic-bezier(0.16, 0.84, 0.24, 1) forwards;
  animation-delay: var(--item-delay, 0ms);
}

@keyframes fade-item-in {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes folio-image-in {
  from {
    opacity: 0;
    transform: translateY(32px);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.panel {
  padding: clamp(1.2rem, 1.6vw, 1.75rem);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0;
  background: rgba(17, 17, 17, 0.015);
}

.panel strong {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
}

.page-folio {
  align-content: start;
}

.page-folio.page-folio-dark {
  color: #ffffff;
  background: #000000;
}

.page-folio.page-folio-dark .eyebrow,
.page-folio.page-folio-dark .folio-heading,
.page-folio.page-folio-dark .folio-copy p,
.page-folio.page-folio-dark .folio-editorial-hero .eyebrow,
.page-folio.page-folio-dark .folio-list-arrow {
  color: rgba(255, 255, 255, 0.72);
}

.page-folio.page-folio-dark .folio-copy h1,
.page-folio.page-folio-dark .folio-editorial-hero h1,
.page-folio.page-folio-dark .project-intro-title h1 {
  color: #ffffff;
}

.page-folio.page-folio-dark .folio-image {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.page-folio.page-folio-dark .project-pagination {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.page-folio.page-folio-dark .project-pagination::after {
  background: rgba(255, 255, 255, 0.14);
}

.page-folio.page-folio-dark .project-link-label {
  color: rgba(255, 255, 255, 0.72);
}

.page-folio-index {
  align-content: start;
}

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

.folio-index-copy {
  min-width: 0;
}

.folio-index-copy h1 {
  margin: 0;
  max-width: 10ch;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 200;
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: #111111;
}

.folio-index-header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.72fr);
  gap: clamp(2rem, 7vw, 10rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 3rem);
}

.home-folio-section {
  z-index: 2;
  margin-top: 0;
  width: calc(100% - clamp(1.5rem, 4vw, 5rem) - (clamp(1.5rem, 3vw, 3rem) * 2));
  margin-left: auto;
  margin-right: auto;
  padding-top: clamp(3rem, 6vw, 5rem);
  color: #111111;
  padding-left: 0;
  padding-right: 0;
}

.home-folio-shell {
  position: relative;
  z-index: 2;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #ffffff;
  padding-bottom: 8rem;
}

.home-folio-section .folio-index-copy {
  container-type: inline-size;
  width: min(50vw, 100%);
}

.home-folio-section .folio-index-copy h1 {
  max-width: 100%;
  /*font-size: clamp(3rem, 13cqi, 5.65rem);*/
  font-size: clamp(4rem, 10cqi, 8.6rem);
  line-height: 1;
  text-wrap: initial;
  display: none;
}

.home-folio-section .folio-list-link,
.home-folio-section .folio-list-title,
.home-folio-section .folio-list-label {
  color: #111111;
}

.folio-index-intro {
  margin: 0;
  max-width: 44ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.85;
}

.folio-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 2.4vw, 2.4rem);
}

.folio-list-item {
  min-width: 0;
}

.folio-list-link {
  display: grid;
  gap: 1.2rem;
  color: inherit;
  text-decoration: none;
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.folio-list-link:hover,
.folio-list-link:focus-visible {
  outline: none;
}

.folio-list-media {
  min-width: 0;
}

.folio-list-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(17, 17, 17, 0.04);
}

.folio-list-image-static,
.folio-list-hover-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.folio-list-image-static {
  position: relative;
  z-index: 1;
  opacity: 1;
  transition:
    opacity 220ms ease,
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.folio-list-hover-video {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  filter: grayscale(1);
  transition: opacity 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .folio-list-image:not(.has-hover-video) .folio-list-image-static {
    transform: scale(1);
  }

  .folio-list-link:hover .folio-list-image:not(.has-hover-video) .folio-list-image-static,
  .folio-list-link:focus-visible .folio-list-image:not(.has-hover-video) .folio-list-image-static {
    transform: scale(1.035);
  }

  .folio-list-image.has-hover-video.is-video-active .folio-list-image-static {
    opacity: 0;
  }

  .folio-list-image.has-hover-video.is-video-active .folio-list-hover-video {
    opacity: 1;
  }
}

@media (hover: none), (pointer: coarse) {
  .folio-list-hover-video {
    opacity: 0 !important;
  }

  .folio-list-image-static {
    opacity: 1 !important;
  }
}

.folio-list-copy {
  display: grid;
  gap: 0.35rem;
}

.folio-list-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.folio-list-title {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.44rem, 2.76vw, 2.88rem);
  line-height: 0.92;
}

.folio-list-copy p {
  margin: 0;
  max-width: 54ch;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.05vw, 1rem);
  line-height: 1.9;
}

.folio-list-arrow {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.page-folio.page-folio-dark .folio-list-label {
  color: rgba(255, 255, 255, 0.72);
}

.folio-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}

.folio-copy {
  position: sticky;
  top: clamp(1.5rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.0625rem, 1vw, 1rem);
  align-self: start;
}

.folio-heading {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.page-folio-project .folio-copy p {
  font-size: 1rem !important;
}

.folio-copy h1 {
  margin: 0;
  width: 100%;
  max-width: 16ch;
  font-family: var(--font-heading);
  font-size: clamp(4.4rem, 5.8vw, 7.8rem);
  font-weight: 200;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.project-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.58fr);
  gap: clamp(2rem, 8vw, 9rem);
  align-items: start;
  width: min(100%, 76rem);
  margin: clamp(2rem, 5vw, 5.5rem) auto 0;
}

.project-intro-title h1 {
  margin: 0;
  width: 100%;
  max-width: 25ch;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 5vw, 4rem);
  font-weight: 200;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.project-intro-details {
  display: grid;
  gap: clamp(1.5rem, 2.4vw, 2.2rem);
  width: min(100%, 56ch);
  padding-top: clamp(0.35rem, 1vw, 0.8rem);
  justify-self: end;
}

.project-intro-description {
  margin: 0;
  color: var(--text);
  font-family: "ltc-goudy-oldstyle-pro", serif;
  font-size: 1rem !important;
  line-height: 1.5;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0;
  margin: 0;
  padding: 0;
  max-width: 100%;
  color: rgba(17, 17, 17, 0.48);
  font-family: "lft-etica-mono", sans-serif;
  font-size: 0.72rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  list-style: none;
}

.project-meta li {
  display: inline-flex;
  align-items: center;
}

.project-meta li:not(:last-child)::after {
  content: ".";
  margin: 0 0.6rem;
}

.page-folio.page-folio-dark .project-intro-description {
  color: #ffffff;
}

.page-folio.page-folio-dark .project-meta {
  color: rgba(255, 255, 255, 0.42);
}

.folio-copy .project-meta {
  max-width: 72ch;
  color: var(--muted);
}

.page-folio.page-folio-dark .folio-copy .project-meta {
  color: rgba(255, 255, 255, 0.42);
}

.folio-copy p, p.fade-copy.folio-index-intro.is-visible {
  margin: 0;
  max-width: 72ch;
  color: var(--muted);
  font-size: clamp(0.8rem, 1.15vw, 0.8rem);
  line-height: 1.55;
}

p.fade-copy.folio-index-intro.is-visible {
    position: relative;
    top: -32px;
}

.folio-description {
  display: grid;
  gap: 1.35rem;
}

.folio-fixed-pagination {
  position: fixed;
  left: calc((clamp(1.5rem, 4vw, 5rem) / 2) + clamp(1.5rem, 3vw, 3rem));
  bottom: clamp(2rem, 3vw, 3rem);
  z-index: 15;
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  color: #111111;
}

.folio-fixed-pagination::before {
  content: "";
  position: fixed;
  left: calc((clamp(1.5rem, 4vw, 5rem) / 2) + clamp(1.5rem, 3vw, 3rem));
  bottom: calc(clamp(2rem, 3vw, 3rem) + 2.9rem);
  width: calc((100% - clamp(2rem, 5vw, 6rem)) * 0.44);
  max-width: calc(100vw - (((clamp(1.5rem, 4vw, 5rem) / 2) + clamp(1.5rem, 3vw, 3rem)) * 2));
  height: 1px;
  background: rgba(17, 17, 17, 0.18);
  pointer-events: none;
}

.folio-fixed-pagination-link {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  font-family: "lft-etica-mono", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  transition: opacity var(--transition);
}

.folio-fixed-pagination-link:hover,
.folio-fixed-pagination-link:focus-visible {
  opacity: 0.62;
  outline: none;
}

.folio-fixed-pagination-divider {
  width: 1px;
  height: 0.9rem;
  background: rgba(17, 17, 17, 0.2);
}

.page-folio.page-folio-dark .folio-fixed-pagination {
  color: #ffffff;
}

.page-folio.page-folio-dark .folio-fixed-pagination::before {
  background: rgba(255, 255, 255, 0.2);
}

.page-folio.page-folio-dark .folio-fixed-pagination-divider {
  background: rgba(255, 255, 255, 0.22);
}

.page-folio-editorial .folio-fixed-pagination {
  width: max-content;
}

.page-folio-editorial .folio-fixed-pagination::before {
  position: absolute;
  left: 0;
  bottom: calc(100% + 1rem);
  width: 100%;
  max-width: none;
}

.folio-gallery {
  display: grid;
  gap: 2rem;
  align-content: start;
  width: 100%;
  margin-top: clamp(-2.5rem, -1.9vw, -1.5rem);
}

.page-folio-editorial {
  align-content: start;
}

.folio-editorial-shell {
  width: min(100%, 90rem);
  margin: 0 auto;
  display: grid;
  gap: clamp(3rem, 6vw, 6rem);
}

.folio-editorial-hero {
  display: grid;
  justify-items: center;
  gap: 1.15rem;
  padding-top: clamp(1rem, 3vw, 3rem);
  text-align: center;
}

.folio-editorial-hero h1 {
  margin: 0;
  max-width: 14ch;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 8vw, 7.6rem);
  font-weight: 200;
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.folio-editorial-intro {
  display: grid;
  gap: 1rem;
  max-width: 34rem;
}

.folio-editorial-intro p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.1vw, 1.05rem);
  line-height: 1.625;
}

.folio-editorial-flow {
  display: grid;
  gap: 0;
  align-content: start;
}

.folio-editorial-text,
.folio-editorial-media,
.folio-editorial-quote,
.folio-editorial-diptych,
.folio-editorial-feature-stack {
  margin: 0 auto;
  width: 100%;
}

.editorial-section-spacing-default {
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.editorial-section-spacing-tight {
  margin-bottom: clamp(1rem, 2vw, 1.4rem);
}

.folio-editorial-text {
  display: grid;
  gap: 0.95rem;
}

.folio-editorial-text-narrow {
  max-width: 32rem;
}

.folio-editorial-text-standard {
  max-width: 42rem;
}

.folio-editorial-text-center {
  text-align: center;
  justify-items: center;
}

.folio-editorial-text h2 {
  margin: 0;
  max-width: min(100%, 32rem);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2vw, 2.125rem);
  font-weight: 300;
  line-height: 0.95;
  /*letter-spacing: -0.04em;*/
  text-wrap: balance;
}

.folio-editorial-body {
  display: grid;
  gap: 1rem;
}

.folio-editorial-body p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.08vw, 1.02rem);
  line-height: 1.625;
}

.folio-editorial-media-standard {
  max-width: 61rem;
}

.folio-editorial-media-wide {
  max-width: 76rem;
}

.folio-editorial-quote {
  max-width: 82rem;
  display: grid;
  justify-items: center;
  gap: clamp(1.1rem, 2vw, 1.7rem);
  text-align: center;
}

.folio-editorial-quote blockquote {
  margin: 0;
  color: currentColor;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.folio-editorial-quote figcaption {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  line-height: 1.4;
}

.folio-editorial-caption {
  margin: 0.95rem auto 0;
  max-width: 32rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
  text-align: center;
}

.folio-editorial-diptych {
  max-width: 76rem;
}

.folio-editorial-diptych-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
}

.folio-editorial-diptych-card {
  margin: 0;
}

.folio-editorial-feature-stack {
  width: 100%;
  max-width: 76rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
  align-items: stretch;
}

.folio-editorial-feature-stack-portrait,
.folio-editorial-feature-stack-panel {
  margin: 0;
  min-width: 0;
}

.folio-editorial-feature-stack-portrait .folio-image,
.folio-editorial-feature-stack-panel .folio-image {
  height: 100%;
}

.folio-editorial-feature-stack-rail {
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
  align-content: stretch;
  min-width: 0;
}

.folio-editorial-feature-stack-portrait-right .folio-editorial-feature-stack-portrait {
  order: 2;
}

.folio-editorial-feature-stack-portrait-right .folio-editorial-feature-stack-rail {
  order: 1;
}

.folio-editorial-feature-stack-caption {
  grid-column: 1 / -1;
  order: 3;
}

.folio-editorial-pagination {
  width: 100%;
  max-width: 76rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: clamp(1rem, 2vw, 2rem);
}

.page-folio.page-folio-dark .folio-editorial-intro p,
.page-folio.page-folio-dark .folio-editorial-body p,
.page-folio.page-folio-dark .folio-editorial-quote figcaption,
.page-folio.page-folio-dark .folio-editorial-caption {
  color: rgba(255, 255, 255, 0.72);
}

.project-pagination {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.project-pagination::after {
  content: "";
  position: absolute;
  top: 2rem;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(17, 17, 17, 0.12);
  transform: translateX(-0.5px);
}

.project-link {
  display: grid;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.project-link:hover,
.project-link:focus-visible {
  opacity: 0.7;
  outline: none;
}

.project-link-previous {
  justify-items: start;
  text-align: left;
}

.project-link-next {
  justify-items: end;
  text-align: right;
}

.project-link-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.project-link-title {
  max-width: 12ch;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.6vw, 2.6rem);
  font-weight: 200;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.folio-card {
  margin: 0;
}

.folio-image {
  width: 100%;
  overflow: hidden;
  border: 0px solid rgba(17, 17, 17, 0.08);
  border-radius: 0;
  background: rgba(17, 17, 17, 0.02);
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
}

.folio-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.folio-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.folio-image-16-9 {
  aspect-ratio: 16 / 9;
}

.folio-image-4-5 {
  aspect-ratio: 4 / 5;
}

.folio-image-1-1 {
  aspect-ratio: 1 / 1;
}

.folio-image-9-16 {
  aspect-ratio: 9 / 16;
}

.page-about-profile {
  align-content: start;
}

.page-about-profile .view::before,
body.page-theme-dark .page-about-profile .view::before {
  content: none;
}

.about-fashion-layout {
  display: grid;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-content: start;
  width: 100%;
  padding-top: clamp(1rem, 2vw, 2rem);
  max-width: 100%;
}

.page-about-profile.page-folio {
  align-content: start;
  overflow-x: clip;
}

.page-about-profile.page-folio .about-fashion-layout {
  width: min(100%, 94rem);
  min-width: 0;
  overflow-x: clip;
}

.about-fashion-intro,
.about-fashion-kicker,
.about-fashion-paragraph {
  margin: 0;
}

.about-fashion-intro {
  font-family: var(--font-heading);
  font-size: clamp(3.3rem, 6.25vw, 6.25rem) !important;
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.about-fashion-kicker {
  max-width: 110ch;
  font-family: "lft-etica-mono", sans-serif;
  font-size: clamp(0.82rem, 1.2vw, 1.1875rem) !important;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
}

.about-fashion-body {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  max-width: 100%;
  min-width: 0;
}

.about-fashion-paragraph {
  /*max-width: 37ch;*/
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3rem) !important;
  font-weight: 300;
  line-height: 1.06;
  color: #ffffff;
}

.page-contact-form {
  align-content: start;
}

.page-private-access {
  align-content: start;
}

.private-access-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.7fr);
  gap: clamp(2rem, 6vw, 8rem);
  align-items: start;
}

.private-access-copy {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.private-access-copy h1 {
  margin: 0;
  max-width: 10ch;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 8.4rem);
  font-weight: 200;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.private-access-copy p {
  margin: 0;
  max-width: 46ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.private-access-form-wrap {
  min-width: 0;
}

.private-access-form {
  gap: 1.5rem;
}

.private-preview-list {
  display: grid;
  gap: 1.25rem;
}

.private-preview-card {
  display: grid;
  gap: 0.7rem;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.private-preview-card:last-child {
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.private-preview-card h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.private-preview-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.private-access-logout {
  margin-top: 1.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: "lft-etica-mono", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity var(--transition);
}

.private-access-logout:hover,
.private-access-logout:focus-visible {
  opacity: 0.65;
  outline: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(18rem, 0.78fr);
  gap: clamp(2rem, 6vw, 8rem);
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
}

.contact-social {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition);
}

.contact-social:hover,
.contact-social:focus-visible {
  opacity: 0.7;
  outline: none;
}

.contact-social-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.contact-social span {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.contact-form-wrap {
  min-width: 0;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
}

.contact-form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-field {
  display: grid;
  gap: 0.55rem;
}

.contact-field span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 0.95rem 0;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  transition:
    border-color var(--transition),
    opacity var(--transition);
}

.contact-field textarea {
  min-height: 9rem;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-bottom-color: rgba(17, 17, 17, 0.48);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(17, 17, 17, 0.38);
}

.contact-submit {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.04em;
  cursor: pointer;
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.contact-submit:hover,
.contact-submit:focus-visible {
  opacity: 0.7;
  outline: none;
}

.contact-submit:disabled {
  opacity: 0.45;
  cursor: wait;
}

.contact-form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (min-width: 2800px) and (min-height: 1500px) {
  .folio-layout {
    grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
    gap: clamp(3rem, 4vw, 6rem);
  }

  .page-folio-editorial .project-intro {
    width: min(100%, 118rem);
  }

  .folio-gallery {
    gap: 3.2rem;
  }

  .page-folio:not(.page-folio-editorial) .folio-fixed-pagination::before {
    width: min(26rem, calc((100% - clamp(2rem, 5vw, 6rem)) * 0.22));
    max-width: 26rem;
  }

  .folio-editorial-shell {
    width: min(100%, 128rem);
  }

  .folio-editorial-media-standard {
    max-width: 95rem;
  }

  .folio-editorial-media-wide,
  .folio-editorial-diptych,
  .folio-editorial-quote,
  .folio-editorial-feature-stack,
  .folio-editorial-pagination {
    max-width: 118rem;
  }
}

@media (max-width: 800px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    border-radius: 0px;
  }

  .brand {
    text-align: left;
  }

  .menu-overlay {
    padding-top: 7rem;
  }

  .site-nav a {
    font-size: clamp(3rem, 14vw, 5.4rem);
  }

  .view {
    min-height: auto;
    padding: 1.4rem;
  }

  body.page-home-active .view {
    min-height: 100vh;
  }

  .page-home-video {
    min-height: 190vh;
  }

  .home-hero-stage {
    padding: 0;
  }

  .home-hero-scroll-space {
    height: 52vh;
  }

  .home-story {
    min-height: auto;
    margin-top: -2vh;
    padding: 2rem 1.4rem;
  }

  .home-story-copy {
    width: 100%;
    min-height: auto;
    padding: 0;
  }

  .home-story-split {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .home-story-secondary {
    padding: 2rem 1.4rem 3rem;
    border-top: 0;
  }

  .home-story-secondary .home-story-copy {
    min-height: auto;
    padding: 0;
    border-left: 0;
  }

  .home-story-heading {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }

  .home-story-heading-split {
    width: 100%;
  }

  .home-story-body {
    justify-items: stretch;
  }

  .home-story-body p {
    width: 100%;
    max-width: none;
    font-size: 1rem;
    line-height: 1.6;
  }

  .folio-layout,
  .folio-index-header,
  .about-profile-layout,
  .private-access-layout,
  .contact-layout,
  .hero,
  .grid {
    grid-template-columns: 1fr;
  }

  .folio-list {
    grid-template-columns: 1fr;
  }

  .folio-copy {
    position: static;
    top: auto;
  }

  .folio-fixed-pagination {
    display: none;
  }

  .folio-copy h1 {
    max-width: none;
    font-size: clamp(3.6rem, 14vw, 5.6rem);
  }

  .project-intro {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    margin-top: 2.2rem;
  }

  .project-intro-title h1 {
    max-width: none;
    font-size: clamp(3.6rem, 14vw, 5.6rem);
  }

  .project-intro-details {
    width: 100%;
    padding-top: 0;
    justify-self: stretch;
  }

  .project-intro-description {
    max-width: 34rem;
  }

  .page-folio-index .folio-index-copy h1 {
    max-width: none;
    font-size: clamp(3.6rem, 14vw, 5.6rem);
    line-height: 0.96;
    padding-top: 0.08em;
  }

  .page-folio-index .folio-index-header {
    gap: calc(2rem + 12px);
    margin-bottom: 0.25rem;
  }

  .page-folio-index .folio-list {
    gap: 2rem;
  }

  .folio-gallery {
    margin-top: 0;
    gap: 2rem;
  }

  .folio-editorial-shell {
    gap: 2.5rem;
  }

  .folio-editorial-hero h1 {
    max-width: none;
    font-size: clamp(3.6rem, 14vw, 5.6rem);
  }

  .folio-editorial-intro,
  .folio-editorial-text-narrow,
  .folio-editorial-text-standard,
  .folio-editorial-media-standard,
  .folio-editorial-media-wide,
  .folio-editorial-quote,
  .folio-editorial-diptych,
  .folio-editorial-pagination {
    max-width: none;
  }

  .folio-editorial-quote blockquote {
    font-size: clamp(2.25rem, 8.6vw, 3.45rem);
    line-height: 1.12;
  }

  .folio-editorial-diptych-grid {
    grid-template-columns: 1fr;
  }

  .folio-editorial-feature-stack {
    grid-template-columns: 1fr;
  }

  .folio-editorial-feature-stack-portrait-right .folio-editorial-feature-stack-portrait,
  .folio-editorial-feature-stack-portrait-right .folio-editorial-feature-stack-rail {
    order: initial;
  }

  .about-fashion-layout {
    width: 100%;
    gap: 1.8rem;
    padding-top: 0.25rem;
  }

  .about-fashion-intro {
    max-width: none;
    font-size: clamp(2.5rem, 10.5vw, 4rem) !important;
    line-height: 1.3 !important;
  }

  .about-fashion-kicker {
    max-width: none;
    font-size: clamp(0.75rem, 3.8vw, 0.95rem) !important;
    line-height: 1.5;
  }

  .about-fashion-body {
    max-width: 100%;
    gap: 1.6rem;
  }

  .about-fashion-paragraph {
    max-width: none;
    font-size: clamp(1.55rem, 6.5vw, 2.3rem) !important;
    line-height: 1.08;
  }

  .home-folio-section {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 1.4rem 3rem;
  }

  .home-folio-section .folio-index-copy h1 {
    max-width: none;
    font-size: clamp(2.4rem, 10vw, 4rem);
  }

  .page-home-video .hero-wordmark {
    width: 80vw;
    max-width: 80vw;
  }

  .home-hero-meta {
    display: none;
  }

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

  .project-pagination::after {
    display: none;
  }

  .project-link-next {
    justify-items: start;
    text-align: left;
  }

  body p {
    font-size: 1rem !important;
    line-height: 1.5714285714 !important;
  }

  body figcaption {
    font-size: 0.75rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .view-enter,
  .view-enter-active,
  .view-exit,
  .view-exit-active,
  .site-nav a,
  .menu-toggle,
  .menu-toggle span,
  .site-nav,
  .menu-overlay,
  .home-video-element,
  .home.eyebrow,
  .hero-wordmark,
  .home-hero-meta,
  .home-hero-meta span,
  .heading-line,
  .heading-line.is-visible {
    transition: none !important;
    transform: none !important;
    animation: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}

@media (pointer: coarse), (hover: none) {
  .custom-cursor {
    display: none;
  }
}
