:root {
  color-scheme: dark;
  --paper: #f4efe7;
  --muted: rgba(244, 239, 231, 0.7);
  --black: #050606;
  --ink: #0b0e0e;
  --panel: #101515;
  --line: rgba(244, 239, 231, 0.16);
  --aqua: #cdeeee;
  --aqua-strong: #89d3d4;
  --brass: #d9e8c5;
  --moss: #8b9786;
  --steel: #7d9191;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 12%, rgba(137, 211, 212, 0.11), transparent 26rem),
    radial-gradient(circle at 0% 64%, rgba(217, 232, 197, 0.07), transparent 24rem),
    #050606;
  letter-spacing: 0;
}

[id] {
  scroll-margin-top: 88px;
}

body.is-loading {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a,
button {
  font: inherit;
}

a {
  color: inherit;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #050606;
  opacity: 0;
  visibility: visible;
  transition:
    opacity 420ms ease,
    visibility 0s linear 420ms;
}

.loader-inner {
  display: grid;
  justify-items: center;
  gap: 18px;
  width: min(76vw, 260px);
}

.loader-inner img {
  width: clamp(82px, 26vw, 126px);
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.42));
  animation: loaderLogo 1800ms ease-in-out infinite;
}

.loader-inner span {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 6vw, 2rem);
  line-height: 1;
}

.loader-inner i {
  position: relative;
  display: block;
  width: min(48vw, 176px);
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(244, 239, 231, 0.18);
}

.loader-inner i::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 42%;
  border-radius: inherit;
  background: var(--aqua);
  transform: translateX(-110%);
  animation: loaderLine 1600ms ease-in-out infinite;
}

body.is-loading .loader {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s;
}

body:not(.is-loading) .loader {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 420ms ease,
    visibility 0s linear 420ms;
}

@keyframes loaderLogo {
  0%,
  100% {
    opacity: 0.82;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

@keyframes loaderLine {
  0% {
    transform: translateX(-110%);
  }

  48%,
  100% {
    transform: translateX(250%);
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(5, 6, 6, 0.78);
  border-bottom: 1px solid rgba(244, 239, 231, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand span {
  min-width: 0;
  overflow: hidden;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.03rem;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav {
  display: none;
}

.nav a,
.nav-cta,
.eyebrow,
.project-copy span,
.commission-menu span,
.commission-enquiry .eyebrow {
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a,
.nav-cta {
  color: rgba(244, 239, 231, 0.78);
  text-decoration: none;
}

.enquire-menu {
  position: relative;
  justify-self: end;
}

.enquire-menu summary {
  list-style: none;
}

.enquire-menu summary::-webkit-details-marker {
  display: none;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(244, 239, 231, 0.04);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.enquire-menu[open] .nav-cta {
  border-color: rgba(205, 238, 238, 0.46);
  background: rgba(205, 238, 238, 0.08);
  color: var(--paper);
}

.enquire-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 60;
  display: grid;
  min-width: 190px;
  border: 1px solid rgba(205, 238, 238, 0.26);
  background: rgba(8, 11, 11, 0.96);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.enquire-panel a {
  padding: 14px 16px;
  border-top: 1px solid rgba(244, 239, 231, 0.1);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.enquire-panel a:first-child {
  border-top: 0;
}

.enquire-panel a:hover,
.enquire-panel a:focus-visible {
  background: rgba(205, 238, 238, 0.08);
  color: var(--aqua);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 92px 16px 28px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  filter: saturate(0.72) contrast(1.06);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(5, 6, 6, 0.7), rgba(5, 6, 6, 0.42) 28%, rgba(5, 6, 6, 0.94)),
    linear-gradient(90deg, rgba(5, 6, 6, 0.78), rgba(5, 6, 6, 0.12));
}

.hero-shell {
  width: 100%;
  display: grid;
  gap: 22px;
}

.hero-copy {
  max-width: 760px;
  padding: 18px 0 0;
}

.eyebrow {
  margin: 0;
  color: var(--brass);
}

.hero h1,
h2,
.project-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.94;
}

.hero h1 {
  margin-top: 10px;
  max-width: 9ch;
  font-size: clamp(3.4rem, 15vw, 6rem);
}

.hero p,
.commission-copy > p,
.artist-copy p,
.project-copy p,
.enquiry-text,
.faq p,
.contact-details {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.hero-copy > p:last-of-type {
  max-width: 34rem;
}

.actions,
.contact-links,
.enquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.button {
  position: relative;
  display: inline-grid;
  grid-template-columns: minmax(0, auto) 44px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(244, 239, 231, 0.04);
  color: var(--paper);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 17px;
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.button::after {
  content: "";
  align-self: stretch;
  width: 44px;
  border-left: 1px solid currentColor;
  opacity: 0.45;
}

.button:hover::after {
  opacity: 0.78;
}

.button.primary::after {
  border-left-color: rgba(6, 16, 17, 0.28);
}

.button.secondary::after {
  border-left-color: rgba(244, 239, 231, 0.18);
}

.button.secondary:hover::after {
  border-left-color: rgba(205, 238, 238, 0.36);
}

.nav-cta::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 1px;
  margin-left: 8px;
  background: currentColor;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.button.primary {
  border-color: var(--aqua);
  background: var(--aqua);
  color: #061011;
}

.button.secondary {
  background: rgba(5, 6, 6, 0.32);
}

.button.secondary:hover {
  border-color: rgba(205, 238, 238, 0.58);
  background: rgba(205, 238, 238, 0.08);
}

.section {
  width: calc(100% - 36px);
  margin: 0 auto;
  padding: 72px 0;
}

.intro {
  display: grid;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.intro img {
  width: min(44vw, 170px);
  filter: drop-shadow(0 0 34px rgba(137, 211, 212, 0.16));
}

h2 {
  font-size: clamp(2.35rem, 12vw, 4.6rem);
}

.portfolio {
  padding: 24px 0 0;
}

.portfolio-heading {
  padding-bottom: 42px;
}

.portfolio-heading h2 {
  margin-top: 10px;
}

.project-scene {
  display: grid;
  gap: 18px;
  width: calc(100% - 36px);
  margin: 0 auto 58px;
  position: relative;
}

.project-image {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.project-image img {
  width: 100%;
  height: min(78svh, 620px);
  min-height: 390px;
  object-fit: cover;
}

.scene-two .project-image img {
  object-position: 43% center;
}

.project-copy {
  display: grid;
  gap: 12px;
  align-content: center;
  max-width: 39rem;
  padding-left: 16px;
  border-left: 1px solid rgba(205, 238, 238, 0.32);
}

.project-copy span {
  color: var(--brass);
}

.project-copy h3 {
  font-size: clamp(2rem, 11vw, 4rem);
}

.project-copy p {
  margin: 0;
}

.recent-media {
  display: grid;
  gap: 28px;
  border-top: 1px solid var(--line);
}

.recent-heading {
  display: grid;
  gap: 12px;
}

.recent-heading h2 {
  max-width: 12ch;
}

.recent-heading p:last-child {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.recent-grid {
  display: grid;
  gap: 10px;
}

.recent-photo,
.recent-video {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.recent-video {
  display: grid;
  grid-template-rows: auto auto;
}

.recent-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(5, 6, 6, 0.18) 66%, rgba(5, 6, 6, 0.82));
  pointer-events: none;
}

.recent-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  background: #050606;
}

.recent-video video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  background: #050606;
  border-bottom: 1px solid var(--line);
}

.recent-photo img {
  aspect-ratio: 4 / 5;
}

.recent-video video {
  aspect-ratio: 4 / 5;
}

.recent-video-large video {
  aspect-ratio: 9 / 14;
}

.recent-photo-wide img {
  aspect-ratio: 16 / 10;
}

.recent-photo-tall img {
  object-position: center 38%;
}

.recent-photo figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  display: grid;
  gap: 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(244, 239, 231, 0.34);
  pointer-events: none;
}

.media-caption {
  display: grid;
  gap: 4px;
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(244, 239, 231, 0.18);
  background: rgba(8, 11, 11, 0.96);
}

.recent-photo figcaption span,
.media-caption span {
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 900;
}

.recent-photo figcaption small,
.media-caption small {
  color: rgba(244, 239, 231, 0.68);
  font-size: 0.78rem;
  line-height: 1.35;
}

.gallery {
  display: grid;
  gap: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gallery-copy {
  display: grid;
  gap: 12px;
}

.gallery-copy h2 {
  max-width: 10ch;
}

.gallery-copy p:last-child {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.gallery-grid {
  display: grid;
  gap: 10px;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.gallery-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(5, 6, 6, 0.18) 66%, rgba(5, 6, 6, 0.76));
  pointer-events: none;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.gallery-feature img {
  aspect-ratio: 16 / 10;
  object-position: center;
}

.gallery-portrait img {
  object-position: 58% center;
}

.gallery-square img {
  aspect-ratio: 1 / 1;
  object-position: 72% center;
}

.gallery-wide img,
.gallery-detail img {
  aspect-ratio: 16 / 10;
}

.gallery-wide img {
  object-position: 56% center;
}

.gallery-detail img {
  object-position: center;
}

.gallery-grid figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  display: grid;
  gap: 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(244, 239, 231, 0.34);
}

.gallery-grid figcaption span {
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 900;
}

.gallery-grid figcaption small {
  color: rgba(244, 239, 231, 0.68);
  font-size: 0.78rem;
  line-height: 1.35;
}

.commissions {
  display: grid;
  gap: 34px;
  border-top: 1px solid var(--line);
}

.commission-copy h2 {
  margin-top: 10px;
}

.commission-copy > p {
  margin-bottom: 0;
}

.commission-studio {
  position: relative;
  display: grid;
  gap: 14px;
}

.commission-studio::before {
  content: "";
  position: absolute;
  inset: 18px -10px -12px 18px;
  z-index: -1;
  border: 1px solid rgba(205, 238, 238, 0.2);
}

.commission-studio figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.commission-studio img {
  width: 100%;
  height: clamp(310px, 76vw, 520px);
  object-fit: cover;
}

.commission-studio figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(244, 239, 231, 0.32);
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 850;
}

.commission-menu {
  display: grid;
  border-top: 1px solid var(--line);
}

.commission-menu-head {
  display: grid;
  gap: 8px;
  padding: 18px 0;
}

.commission-menu h3 {
  margin: 0;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 8vw, 3.2rem);
  font-weight: 400;
  line-height: 0.98;
}

.commission-menu button {
  display: grid;
  width: 100%;
  gap: 5px;
  position: relative;
  padding: 17px 30px 17px 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  text-align: left;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, padding 180ms ease;
}

.commission-menu button:hover,
.commission-menu button:focus-visible,
.commission-menu button[aria-pressed="true"] {
  border-top-color: rgba(205, 238, 238, 0.42);
  color: var(--aqua);
  padding-left: 8px;
  outline: none;
}

.commission-menu button[aria-pressed="true"] {
  background: rgba(205, 238, 238, 0.055);
}

.commission-menu button::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 0;
  width: 18px;
  height: 18px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: 0.58;
  transform: rotate(45deg);
  transition: opacity 180ms ease, right 180ms ease;
}

.commission-menu button:hover::after,
.commission-menu button:focus-visible::after,
.commission-menu button[aria-pressed="true"]::after {
  right: -4px;
  opacity: 1;
}

.commission-menu small {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.commission-enquiry {
  display: grid;
  gap: 13px;
  padding: 18px;
  border: 1px solid rgba(205, 238, 238, 0.3);
  background: rgba(205, 238, 238, 0.06);
  outline: none;
}

.commission-enquiry:focus-visible {
  border-color: rgba(205, 238, 238, 0.58);
}

.commission-enquiry p,
.commission-enquiry h3 {
  margin: 0;
}

.commission-enquiry h3 {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 8vw, 2.8rem);
  font-weight: 400;
  line-height: 0.98;
}

.enquiry-text {
  max-width: 34rem;
}

.enquiry-actions {
  margin-top: 4px;
}

.enquiry-actions .button {
  min-height: 48px;
}

.artist {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.artist-image img {
  width: 100%;
  height: 60svh;
  min-height: 380px;
  object-fit: cover;
}

.artist-copy {
  display: grid;
  gap: 18px;
  padding: 42px 18px 58px;
  background: #080b0b;
}

.artist-copy h2 {
  max-width: 9ch;
}

.artist-copy p {
  margin: 0;
}

.archive-moment {
  display: grid;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.archive-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.archive-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(5, 6, 6, 0.74));
  pointer-events: none;
}

.archive-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(0.82) contrast(1.03);
}

.archive-image figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  padding-top: 10px;
  border-top: 1px solid rgba(244, 239, 231, 0.34);
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 900;
}

.archive-copy {
  display: grid;
  gap: 14px;
  align-content: center;
}

.archive-copy h2 {
  max-width: 10ch;
}

.archive-copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.faq {
  display: grid;
  gap: 34px;
  border-bottom: 1px solid var(--line);
}

.faq-heading {
  display: grid;
  gap: 10px;
}

.faq-heading h2 {
  max-width: 11ch;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list article {
  display: grid;
  gap: 12px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.faq-list h3 {
  margin: 0;
  color: var(--paper);
  font-size: 1.05rem;
  line-height: 1.25;
}

.faq-list p {
  margin: 0;
}

.contact {
  min-height: 92svh;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 72px 18px;
  background:
    linear-gradient(rgba(5, 6, 6, 0.52), rgba(5, 6, 6, 0.9)),
    url("images/IMG_1689.jpg") center / cover;
}

.contact-logo {
  width: min(46vw, 220px);
  margin-bottom: 4px;
}

.contact h2 {
  max-width: 11ch;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  font-style: normal;
}

.contact-details a {
  color: var(--paper);
  text-decoration-color: rgba(205, 238, 238, 0.42);
  text-underline-offset: 4px;
}

.contact-links {
  margin-top: 8px;
}

.not-found {
  min-height: 100svh;
  display: grid;
  align-items: center;
  gap: 32px;
  padding: 112px 18px 48px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 18%, rgba(205, 238, 238, 0.1), transparent 20rem),
    radial-gradient(circle at 6% 72%, rgba(217, 232, 197, 0.07), transparent 18rem),
    #050606;
}

.not-found-copy {
  display: grid;
  gap: 14px;
  max-width: 46rem;
}

.not-found h1 {
  max-width: 9ch;
  margin: 0;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 14vw, 7.4rem);
  font-weight: 400;
  line-height: 0.92;
}

.not-found-copy > p:last-of-type {
  max-width: 35rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.not-found-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.not-found-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 6, 6, 0.78));
  pointer-events: none;
}

.not-found-media img {
  width: 100%;
  height: min(70svh, 560px);
  min-height: 320px;
  object-fit: cover;
  object-position: 56% center;
}

.not-found-media figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  padding-top: 10px;
  border-top: 1px solid rgba(244, 239, 231, 0.32);
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 850;
}

.footer {
  display: grid;
  gap: 8px;
  padding: 22px 18px;
  color: rgba(244, 239, 231, 0.58);
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

  .loader {
    transition: none;
  }

  .loader-inner img,
  .loader-inner i::before {
    animation: none;
  }
}

@media (min-width: 760px) {
  .site-header {
    grid-template-columns: 260px 1fr auto;
    padding: 14px clamp(24px, 4vw, 56px);
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .brand span {
    font-size: 1.18rem;
  }

  .nav {
    display: flex;
    justify-content: center;
    gap: clamp(18px, 3vw, 44px);
  }

  .nav a:hover,
  .nav-cta:hover {
    color: var(--paper);
  }

  .hero {
    align-items: center;
    padding: 110px clamp(24px, 5vw, 72px) 42px;
  }

  .hero-shell {
    width: min(100%, 1500px);
    min-height: calc(100svh - 160px);
    align-items: center;
    margin: 0 auto;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(5.4rem, 10vw, 11rem);
  }

  .hero-copy {
    max-width: 920px;
    padding-bottom: clamp(24px, 7vw, 82px);
  }

  .actions,
  .contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .section {
    width: min(var(--max), calc(100% - 48px));
    padding: clamp(88px, 11vw, 138px) 0;
  }

  .intro {
    grid-template-columns: 220px 1fr;
    align-items: center;
    gap: clamp(30px, 7vw, 92px);
  }

  .intro img {
    width: 210px;
  }

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

  .project-scene {
    width: min(var(--max), calc(100% - 48px));
    min-height: 92svh;
    grid-template-columns: 1.12fr 0.88fr;
    align-items: center;
    gap: clamp(30px, 7vw, 92px);
    margin-bottom: 0;
    padding: 7svh 0;
  }

  .project-scene:nth-child(odd) .project-image {
    order: 2;
  }

  .project-scene:nth-child(odd) .project-copy {
    order: 1;
  }

  .project-image img {
    height: 76svh;
  }

  .project-copy h3 {
    font-size: clamp(2.6rem, 4.8vw, 5.8rem);
  }

  .recent-media {
    gap: clamp(30px, 5vw, 64px);
  }

  .recent-heading {
    grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.5fr);
    align-items: end;
    gap: clamp(26px, 5vw, 72px);
  }

  .recent-heading .eyebrow {
    grid-column: 1 / -1;
  }

  .recent-heading h2 {
    grid-column: 1;
    max-width: 11ch;
  }

  .recent-heading p:last-child {
    grid-column: 2;
    margin-bottom: 0.4rem;
  }

  .recent-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: clamp(88px, 8vw, 124px);
    gap: 14px;
  }

  .recent-photo,
  .recent-video {
    min-height: 0;
  }

  .recent-video {
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .recent-photo img {
    height: 100%;
    aspect-ratio: auto;
    min-height: 0;
    max-height: none;
  }

  .recent-video video {
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
  }

  .recent-grid > :nth-child(1) {
    grid-column: 1 / 5;
    grid-row: 1 / 7;
  }

  .recent-grid > :nth-child(2) {
    grid-column: 5 / 9;
    grid-row: 1 / 4;
  }

  .recent-grid > :nth-child(3) {
    grid-column: 9 / 13;
    grid-row: 1 / 4;
  }

  .recent-grid > :nth-child(4) {
    grid-column: 5 / 8;
    grid-row: 4 / 7;
  }

  .recent-grid > :nth-child(5) {
    grid-column: 8 / 13;
    grid-row: 4 / 7;
  }

  .recent-grid > :nth-child(6) {
    grid-column: 1 / 8;
    grid-row: 7 / 10;
  }

  .recent-grid > :nth-child(7) {
    grid-column: 8 / 13;
    grid-row: 7 / 10;
  }

  .gallery {
    gap: clamp(30px, 5vw, 60px);
  }

  .gallery-copy {
    grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.42fr);
    align-items: end;
    gap: clamp(26px, 5vw, 72px);
  }

  .gallery-copy .eyebrow {
    grid-column: 1 / -1;
  }

  .gallery-copy h2 {
    grid-column: 1;
  }

  .gallery-copy p:last-child {
    grid-column: 2;
    margin-bottom: 0.4rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: clamp(82px, 7.8vw, 118px);
    gap: 14px;
  }

  .gallery-grid figure {
    min-height: 0;
  }

  .gallery-feature {
    grid-column: 1 / 9;
    grid-row: 1 / 5;
  }

  .gallery-portrait {
    grid-column: 9 / 13;
    grid-row: 1 / 5;
  }

  .gallery-square {
    grid-column: 1 / 5;
    grid-row: 5 / 7;
  }

  .gallery-wide {
    grid-column: 5 / 9;
    grid-row: 5 / 7;
  }

  .gallery-detail {
    grid-column: 9 / 13;
    grid-row: 5 / 7;
  }

  .gallery-grid img {
    height: 100%;
    aspect-ratio: auto;
    min-height: 0;
    max-height: none;
  }

  .commissions {
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 88svh;
    align-items: center;
    gap: clamp(30px, 7vw, 92px);
  }

  .commission-studio {
    grid-template-columns: minmax(260px, 0.92fr) minmax(300px, 1.08fr);
    gap: 0;
    border: 1px solid var(--line);
    background: rgba(16, 21, 21, 0.78);
  }

  .commission-studio figure {
    grid-row: span 2;
    border: 0;
    border-right: 1px solid var(--line);
  }

  .commission-studio img {
    height: 100%;
    min-height: 620px;
  }

  .commission-studio figcaption {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .commission-menu {
    border-top: 0;
    padding: 8px 24px 0;
  }

  .commission-menu-head {
    padding: 24px 0 20px;
  }

  .commission-menu h3 {
    max-width: 8ch;
  }

  .commission-menu button {
    align-items: start;
    padding: 20px 28px 20px 0;
  }

  .commission-menu button::after {
    top: 25px;
  }

  .commission-enquiry {
    border: 0;
    border-top: 1px solid var(--line);
    padding: 24px;
  }

  .not-found {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
    gap: clamp(34px, 6vw, 86px);
    padding: 120px clamp(24px, 5vw, 72px) 64px;
  }

  .not-found-copy {
    align-content: center;
  }

  .not-found-media img {
    min-height: 520px;
  }

  .artist {
    grid-template-columns: 1fr 1fr;
    min-height: 86svh;
  }

  .artist-image img {
    height: 100%;
    min-height: 620px;
  }

  .artist-copy {
    align-content: center;
    padding: clamp(42px, 7vw, 92px);
  }

  .archive-moment {
    grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
    align-items: center;
    gap: clamp(30px, 7vw, 92px);
  }

  .archive-image img {
    min-height: 520px;
    aspect-ratio: 16 / 10;
  }

  .faq {
    grid-template-columns: 0.78fr 1.22fr;
    align-items: start;
    gap: clamp(30px, 7vw, 92px);
  }

  .faq-list {
    gap: 0;
  }

  .faq-list article {
    grid-template-columns: minmax(170px, 0.54fr) minmax(0, 1fr);
    gap: 28px;
    padding: 26px 0;
  }

  .faq-list h3 {
    font-size: 1.12rem;
  }

  .contact {
    padding: clamp(80px, 10vw, 132px) max(24px, calc((100vw - var(--max)) / 2));
  }

  .contact-logo {
    width: min(18vw, 240px);
  }

  .footer {
    display: flex;
    justify-content: space-between;
    padding: 26px clamp(24px, 4vw, 56px);
  }
}

@media (min-width: 1160px) {
  .brand img {
    width: 64px;
    height: 64px;
  }
}
