:root {
  --black: #050505;
  --white: #fbfbfa;
  --ink: #111110;
  --ink-dim: #6b6a66;
  --ink-faint: #a9a7a1;
  --rule: #dedcd6;
  --rule-dark: rgba(255, 255, 255, 0.14);
  --accent: #c17a35;
  --side: clamp(16px, 5vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.theme-dark {
  background: var(--black);
  color: var(--white);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  margin: 0;
}

/* ================= Shared chrome ================= */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--side);
  mix-blend-mode: difference;
}

.wordmark {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-decoration: none;
  color: var(--white);
  text-transform: uppercase;
}

.menu-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
}

.menu-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 22px;
}

.menu-icon span {
  display: block;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-btn[aria-expanded="true"] .menu-icon span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-btn[aria-expanded="true"] .menu-icon span:nth-child(2) {
  opacity: 0;
}

.menu-btn[aria-expanded="true"] .menu-icon span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.6vw, 30px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
  overflow: hidden;
}

.site-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.site-menu.is-open .site-menu-bg img {
  transform: scale(1);
}

.site-menu-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.site-menu-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 6s ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .site-menu-bg img {
    transition: none;
  }
}

.site-menu a,
.site-menu .menu-sub {
  position: relative;
  z-index: 1;
}

.site-menu a {
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 5.4vw, 52px);
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
  opacity: 0.92;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.85), 0 0 3px rgba(0, 0, 0, 0.5);
  transition: opacity 0.2s ease;
}

.site-menu a:hover {
  opacity: 1;
}

.site-menu .menu-sub {
  margin-top: 18px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 56px var(--side) 48px;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}

.footer-nav a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.footer-nav a:hover {
  opacity: 1;
}

.footer-copy {
  margin: 0;
  max-width: 620px;
  font-size: 12px;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: var(--ink-dim);
}

.footer-copy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.theme-dark .footer-copy {
  color: var(--ink-faint);
}

body.theme-dark .site-footer {
  border-top: 1px solid var(--rule-dark);
}

body.theme-light .site-footer {
  border-top: 1px solid var(--rule);
}

/* ================= Explore tiles ================= */

.tri-panel {
  position: relative;
  flex: 1;
  min-height: 46vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: var(--white);
}

@media (min-width: 860px) {
  .tri-panel {
    min-height: auto;
  }
}

.tri-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  transform: scale(1.02);
}

.tri-panel:hover img {
  transform: scale(1.08);
}

.tri-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 2, 3, 0.05) 0%,
    rgba(2, 2, 3, 0.25) 55%,
    rgba(2, 2, 3, 0.86) 100%
  );
  transition: background 0.4s ease;
}

.tri-panel:hover .tri-scrim {
  background: linear-gradient(
    180deg,
    rgba(2, 2, 3, 0.15) 0%,
    rgba(2, 2, 3, 0.4) 55%,
    rgba(2, 2, 3, 0.92) 100%
  );
}

.tri-content {
  position: relative;
  z-index: 2;
  padding: 0 34px 56px;
  width: 100%;
}

.tri-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.tri-title {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

.tri-arrow {
  display: inline-block;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.tri-panel:hover .tri-arrow {
  transform: translateX(6px);
}

/* ================= Hero + about (home and About page) ================= */

.about-hero {
  position: relative;
  height: 78svh;
  min-height: 480px;
  overflow: hidden;
}

.about-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
}

.about-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.15) 0%, rgba(5, 5, 5, 0.05) 40%, rgba(5, 5, 5, 0.9) 100%);
}

.about-hero-content {
  position: absolute;
  left: var(--side);
  right: var(--side);
  bottom: 40px;
  z-index: 2;
  color: var(--white);
}

.about-tags {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 14px;
}

.about-hero-content h1 {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
}

.about-body {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 100px) var(--side) 20px;
}

.about-body h2 {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 26px;
}

.about-body p {
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.75;
  color: var(--ink);
  font-weight: 300;
  margin: 0 0 22px;
}

.about-links {
  display: flex;
  gap: 28px;
  margin-top: 36px;
}

.about-links a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
}

.about-body--home {
  padding-bottom: clamp(56px, 9vw, 110px);
}

.about-links--hero {
  margin-top: 18px;
}

.about-links--hero a {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.6);
}

.about-links--hero a:hover {
  border-bottom-color: #fff;
}

/* Explore tiles reuse .tri-panel from the homepage triptych, at a shorter
   height, with no centered wordmark. */
.duo {
  display: flex;
  flex-direction: column;
}

@media (min-width: 860px) {
  .duo {
    flex-direction: row;
    height: 56vh;
    min-height: 380px;
  }
}

.duo .tri-panel {
  min-height: 42vh;
}

@media (min-width: 860px) {
  .duo .tri-panel {
    min-height: auto;
  }
}

/* ================= Gallery pages ================= */

.gallery-head {
  padding: clamp(120px, 16vw, 160px) var(--side) 30px;
  border-bottom: 1px solid var(--rule);
}

.gallery-head h1 {
  font-size: clamp(30px, 5vw, 48px);
}

.gallery-head .count {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  margin-top: 10px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
}

@media (max-width: 720px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-cell {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--white);
  cursor: zoom-in;
}

.grid-cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  filter: grayscale(0.08);
}

.grid-cell:hover img {
  transform: scale(1.045);
  filter: grayscale(0);
}

.grid-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}

.grid-cell:hover::after {
  background: rgba(5, 5, 5, 0.08);
}

.grid-index {
  position: absolute;
  bottom: 10px;
  left: 12px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.grid-cell:hover .grid-index {
  opacity: 1;
}

/* ================= Featured carousel ================= */

.carousel {
  background: var(--black);
  color: var(--white);
  padding: clamp(36px, 5vw, 64px) 0 clamp(32px, 4vw, 52px);
  overflow: hidden;
  outline: none;
  --slide-w: 62%;
  --side-shift: 40%;
}

@media (max-width: 720px) {
  .carousel {
    --slide-w: 74%;
    --side-shift: 38%;
  }
}

.carousel-eyebrow {
  margin: 0 0 clamp(20px, 3vw, 34px);
  padding: 0 var(--side);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.carousel-stage {
  position: relative;
  height: clamp(240px, 40vw, 580px);
  max-width: 1500px;
  margin: 0 auto;
  touch-action: pan-y;
  user-select: none;
}

.slide {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: var(--slide-w);
  margin: 0;
  transition: transform 0.85s cubic-bezier(0.22, 0.8, 0.24, 1),
    opacity 0.85s ease, filter 0.85s ease;
  will-change: transform, opacity;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.slide[data-pos="0"] {
  z-index: 3;
  opacity: 1;
  transform: translateX(-50%) scale(1);
  filter: none;
  cursor: zoom-in;
}

.slide[data-pos="1"],
.slide[data-pos="-1"] {
  z-index: 2;
  opacity: 0.7;
  filter: brightness(0.55);
  cursor: pointer;
}

.slide[data-pos="1"] {
  transform: translateX(calc(-50% + var(--side-shift))) scale(0.82);
}

.slide[data-pos="-1"] {
  transform: translateX(calc(-50% - var(--side-shift))) scale(0.82);
}

.slide[data-pos="far-r"],
.slide[data-pos="far-l"] {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  filter: brightness(0.4);
}

.slide[data-pos="far-r"] {
  transform: translateX(calc(-50% + var(--side-shift))) scale(0.7);
}

.slide[data-pos="far-l"] {
  transform: translateX(calc(-50% - var(--side-shift))) scale(0.7);
}

@media (prefers-reduced-motion: reduce) {
  .slide {
    transition: none;
  }
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: clamp(24px, 3vw, 36px);
}

.carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}

.carousel-counter {
  min-width: 64px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  font-variant-numeric: tabular-nums;
}

.section-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: clamp(36px, 5vw, 56px) var(--side) 20px;
  border-bottom: 1px solid var(--rule);
}

.section-label h2 {
  font-size: clamp(20px, 2.6vw, 28px);
}

.section-label span {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
}

/* ================= Captions (subtext) ================= */

[hidden] {
  display: none !important;
}

.cap-title {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.25;
}

.cap-note {
  display: block;
  max-width: 620px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
}

.carousel-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: clamp(18px, 2.4vw, 28px) auto 0;
  padding: 0 var(--side);
  text-align: center;
  color: var(--white);
}

.hover-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 16px 13px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.3;
  color: #fff;
  text-align: left;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.hover-caption .cap-title {
  font-size: 17px;
}

.hover-caption .cap-note {
  font-size: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ================= Booking ================= */

.booking {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 72px) var(--side) clamp(64px, 9vw, 110px);
}

.booking-intro {
  margin: 0 0 40px;
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.7;
  font-weight: 300;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
}

.field label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 16px;
  padding: 12px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink-faint);
  border-radius: 0;
  transition: border-color 0.2s ease;
}

.field textarea {
  padding: 12px;
  min-height: 150px;
  resize: vertical;
  border: 1px solid var(--ink-faint);
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-color: var(--ink);
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.booking-submit {
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 17px 38px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.booking-submit:hover:not(:disabled) {
  background: transparent;
  color: var(--ink);
}

.booking-submit:disabled {
  opacity: 0.55;
  cursor: progress;
}

.booking-status {
  margin: 18px 0 0;
  min-height: 1.5em;
  font-size: 14px;
  color: var(--ink-dim);
}

.booking-status.is-error {
  color: #a1332b;
}

.booking-thanks h2 {
  font-size: clamp(30px, 4.6vw, 44px);
  margin-bottom: 14px;
}

.booking-thanks p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
}

/* ================= Page transitions ================= */
/* A dark curtain (with the wordmark) wipes across on leaving, and the next
   page reveals itself by wiping it off in the same direction. */

html::before,
html::after {
  content: "LUKE MANCHESTER";
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--black);
  color: rgba(255, 255, 255, 0.85);
  font: 600 12px/1 "Inter", system-ui, sans-serif;
  letter-spacing: 0.32em;
  pointer-events: none;
  visibility: hidden;
  transform: translateX(100%);
}

html.is-entering::before {
  visibility: visible;
  animation: curtain-out 0.8s cubic-bezier(0.76, 0, 0.24, 1) 0.08s both;
}

html.is-leaving::after {
  visibility: visible;
  animation: curtain-in 0.48s cubic-bezier(0.76, 0, 0.24, 1) both;
}

@keyframes curtain-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes curtain-out {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@media (prefers-reduced-motion: reduce) {
  html::before,
  html::after {
    display: none;
  }
}

/* ================= Grid hover preview ================= */

.hover-preview {
  position: fixed;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.96);
  transition: opacity 0.18s ease, transform 0.22s cubic-bezier(0.22, 0.8, 0.24, 1),
    visibility 0s linear 0.22s;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  background: var(--black);
  line-height: 0;
  cursor: zoom-in;
  will-change: transform, opacity;
}

.hover-preview.is-visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition-delay: 0s;
}

.hover-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (prefers-reduced-motion: reduce) {
  .hover-preview {
    transition: none;
    transform: none;
  }
}

/* ================= Artist profile ================= */

.profile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 100px) var(--side) clamp(56px, 8vw, 96px);
}

@media (min-width: 860px) {
  .profile {
    grid-template-columns: 1.5fr 1fr;
    gap: 72px;
  }
}

.profile h2 {
  font-size: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 26px;
}

.profile-statement p {
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.75;
  font-weight: 300;
  margin: 0 0 22px;
}

.profile-facts dl {
  margin: 0;
}

.profile-facts dt {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 22px;
}

.profile-facts dt:first-child {
  margin-top: 0;
}

.profile-facts dd {
  margin: 6px 0 0;
  font-size: 15px;
  line-height: 1.6;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
}

.profile-facts dd a {
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
}

/* ================= Lightbox ================= */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 3, 4, 0.97);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lb-img {
  max-width: min(92vw, 1700px);
  max-height: calc(100vh - 170px);
  width: auto;
  height: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.lb-close,
.lb-nav {
  position: absolute;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  line-height: 1;
}

.lb-close {
  top: 20px;
  right: 24px;
  font-size: 34px;
  font-weight: 300;
  opacity: 0.8;
}

.lb-close:hover {
  opacity: 1;
}

.lb-nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 56px;
  font-weight: 300;
  padding: 12px 18px;
  opacity: 0.65;
}

.lb-nav:hover {
  opacity: 1;
}

.lb-prev {
  left: 6px;
}

.lb-next {
  right: 6px;
}

.lb-caption {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  color: #fff;
}

.lb-counter {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 640px) {
  .lb-nav {
    font-size: 38px;
    padding: 8px 10px;
  }
  .lb-close {
    font-size: 28px;
    top: 14px;
    right: 14px;
  }
}

/* ================= Desktop: full-screen hero the page slides over ================= */
/* Wide screens: the portrait photo is shown whole (never stretched or zoomed)
   over a soft blurred copy of itself. The hero stays put while the rest of the
   page scrolls up over it. Phones and portrait tablets keep the layout above. */

.about-hero img.hero-bg {
  display: none;
}

.about-band-bg {
  display: none;
}

@media (min-width: 900px) and (min-aspect-ratio: 1/1) {
  .about-hero {
    position: sticky;
    top: 0;
    z-index: 0;
    height: 100svh;
    min-height: 560px;
  }

  .about-hero ~ * {
    position: relative;
    z-index: 1;
    background: var(--white);
  }

  .about-hero img.hero-bg {
    display: block;
    transform: scale(1.14);
    filter: blur(46px) brightness(0.5) saturate(1.15);
    object-position: center;
  }

  .about-hero img.hero-main {
    inset: 0 clamp(32px, 8vw, 170px) 0 auto;
    width: auto;
    height: 100%;
    max-width: 52%;
    object-fit: contain;
    object-position: center;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  }

  .about-hero-scrim {
    background:
      linear-gradient(90deg, rgba(4, 4, 6, 0.62) 0%, rgba(4, 4, 6, 0.2) 48%, rgba(4, 4, 6, 0) 62%),
      linear-gradient(180deg, rgba(4, 4, 6, 0.25) 0%, rgba(4, 4, 6, 0) 30%, rgba(4, 4, 6, 0.55) 100%);
  }

  .about-hero-content {
    left: clamp(48px, 6vw, 110px);
    right: auto;
    bottom: clamp(48px, 10vh, 110px);
    max-width: 46vw;
  }

  .about-hero-content h1 {
    font-size: clamp(52px, 5.4vw, 92px);
  }

  /* Homepage About: a mountain range behind the text, darkened so it reads. */
  .about-band {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: min(72vh, 680px);
    background: var(--black);
  }

  .about-band-bg {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    z-index: 0;
  }

  .about-band::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(5, 5, 7, 0.84) 0%, rgba(5, 5, 7, 0.62) 55%, rgba(5, 5, 7, 0.42) 100%);
  }

  .about-band .about-body {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(72px, 10vh, 120px) var(--side);
  }

  .about-band .about-body h2 {
    color: rgba(255, 255, 255, 0.72);
  }

  .about-band .about-body p {
    color: #fff;
    font-size: clamp(20px, 1.75vw, 28px);
    line-height: 1.6;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
  }
}
