:root {
  --paper: #f2ede3;
  --muted: rgba(242, 237, 227, 0.63);
  --line: rgba(242, 237, 227, 0.24);
  --accent: #ff6a2a;
  --ember: #ff3814;
  --gold: #ffd08a;
  --ink: #0a0b0a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background: var(--ink);
  font-family: "Inter", "PingFang SC", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.detail-open {
  overflow: hidden;
}

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

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

button,
label {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #111;
}

.hero-media,
.landscape-image,
.reveal-layer,
.terrain-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -2;
  overflow: hidden;
  background: #111;
}

.landscape-image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.12);
  will-change: transform, filter;
}

.base-image {
  filter: blur(8px) brightness(0.56) saturate(0.64);
  animation: ken-burns-base 1.15s cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
}

.reveal-layer {
  --spot-x: 68%;
  --spot-y: 52%;

  z-index: 2;
  -webkit-clip-path: circle(0 at 68% 52%);
  clip-path: circle(0 at 68% 52%);
  opacity: 0;
  transition: opacity 320ms ease;
  will-change: clip-path;
}

.hero.is-ready.is-pointer-active .reveal-layer {
  opacity: 1;
}

.reveal-layer::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle 150px at var(--spot-x) var(--spot-y),
      rgba(255, 244, 190, 0.38),
      rgba(255, 151, 49, 0.18) 42%,
      transparent 72%
    ),
    radial-gradient(
      circle 330px at var(--spot-x) var(--spot-y),
      rgba(255, 58, 16, 0.32),
      transparent 72%
    );
  content: "";
  mix-blend-mode: screen;
  pointer-events: none;
}

.reveal-image {
  filter: blur(8px) brightness(1.02) saturate(1.24) contrast(1.12);
  transform: translateZ(0) scale(1.12);
  backface-visibility: hidden;
  animation: ken-burns-reveal 1.15s cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
}

.lava-flow-map {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.lava-particles,
.lava-smoke,
.heat-shimmer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.lava-particles {
  z-index: 3;
  filter: drop-shadow(0 0 3px rgba(255, 93, 30, 0.48));
  mix-blend-mode: screen;
}

.lava-smoke {
  z-index: 2;
  opacity: 1;
  mix-blend-mode: screen;
}

.heat-shimmer {
  z-index: 4;
  background:
    radial-gradient(circle 150px at var(--spot-x) var(--spot-y), rgba(255, 215, 122, 0.16), transparent 72%),
    repeating-linear-gradient(
      94deg,
      transparent 0 14px,
      rgba(255, 123, 39, 0.052) 15px 17px,
      transparent 18px 32px
    );
  mix-blend-mode: screen;
  opacity: 0.58;
  transform: translate3d(0, 0, 0) scale(1.015);
  animation: heat-drift 3.2s ease-in-out infinite alternate;
}

.terrain-shade {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(4, 5, 4, 0.79) 0%, rgba(4, 5, 4, 0.18) 54%, rgba(4, 5, 4, 0.34) 100%),
    linear-gradient(180deg, rgba(4, 5, 4, 0.38) 0%, transparent 34%, rgba(4, 5, 4, 0.46) 100%);
  pointer-events: none;
}

.spotlight-ring {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(255, 187, 105, 0.32);
  border-radius: 50%;
  box-shadow:
    inset 0 0 28px rgba(255, 205, 133, 0.16),
    inset 0 0 110px rgba(255, 73, 20, 0.16),
    0 0 18px rgba(255, 181, 96, 0.2),
    0 0 88px rgba(255, 56, 20, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 450ms ease;
  will-change: transform;
  animation: ember-breathe 2.8s ease-in-out infinite;
}

.hero.is-ready.is-pointer-active .spotlight-ring {
  opacity: 1;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 28px clamp(24px, 4vw, 68px);
  border-bottom: 1px solid rgba(242, 237, 227, 0.15);
  opacity: 0;
  animation: fade-down 0.9s 0.45s ease forwards;
  transition:
    padding 260ms ease,
    background 260ms ease,
    border-color 260ms ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  padding-top: 18px;
  padding-bottom: 18px;
  border-color: rgba(242, 237, 227, 0.12);
  background: rgba(8, 9, 8, 0.72);
  backdrop-filter: blur(22px) saturate(140%);
}

.brand {
  display: inline-flex;
  width: fit-content;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.brand svg {
  width: 27px;
  stroke-width: 1.35;
}

.desktop-nav {
  display: flex;
  gap: clamp(18px, 2.2vw, 34px);
}

.desktop-nav a {
  position: relative;
  color: rgba(242, 237, 227, 0.72);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-edition {
  justify-self: end;
  color: rgba(242, 237, 227, 0.46);
  font-size: 8px;
  letter-spacing: 0.16em;
}

.menu-button {
  display: none;
  justify-self: end;
}

.mobile-menu {
  position: fixed;
  z-index: 25;
  inset: 0;
  display: none;
  padding: 122px 22px 34px;
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 74, 24, 0.2), transparent 27%),
    rgba(7, 8, 7, 0.97);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 260ms ease,
    visibility 260ms ease;
}

.mobile-menu::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 237, 227, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 237, 227, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  pointer-events: none;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav,
.mobile-menu p {
  position: relative;
  z-index: 1;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu a {
  display: flex;
  gap: 18px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid rgba(242, 237, 227, 0.14);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 14vw, 66px);
}

.mobile-menu a span {
  color: var(--accent);
  font-family: "Inter", sans-serif;
  font-size: 9px;
  letter-spacing: 0.16em;
}

.mobile-menu p {
  position: absolute;
  bottom: 28px;
  margin: 0;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content {
  position: absolute;
  z-index: 6;
  top: 50%;
  left: clamp(24px, 7.6vw, 130px);
  width: min(760px, 66vw);
  transform: translateY(-47%);
}

.hero-index {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-bottom: 35px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  animation: title-in 1.05s 0.28s cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
}

.hero-index i {
  width: 50px;
  height: 1px;
  background: var(--line);
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  animation: title-in 1.05s 0.34s cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(66px, 7.8vw, 128px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.82;
  opacity: 0;
  filter: blur(12px);
  transform: translateY(24px);
  animation: title-in 1.1s 0.18s cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
}

.hero h1 em {
  display: block;
  margin-left: 0.5em;
  color: transparent;
  font-weight: 500;
  -webkit-text-stroke: 1px rgba(255, 222, 175, 0.92);
  text-shadow: 0 0 32px rgba(255, 72, 20, 0.15);
}

.hero-description {
  max-width: 430px;
  margin: 36px 0 0 0.3em;
  color: rgba(242, 237, 227, 0.72);
  font-size: 13px;
  line-height: 1.85;
  opacity: 0;
  filter: blur(8px);
  animation: title-in 1.05s 0.48s cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
}

.explore-link {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  margin: 27px 0 0 0.3em;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(242, 237, 227, 0.47);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  animation: title-in 1.05s 0.58s cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
}

.explore-link svg {
  width: 18px;
  stroke-width: 1.5;
  transition: transform 180ms ease;
}

.explore-link:hover svg {
  transform: translateX(5px);
}

.coordinates {
  position: absolute;
  z-index: 6;
  top: 48%;
  right: clamp(24px, 4vw, 68px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 20px;
  border-left: 1px solid var(--line);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  animation: fade-in 0.9s 0.7s ease forwards;
}

.coordinates small {
  margin-top: 9px;
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 0.14em;
}

.interaction-hint {
  position: absolute;
  z-index: 6;
  right: clamp(24px, 4vw, 68px);
  bottom: 88px;
  display: flex;
  gap: 11px;
  align-items: center;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0;
  animation: fade-in 0.9s 0.9s ease forwards;
}

.mouse-icon {
  display: grid;
  width: 20px;
  height: 28px;
  place-items: start center;
  border: 1px solid rgba(242, 237, 227, 0.46);
  border-radius: 999px;
}

.mouse-icon i {
  width: 2px;
  height: 5px;
  margin-top: 6px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: scroll-dot 1.4s infinite ease-in-out;
}

.hero-footer {
  position: absolute;
  z-index: 6;
  right: clamp(24px, 4vw, 68px);
  bottom: 28px;
  left: clamp(24px, 4vw, 68px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  color: rgba(242, 237, 227, 0.5);
  font-size: 7px;
  letter-spacing: 0.16em;
  opacity: 0;
  animation: fade-in 0.9s 0.85s ease forwards;
}

.footer-line {
  height: 1px;
  overflow: hidden;
  background: rgba(242, 237, 227, 0.17);
}

.footer-line i {
  display: block;
  width: 19%;
  height: 100%;
  background: linear-gradient(90deg, var(--ember), var(--gold));
  box-shadow: 0 0 12px var(--accent);
}

.section-shell {
  position: relative;
  padding: 140px clamp(24px, 6vw, 96px);
}

.section-number {
  color: rgba(23, 21, 19, 0.48);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker {
  margin: 0 0 18px;
  color: #c33a12;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.6fr 1.5fr 0.8fr;
  gap: 5vw;
  align-items: end;
  margin-bottom: 78px;
}

.section-heading h2,
.method-heading h2,
.contact-copy h2 {
  margin: 0;
  color: #171513;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(52px, 6vw, 96px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.89;
}

.section-heading h2 em,
.method-heading h2 em,
.contact-copy h2 em {
  font-weight: 500;
}

.section-intro {
  max-width: 350px;
  margin: 0;
  color: rgba(23, 21, 19, 0.62);
  font-size: 12px;
  line-height: 1.9;
}

.field-notes {
  position: relative;
  overflow: hidden;
  color: #171513;
  background:
    radial-gradient(circle at 86% 8%, rgba(222, 112, 54, 0.15), transparent 25%),
    radial-gradient(circle at 10% 66%, rgba(79, 70, 57, 0.08), transparent 31%),
    linear-gradient(90deg, rgba(17, 15, 13, 0.04) 1px, transparent 1px),
    #e7e1d6;
  background-size: auto, auto, 25% 100%, auto;
}

.field-notes > *:not(.field-notes-atmosphere) {
  position: relative;
  z-index: 1;
}

.field-notes-atmosphere {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.field-notes-atmosphere svg {
  position: absolute;
  top: 120px;
  left: -8%;
  width: 116%;
  height: 62%;
  color: #9c4b2c;
  opacity: 0.24;
}

.topography-lines {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.15;
  stroke-dasharray: 5 12 48 18;
  vector-effect: non-scaling-stroke;
}

.topography-lines-a {
  animation: topography-drift-a 24s ease-in-out infinite alternate;
}

.topography-lines-b {
  stroke: #61594e;
  stroke-dasharray: 2 20 72 25;
  opacity: 0.58;
  animation: topography-drift-b 30s ease-in-out infinite alternate;
}

.atmosphere-orbit {
  position: absolute;
  display: block;
  border: 1px solid rgba(171, 72, 34, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(173, 74, 34, 0.025),
    0 0 90px rgba(151, 67, 34, 0.08);
  animation: atmosphere-orbit 16s ease-in-out infinite alternate;
}

.orbit-one {
  top: 7%;
  right: -190px;
  width: 510px;
  height: 510px;
}

.orbit-two {
  bottom: 12%;
  left: -150px;
  width: 390px;
  height: 390px;
  animation-delay: -7s;
}

.upload-studio {
  position: relative;
  margin-bottom: 100px;
  padding: clamp(24px, 4vw, 54px);
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 73, 20, 0.2), transparent 22%),
    linear-gradient(rgba(242, 237, 227, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 237, 227, 0.04) 1px, transparent 1px),
    #111210;
  background-size: auto, 48px 48px, 48px 48px, auto;
}

.upload-studio::after {
  position: absolute;
  top: -170px;
  right: -130px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 123, 59, 0.17);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(255, 85, 31, 0.035),
    0 0 80px rgba(255, 60, 18, 0.08);
  content: "";
  pointer-events: none;
}

.upload-studio-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.upload-index {
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.17em;
}

.upload-studio h3 {
  margin: 8px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.upload-button {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  padding: 14px 17px 14px 22px;
  border: 1px solid rgba(255, 214, 164, 0.35);
  border-radius: 999px;
  background: rgba(255, 104, 42, 0.13);
  box-shadow:
    inset 0 0 24px rgba(255, 108, 43, 0.08),
    0 0 28px rgba(255, 55, 18, 0.08);
  backdrop-filter: blur(16px);
  cursor: pointer;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.upload-button:hover {
  color: #130b07;
  background: var(--gold);
  box-shadow: 0 0 36px rgba(255, 91, 29, 0.3);
}

.upload-button svg {
  width: 19px;
  stroke-width: 1.4;
}

.drop-zone {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 250px;
  place-items: center;
  align-content: center;
  border: 1px dashed rgba(242, 237, 227, 0.23);
  cursor: pointer;
  text-align: center;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.drop-zone:hover,
.drop-zone.is-dragging {
  border-color: rgba(255, 155, 88, 0.8);
  background: rgba(255, 79, 24, 0.075);
}

.drop-zone.is-dragging {
  transform: scale(0.995);
}

.drop-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(255, 192, 123, 0.34);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255, 84, 28, 0.09);
  box-shadow: 0 0 36px rgba(255, 61, 18, 0.14);
}

.drop-icon svg {
  width: 22px;
  stroke-width: 1.3;
}

.drop-zone strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-weight: 500;
}

.drop-zone small {
  margin-top: 9px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.upload-status {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: rgba(242, 237, 227, 0.48);
  font-size: 8px;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.uploaded-section {
  margin-bottom: 100px;
}

.collection-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(23, 21, 19, 0.18);
  color: rgba(23, 21, 19, 0.55);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sample-label {
  margin-top: 12px;
}

.uploaded-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.uploaded-card {
  position: relative;
  min-height: clamp(300px, 30vw, 430px);
  overflow: hidden;
  color: var(--paper);
  background: #111;
  animation: card-in 700ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.uploaded-card:nth-child(6n + 1),
.uploaded-card:nth-child(6n + 6) {
  grid-column: span 2;
  min-height: clamp(380px, 38vw, 540px);
}

.uploaded-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  cursor: pointer;
  background: transparent;
}

.uploaded-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 850ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.uploaded-card:hover img {
  transform: scale(1.035);
}

.uploaded-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 4, 0.14), transparent 45%, rgba(5, 5, 4, 0.78));
  content: "";
  pointer-events: none;
}

.uploaded-card-meta {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  pointer-events: none;
}

.uploaded-card-meta span {
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.uploaded-card-meta h3 {
  margin: 7px 54px 0 0;
  overflow: hidden;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.04em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.uploaded-card-meta small {
  display: inline-block;
  margin-top: 16px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(242, 237, 227, 0.48);
  color: rgba(242, 237, 227, 0.72);
  font-size: 7px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.delete-work {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(242, 237, 227, 0.24);
  border-radius: 50%;
  background: rgba(8, 9, 8, 0.38);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 18px;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.delete-work:hover {
  color: #180b06;
  background: var(--gold);
}

.empty-gallery {
  display: grid;
  min-height: 260px;
  grid-template-columns: auto minmax(0, 430px);
  gap: 36px;
  place-content: center;
  align-items: center;
  border: 1px solid rgba(23, 21, 19, 0.13);
}

.empty-gallery[hidden] {
  display: none;
}

.empty-gallery > span {
  color: rgba(23, 21, 19, 0.16);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 84px;
}

.empty-gallery p {
  margin: 0;
  color: rgba(23, 21, 19, 0.58);
  font-size: 12px;
  line-height: 1.8;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: clamp(360px, 40vw, 580px);
  gap: 16px;
}

.field-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  color: var(--paper);
  background: #141311;
  cursor: pointer;
}

.field-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.field-card:hover img {
  transform: scale(1.045);
}

.field-card .mineral-image {
  filter: saturate(2.1) contrast(1.2) brightness(1.06);
}

.field-card .lava-study-image {
  filter: saturate(1.16) contrast(1.1) brightness(0.88);
}

.field-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 4, 0.26), transparent 42%, rgba(5, 5, 4, 0.76));
  transition: background 420ms ease;
}

.field-card-top,
.field-card-copy {
  position: absolute;
  z-index: 2;
  right: 24px;
  left: 24px;
  pointer-events: none;
}

.field-card-top {
  top: 22px;
  display: flex;
  justify-content: space-between;
  color: rgba(242, 237, 227, 0.72);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.field-card-copy {
  bottom: 24px;
  transition: transform 420ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.field-card-copy p {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.field-card-copy h3 {
  margin: 0 0 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 3vw, 52px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.field-card-copy > span {
  color: rgba(242, 237, 227, 0.56);
  font-size: 7px;
  letter-spacing: 0.15em;
}

.field-card-view {
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(242, 237, 227, 0.45);
  text-transform: uppercase;
  transition:
    color 220ms ease,
    border-color 220ms ease;
}

.field-card-hit {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: transparent;
}

.field-card-hit::before {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 210, 150, 0);
  content: "";
  transition:
    border-color 260ms ease,
    inset 260ms ease;
}

.field-card:hover .field-card-shade,
.field-card:focus-within .field-card-shade {
  background: linear-gradient(180deg, rgba(5, 5, 4, 0.18), transparent 38%, rgba(5, 5, 4, 0.85));
}

.field-card:hover .field-card-copy,
.field-card:focus-within .field-card-copy {
  transform: translateY(-8px);
}

.field-card:hover .field-card-view,
.field-card:focus-within .field-card-view {
  color: var(--gold);
  border-color: var(--gold);
}

.field-card:hover .field-card-hit::before,
.field-card:focus-within .field-card-hit::before {
  inset: 10px;
  border-color: rgba(255, 210, 150, 0.46);
}

.field-card-hit:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -5px;
}

.contour-card {
  background:
    radial-gradient(circle at 64% 48%, rgba(255, 71, 22, 0.22), transparent 24%),
    #131311;
}

.contour-card svg {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  color: rgba(255, 112, 48, 0.58);
  filter: drop-shadow(0 0 5px rgba(255, 54, 15, 0.4));
  stroke-width: 1.2;
}

.scan-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 58%;
  width: 1px;
  background: linear-gradient(transparent, var(--gold), var(--ember), transparent);
  box-shadow: 0 0 28px rgba(255, 69, 17, 0.75);
}

.method-section {
  overflow: hidden;
  background: #0d0e0c;
}

.method-section::before {
  position: absolute;
  top: -240px;
  right: -180px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(242, 237, 227, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(242, 237, 227, 0.025),
    0 0 0 160px rgba(242, 237, 227, 0.018),
    0 0 100px rgba(255, 56, 18, 0.07);
  content: "";
}

.method-heading {
  display: grid;
  grid-template-columns: 0.6fr 0.55fr 1.65fr;
  gap: 5vw;
  align-items: start;
  margin-bottom: 86px;
}

.method-heading .section-number {
  color: rgba(242, 237, 227, 0.43);
}

.method-heading h2 {
  color: var(--paper);
}

.method-heading h2 em {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 211, 154, 0.66);
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.7fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.method-visual {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  background: #1a1917;
}

.method-visual > img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: brightness(0.78) saturate(1.8) contrast(1.16);
}

.method-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 237, 227, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 237, 227, 0.09) 1px, transparent 1px);
  background-size: 12.5% 16.66%;
  mask-image: linear-gradient(to right, black, transparent 85%);
}

.method-trace {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--gold);
  filter: drop-shadow(0 0 7px var(--ember));
  stroke-width: 1.5;
}

.method-trace circle {
  fill: var(--gold);
}

.analysis-tag {
  position: absolute;
  padding: 8px 12px;
  border: 1px solid rgba(255, 203, 142, 0.32);
  border-radius: 999px;
  background: rgba(9, 9, 8, 0.58);
  backdrop-filter: blur(12px);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.tag-one {
  top: 44%;
  left: 68%;
}

.tag-two {
  top: 57%;
  left: 36%;
}

.method-visual figcaption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: flex;
  justify-content: space-between;
  color: rgba(242, 237, 227, 0.58);
  font-size: 7px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.method-steps {
  border-top: 1px solid rgba(242, 237, 227, 0.16);
}

.method-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(242, 237, 227, 0.16);
}

.method-step > span {
  padding-top: 7px;
  color: var(--accent);
  font-size: 8px;
  letter-spacing: 0.15em;
}

.method-step h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 35px;
  font-weight: 500;
}

.method-step p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.85;
}

.metrics-section {
  background: linear-gradient(135deg, #ff4d1d, #ff7935 52%, #ffc06e);
}

.metrics-section .section-kicker {
  color: rgba(19, 9, 5, 0.6);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
  border-top: 1px solid rgba(19, 9, 5, 0.22);
  border-left: 1px solid rgba(19, 9, 5, 0.22);
}

.metrics-grid article {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-right: 1px solid rgba(19, 9, 5, 0.22);
  border-bottom: 1px solid rgba(19, 9, 5, 0.22);
  color: #170b07;
}

.metrics-grid strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(66px, 7vw, 112px);
  font-weight: 500;
  letter-spacing: -0.07em;
}

.metrics-grid span {
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-section {
  display: grid;
  min-height: 90vh;
  min-height: 90svh;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(242, 237, 227, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 237, 227, 0.04) 1px, transparent 1px),
    #0a0b09;
  background-size: 80px 80px;
}

.contact-copy {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-copy .section-number {
  margin-bottom: 58px;
  color: rgba(242, 237, 227, 0.43);
}

.contact-copy h2 {
  color: var(--paper);
  font-size: clamp(68px, 9.2vw, 148px);
}

.contact-copy h2 em {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 207, 146, 0.7);
  text-shadow: 0 0 44px rgba(255, 66, 18, 0.1);
}

.contact-copy a {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  margin-top: 58px;
  padding: 15px 22px;
  border: 1px solid rgba(255, 200, 135, 0.28);
  border-radius: 999px;
  background: rgba(255, 99, 36, 0.09);
  box-shadow: 0 0 32px rgba(255, 57, 17, 0.07);
  backdrop-filter: blur(15px);
  font-size: 10px;
  letter-spacing: 0.12em;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.contact-copy a:hover {
  color: #170b07;
  background: var(--gold);
  box-shadow: 0 0 42px rgba(255, 70, 18, 0.28);
}

.contact-copy a svg {
  width: 18px;
}

.contact-orbit {
  position: absolute;
  width: min(62vw, 820px);
  aspect-ratio: 1;
  border: 1px solid rgba(242, 237, 227, 0.08);
  border-radius: 50%;
}

.contact-orbit i {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(242, 237, 227, 0.06);
  border-radius: inherit;
}

.contact-orbit i:nth-child(2) {
  inset: 26%;
}

.contact-orbit i:nth-child(3) {
  inset: 42%;
  border-color: rgba(255, 104, 44, 0.45);
  box-shadow:
    0 0 50px rgba(255, 55, 18, 0.16),
    inset 0 0 24px rgba(255, 188, 111, 0.08);
}

.contact-note {
  position: absolute;
  bottom: 34px;
  margin: 0;
  color: rgba(242, 237, 227, 0.4);
  font-size: 7px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 32px clamp(24px, 4vw, 68px);
  border-top: 1px solid rgba(242, 237, 227, 0.1);
  background: #070807;
  color: rgba(242, 237, 227, 0.48);
  font-size: 7px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer .brand {
  color: var(--paper);
}

.site-footer p {
  margin: 0;
}

.site-footer > span {
  justify-self: end;
}

.work-detail {
  width: 100vw;
  max-width: none;
  height: 100vh;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  border: 0;
  color: #171513;
  background: #ebe7de;
  overscroll-behavior: contain;
}

.work-detail[open] {
  display: block;
  animation: detail-page-in 520ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.work-detail::backdrop {
  background: #050605;
}

.work-detail-page {
  min-height: 100%;
  background:
    linear-gradient(90deg, rgba(23, 21, 19, 0.045) 1px, transparent 1px),
    #ebe7de;
  background-size: 25% 100%;
}

.work-detail-header {
  position: fixed;
  z-index: 12;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px clamp(24px, 4vw, 68px);
  border-bottom: 1px solid rgba(242, 237, 227, 0.17);
  color: var(--paper);
  background: linear-gradient(180deg, rgba(5, 6, 5, 0.58), transparent);
}

.work-detail-brand {
  display: inline-flex;
  width: fit-content;
  gap: 10px;
  align-items: center;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.work-detail-brand svg {
  width: 26px;
  stroke-width: 1.35;
}

#detail-header-index {
  color: rgba(242, 237, 227, 0.58);
  font-size: 8px;
  letter-spacing: 0.16em;
}

.detail-close {
  display: inline-flex;
  justify-self: end;
  gap: 13px;
  align-items: center;
  padding: 9px 13px 9px 16px;
  border: 1px solid rgba(242, 237, 227, 0.23);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(7, 8, 7, 0.28);
  backdrop-filter: blur(14px);
  cursor: pointer;
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.detail-close i {
  position: relative;
  width: 18px;
  height: 18px;
}

.detail-close i::before,
.detail-close i::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 1px;
  background: currentColor;
  content: "";
}

.detail-close i::before {
  transform: rotate(45deg);
}

.detail-close i::after {
  transform: rotate(-45deg);
}

.detail-close:hover {
  color: #17100a;
  background: var(--gold);
}

.work-detail-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: var(--paper);
  background: #10110f;
}

.work-detail-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: detail-image-in 1.1s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.work-detail-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 5, 0.76), rgba(5, 6, 5, 0.14) 65%),
    linear-gradient(180deg, rgba(5, 6, 5, 0.25), transparent 38%, rgba(5, 6, 5, 0.58));
}

.work-detail-hero-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: clamp(24px, 8vw, 124px);
  width: min(740px, 72vw);
  transform: translateY(-42%);
}

.work-detail-hero-copy > p {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.work-detail-hero h2 {
  max-width: 900px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(74px, 10.5vw, 170px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.82;
  text-wrap: balance;
}

.detail-scroll-note {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 54px;
  color: rgba(242, 237, 227, 0.58);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-scroll-note i {
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.detail-hero-number {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 4vw, 68px);
  bottom: 20px;
  color: rgba(242, 237, 227, 0.14);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(120px, 21vw, 330px);
  line-height: 0.7;
}

.work-detail-intro {
  display: grid;
  grid-template-columns: 0.55fr 1.35fr 0.72fr;
  gap: clamp(32px, 6vw, 100px);
  padding: clamp(100px, 13vw, 190px) clamp(24px, 6vw, 100px);
}

.detail-section-index,
.detail-eyebrow,
.detail-facts dt {
  color: rgba(23, 21, 19, 0.48);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.detail-intro-copy h3 {
  margin: 16px 0 34px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(46px, 6vw, 86px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.detail-intro-copy h3 em {
  font-weight: 500;
}

.detail-intro-copy > p:last-child {
  max-width: 650px;
  margin: 0;
  color: rgba(23, 21, 19, 0.64);
  font-size: clamp(13px, 1.25vw, 17px);
  line-height: 1.9;
}

.detail-facts {
  margin: 0;
}

.detail-facts div {
  padding: 17px 0;
  border-bottom: 1px solid rgba(23, 21, 19, 0.15);
}

.detail-facts dt,
.detail-facts dd {
  margin: 0;
}

.detail-facts dd {
  margin-top: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
}

.work-detail-gallery {
  padding: 0 clamp(24px, 4vw, 68px) clamp(100px, 12vw, 180px);
}

.work-detail-gallery figure,
.work-detail-gallery blockquote {
  margin: 0;
}

.detail-image-full {
  background: #111;
}

.detail-image-full img {
  display: block;
  width: 100%;
  max-height: 88vh;
  object-fit: cover;
}

.detail-image-full figcaption {
  display: flex;
  justify-content: space-between;
  padding: 16px 2px;
  color: rgba(23, 21, 19, 0.48);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-image-pair {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 16px;
  margin-top: clamp(70px, 10vw, 150px);
}

.detail-image-pair figure {
  min-height: 68vw;
  max-height: 940px;
  overflow: hidden;
  background: #111;
}

.detail-image-pair figure img {
  width: 100%;
  height: calc(100% - 46px);
  object-fit: cover;
  object-position: 68% center;
  transform: scale(1.16);
}

.detail-image-pair figcaption {
  height: 46px;
  padding: 16px;
  color: rgba(242, 237, 227, 0.52);
  background: #111;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-image-pair blockquote {
  display: flex;
  min-height: 540px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 4vw, 64px);
  color: var(--paper);
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 89, 25, 0.26), transparent 28%),
    linear-gradient(rgba(242, 237, 227, 0.04) 1px, transparent 1px),
    #111210;
  background-size: auto, 100% 48px, auto;
}

.detail-image-pair blockquote > span,
.detail-image-pair blockquote small {
  color: rgba(242, 237, 227, 0.48);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.detail-image-pair blockquote p {
  margin: 60px 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1.05;
}

.work-detail-pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  border-top: 1px solid rgba(23, 21, 19, 0.17);
  border-bottom: 1px solid rgba(23, 21, 19, 0.17);
}

.work-detail-pagination button {
  min-height: 220px;
  padding: 36px clamp(24px, 5vw, 76px);
  cursor: pointer;
  text-align: left;
  background: transparent;
  transition:
    color 220ms ease,
    background 220ms ease;
}

.work-detail-pagination button:last-child {
  text-align: right;
}

.work-detail-pagination button:hover {
  color: var(--paper);
  background: #151310;
}

.work-detail-pagination button:disabled {
  cursor: default;
  opacity: 0.45;
}

.work-detail-pagination button:disabled:hover {
  color: inherit;
  background: transparent;
}

.work-detail-pagination button > span {
  display: block;
  margin-bottom: 13px;
  color: rgba(23, 21, 19, 0.48);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.work-detail-pagination button:hover > span {
  color: var(--gold);
}

.work-detail-pagination strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 3.5vw, 54px);
  font-weight: 500;
}

.work-detail-pagination > div {
  display: flex;
  min-width: 180px;
  gap: 13px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(23, 21, 19, 0.17);
  border-left: 1px solid rgba(23, 21, 19, 0.17);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.work-detail-pagination > div i {
  width: 45px;
  height: 1px;
  background: rgba(23, 21, 19, 0.28);
}

.work-detail-footer {
  display: flex;
  justify-content: space-between;
  padding: 28px clamp(24px, 4vw, 68px);
  color: rgba(23, 21, 19, 0.46);
  font-size: 7px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@keyframes detail-page-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes detail-image-in {
  from {
    filter: blur(10px);
    transform: scale(1.08);
  }
  to {
    filter: blur(0);
    transform: scale(1);
  }
}

.reveal-on-scroll {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(34px);
  transition:
    opacity 850ms ease,
    filter 850ms ease,
    transform 850ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@keyframes ken-burns-base {
  from {
    filter: blur(8px) brightness(0.51) saturate(0.64);
    transform: scale(1.12);
  }
  to {
    filter: blur(0) brightness(0.56) saturate(0.64);
    transform: scale(1);
  }
}

@keyframes ken-burns-reveal {
  from {
    filter: blur(8px) brightness(0.92) saturate(1.18) contrast(1.08);
    transform: scale(1.12);
  }
  to {
    filter: blur(0) brightness(1.02) saturate(1.24) contrast(1.12);
    transform: scale(1);
  }
}

@keyframes heat-drift {
  from {
    opacity: 0.38;
    transform: translate3d(-3px, 2px, 0) scale(1.012);
  }
  to {
    opacity: 0.66;
    transform: translate3d(4px, -3px, 0) scale(1.02);
  }
}

@keyframes topography-drift-a {
  from {
    stroke-dashoffset: 0;
    transform: translate3d(-24px, -8px, 0);
  }
  to {
    stroke-dashoffset: -190;
    transform: translate3d(42px, 20px, 0);
  }
}

@keyframes topography-drift-b {
  from {
    stroke-dashoffset: 120;
    transform: translate3d(32px, 14px, 0);
  }
  to {
    stroke-dashoffset: -80;
    transform: translate3d(-38px, -18px, 0);
  }
}

@keyframes atmosphere-orbit {
  from {
    opacity: 0.42;
    transform: translate3d(-12px, 10px, 0) scale(0.94);
  }
  to {
    opacity: 0.9;
    transform: translate3d(24px, -18px, 0) scale(1.08);
  }
}

@keyframes ember-breathe {
  0%,
  100% {
    box-shadow:
      inset 0 0 28px rgba(255, 205, 133, 0.13),
      inset 0 0 110px rgba(255, 73, 20, 0.13),
      0 0 18px rgba(255, 181, 96, 0.16),
      0 0 78px rgba(255, 56, 20, 0.13);
  }
  50% {
    box-shadow:
      inset 0 0 34px rgba(255, 216, 157, 0.21),
      inset 0 0 130px rgba(255, 73, 20, 0.2),
      0 0 25px rgba(255, 181, 96, 0.28),
      0 0 105px rgba(255, 56, 20, 0.2);
  }
}

@keyframes title-in {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}

@keyframes card-in {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(24px);
  }
}

@keyframes scroll-dot {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(8px);
  }
}

@media (max-width: 1050px) {
  .uploaded-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .uploaded-card:nth-child(6n + 1),
  .uploaded-card:nth-child(6n + 6) {
    grid-column: span 1;
    min-height: 440px;
  }

  .work-detail-intro {
    grid-template-columns: 0.42fr 1.3fr;
  }

  .detail-facts {
    grid-column: 2;
  }

  .detail-image-pair {
    grid-template-columns: 1fr 0.78fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 20px;
  }

  .desktop-nav,
  .header-edition {
    display: none;
  }

  .menu-button {
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(242, 237, 227, 0.22);
    border-radius: 50%;
    background: rgba(10, 10, 9, 0.2);
    backdrop-filter: blur(10px);
  }

  .menu-button span {
    width: 15px;
    height: 1px;
    background: var(--paper);
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    display: block;
  }

  .hero-content {
    top: 47%;
    left: 22px;
    width: calc(100% - 44px);
  }

  .hero-index {
    margin-bottom: 25px;
  }

  .hero h1 {
    font-size: clamp(55px, 16.5vw, 76px);
    line-height: 0.88;
  }

  .hero h1 em {
    margin-left: 0;
  }

  .hero-description {
    max-width: 310px;
    margin-top: 28px;
    font-size: 12px;
  }

  .coordinates {
    top: auto;
    right: 20px;
    bottom: 104px;
  }

  .coordinates span {
    display: none;
  }

  .interaction-hint {
    display: none;
  }

  .hero-footer {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .spotlight-ring {
    width: 300px;
    height: 300px;
  }

  .terrain-shade {
    background:
      linear-gradient(90deg, rgba(5, 5, 4, 0.69), rgba(5, 5, 4, 0.14)),
      linear-gradient(180deg, rgba(5, 5, 4, 0.35), transparent 34%, rgba(5, 5, 4, 0.5));
  }

  .section-shell {
    padding: 100px 20px;
  }

  .section-heading,
  .method-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 52px;
  }

  .section-heading h2,
  .method-heading h2 {
    font-size: clamp(52px, 16vw, 72px);
  }

  .section-intro {
    margin-top: 10px;
  }

  .field-notes {
    background-size: 50% 100%;
  }

  .upload-studio {
    margin-right: -20px;
    margin-bottom: 76px;
    margin-left: -20px;
    padding: 40px 20px;
  }

  .upload-studio-head {
    align-items: flex-end;
  }

  .upload-studio h3 {
    font-size: 35px;
  }

  .upload-button {
    gap: 10px;
    padding: 12px 14px;
  }

  .upload-button span {
    display: none;
  }

  .drop-zone {
    min-height: 220px;
  }

  .uploaded-grid {
    display: block;
  }

  .uploaded-card,
  .uploaded-card:nth-child(6n + 1),
  .uploaded-card:nth-child(6n + 6) {
    min-height: 430px;
    margin-bottom: 12px;
  }

  .work-detail-header {
    grid-template-columns: 1fr auto;
    padding: 16px 18px;
  }

  #detail-header-index,
  .detail-close span {
    display: none;
  }

  .detail-close {
    width: 42px;
    height: 42px;
    justify-content: center;
    padding: 0;
  }

  .work-detail-hero-copy {
    top: 51%;
    left: 20px;
    width: calc(100% - 40px);
  }

  .work-detail-hero h2 {
    font-size: clamp(62px, 20vw, 92px);
    line-height: 0.86;
  }

  .detail-scroll-note {
    margin-top: 38px;
  }

  .detail-hero-number {
    right: 16px;
    font-size: 42vw;
  }

  .work-detail-intro {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 90px 20px;
  }

  .detail-facts {
    display: grid;
    grid-column: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
  }

  .detail-intro-copy h3 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .work-detail-gallery {
    padding-right: 20px;
    padding-bottom: 90px;
    padding-left: 20px;
  }

  .detail-image-full {
    margin-right: -20px !important;
    margin-left: -20px !important;
  }

  .detail-image-full figcaption {
    padding-right: 20px;
    padding-left: 20px;
  }

  .detail-image-full figcaption span:last-child {
    display: none;
  }

  .detail-image-pair {
    display: block;
    margin-top: 72px;
  }

  .detail-image-pair figure {
    min-height: 76vh;
  }

  .detail-image-pair blockquote {
    min-height: 490px;
    margin-top: 12px;
    padding: 34px 24px;
  }

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

  .work-detail-pagination > div {
    display: none;
  }

  .work-detail-pagination button {
    min-height: 165px;
    padding: 24px 20px;
  }

  .work-detail-pagination button:first-child {
    border-right: 1px solid rgba(23, 21, 19, 0.17);
  }

  .work-detail-pagination strong {
    font-size: 27px;
  }

  .empty-gallery {
    min-height: 240px;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 30px;
  }

  .empty-gallery > span {
    font-size: 60px;
  }

  .field-grid {
    display: block;
  }

  .field-card {
    min-height: 380px;
    margin-bottom: 12px;
  }

  .method-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .method-visual,
  .method-visual > img {
    min-height: 470px;
  }

  .method-visual {
    margin-right: -20px;
    margin-left: -20px;
  }

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

  .metrics-grid article {
    min-height: 190px;
    padding: 20px;
  }

  .metrics-grid strong {
    font-size: clamp(58px, 18vw, 80px);
  }

  .contact-section {
    min-height: 82vh;
    min-height: 82svh;
  }

  .contact-copy h2 {
    font-size: clamp(61px, 18vw, 84px);
    line-height: 0.88;
  }

  .contact-copy a {
    margin-top: 42px;
  }

  .contact-orbit {
    width: 120vw;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 24px;
  }

  .site-footer p {
    display: none;
  }

}

@media (pointer: coarse) {
  .hero.is-ready .spotlight-ring,
  .hero.is-ready .reveal-layer {
    opacity: 0.74;
  }
}

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

/* Volcanic theme v15 */
:root {
  --paper: #fff1df;
  --muted: rgba(255, 232, 207, 0.62);
  --line: rgba(255, 188, 116, 0.2);
  --accent: #ff5a17;
  --ember: #ff2608;
  --gold: #ffc46f;
  --ink: #080402;
  --basalt: #120b08;
  --basalt-soft: #1a100c;
  --molten: #ff7a18;
}

body {
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 61, 12, 0.1), transparent 25%),
    #080402;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  border: 1px solid rgba(255, 183, 106, 0.08);
  box-shadow: inset 0 0 110px rgba(0, 0, 0, 0.52);
  content: "";
  pointer-events: none;
}

.global-lava-atmosphere {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 72% 34% at 12% 108%, rgba(255, 45, 4, 0.65), transparent 62%),
    radial-gradient(ellipse 78% 36% at 84% 110%, rgba(255, 112, 17, 0.54), transparent 65%),
    radial-gradient(ellipse 54% 23% at 52% 105%, rgba(255, 194, 71, 0.34), transparent 61%),
    linear-gradient(180deg, transparent 30%, rgba(54, 12, 4, 0.48));
  pointer-events: none;
}

.global-lava-atmosphere::before {
  position: absolute;
  right: -12%;
  bottom: -21vh;
  left: -12%;
  height: 64vh;
  background:
    radial-gradient(ellipse at 20% 72%, rgba(255, 219, 113, 0.82), transparent 10%),
    radial-gradient(ellipse at 52% 82%, rgba(255, 57, 5, 0.88), transparent 21%),
    radial-gradient(ellipse at 82% 68%, rgba(255, 148, 31, 0.72), transparent 16%),
    radial-gradient(ellipse at 64% 46%, rgba(255, 54, 4, 0.5), transparent 22%),
    linear-gradient(180deg, transparent, rgba(255, 37, 3, 0.78));
  filter: blur(28px);
  content: "";
  opacity: 0.82;
  transform: scaleX(1.08);
  animation: ambient-molten-flow 9s ease-in-out infinite alternate;
}

.global-lava-atmosphere::after {
  position: absolute;
  right: -14%;
  bottom: 2vh;
  left: -14%;
  height: 38vh;
  background:
    linear-gradient(174deg, transparent 0 30%, rgba(255, 58, 5, 0.34) 30.3%, transparent 31.4%),
    linear-gradient(187deg, transparent 0 54%, rgba(255, 159, 54, 0.24) 54.25%, transparent 55.1%),
    linear-gradient(166deg, transparent 0 72%, rgba(255, 53, 4, 0.27) 72.2%, transparent 73.2%);
  content: "";
  filter: blur(1px);
  opacity: 0.92;
  animation: ambient-crack-drift 12s ease-in-out infinite alternate;
}

#ambient-fire {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ambient-heat {
  position: absolute;
  z-index: 1;
  bottom: -18%;
  display: block;
  width: 42vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 56%, rgba(255, 204, 81, 0.34), transparent 20%),
    radial-gradient(circle, rgba(255, 62, 6, 0.58), transparent 68%);
  filter: blur(17px);
  opacity: 0.72;
  animation: ambient-heat-breathe 7s ease-in-out infinite alternate;
}

.heat-one {
  left: -8%;
}

.heat-two {
  left: 32%;
  width: 50vw;
  animation-delay: -3s;
}

.heat-three {
  right: -10%;
  width: 44vw;
  animation-delay: -5s;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header.is-scrolled {
  border-color: rgba(255, 154, 72, 0.16);
  background:
    linear-gradient(90deg, rgba(255, 71, 15, 0.04), transparent 36%),
    rgba(8, 4, 2, 0.86);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.32);
}

.section-number,
.section-intro,
.collection-label {
  color: rgba(255, 226, 196, 0.52);
}

.section-kicker {
  color: #ff6b25;
  text-shadow: 0 0 18px rgba(255, 59, 8, 0.24);
}

.section-heading h2,
.method-heading h2,
.contact-copy h2 {
  color: var(--paper);
}

.section-heading h2 em,
.method-heading h2 em,
.contact-copy h2 em {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 184, 104, 0.76);
  text-shadow: 0 0 34px rgba(255, 54, 8, 0.12);
}

.field-notes {
  color: var(--paper);
  background:
    radial-gradient(circle at 88% 7%, rgba(255, 73, 15, 0.22), transparent 24%),
    radial-gradient(circle at 12% 48%, rgba(255, 111, 31, 0.1), transparent 30%),
    linear-gradient(90deg, rgba(255, 190, 119, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(19, 11, 8, 0.87), rgba(9, 5, 3, 0.76) 46%, rgba(17, 9, 6, 0.85));
  background-size: auto, auto, 25% 100%, auto;
}

.field-notes::before {
  position: absolute;
  z-index: 0;
  top: 18%;
  right: -18%;
  width: 76%;
  height: 9px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 76, 12, 0.16) 12%,
    #ff4d0a 45%,
    #ffc06b 52%,
    #ff3108 61%,
    transparent
  );
  box-shadow:
    0 0 12px rgba(255, 70, 10, 0.7),
    0 0 48px rgba(255, 48, 5, 0.38),
    0 0 110px rgba(255, 62, 8, 0.22);
  content: "";
  opacity: 0.7;
  transform: rotate(-12deg) skewX(-34deg);
  animation: fissure-pulse 5.5s ease-in-out infinite alternate;
  pointer-events: none;
}

.field-notes::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0 43%, rgba(255, 83, 15, 0.1) 43.1%, transparent 43.7%),
    linear-gradient(72deg, transparent 0 68%, rgba(255, 156, 68, 0.07) 68.1%, transparent 68.45%);
  content: "";
  mix-blend-mode: screen;
  pointer-events: none;
}

.field-notes-atmosphere svg {
  color: #ff5a18;
  opacity: 0.3;
  filter: drop-shadow(0 0 7px rgba(255, 63, 8, 0.28));
}

.topography-lines-b {
  stroke: #ffb05d;
  opacity: 0.32;
}

.atmosphere-orbit {
  border-color: rgba(255, 91, 26, 0.18);
  box-shadow:
    0 0 0 48px rgba(255, 73, 18, 0.025),
    0 0 100px rgba(255, 48, 8, 0.13);
}

.upload-studio {
  border: 1px solid rgba(255, 124, 51, 0.2);
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 69, 12, 0.3), transparent 25%),
    radial-gradient(circle at 16% 88%, rgba(255, 129, 44, 0.09), transparent 26%),
    linear-gradient(rgba(255, 210, 158, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 210, 158, 0.035) 1px, transparent 1px),
    linear-gradient(145deg, #160c08, #090503 68%);
  background-size: auto, auto, 48px 48px, 48px 48px, auto;
  box-shadow:
    inset 0 -1px rgba(255, 186, 103, 0.08),
    0 30px 100px rgba(0, 0, 0, 0.42),
    0 0 80px rgba(255, 52, 8, 0.06);
}

.upload-studio::before {
  position: absolute;
  right: 7%;
  bottom: -2px;
  left: 7%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff3a09, #ffb04f, #ff3908, transparent);
  box-shadow: 0 0 24px rgba(255, 62, 8, 0.7);
  content: "";
  animation: molten-line 4s ease-in-out infinite alternate;
}

.upload-studio::after {
  border-color: rgba(255, 118, 42, 0.24);
  box-shadow:
    0 0 0 55px rgba(255, 72, 16, 0.04),
    0 0 100px rgba(255, 47, 8, 0.16);
}

.upload-button {
  border-color: rgba(255, 177, 99, 0.44);
  background:
    linear-gradient(135deg, rgba(255, 122, 39, 0.18), rgba(255, 50, 8, 0.08));
  box-shadow:
    inset 0 0 28px rgba(255, 93, 24, 0.12),
    0 0 34px rgba(255, 46, 8, 0.12);
}

.drop-zone {
  border-color: rgba(255, 160, 84, 0.25);
  background: rgba(255, 64, 10, 0.015);
}

.drop-zone:hover,
.drop-zone.is-dragging {
  border-color: rgba(255, 174, 92, 0.86);
  background:
    radial-gradient(circle at center, rgba(255, 84, 17, 0.12), transparent 52%);
  box-shadow: inset 0 0 80px rgba(255, 48, 6, 0.06);
}

.collection-label {
  border-color: rgba(255, 178, 101, 0.18);
}

.empty-gallery {
  border-color: rgba(255, 163, 83, 0.18);
  background:
    radial-gradient(circle at 50% 120%, rgba(255, 71, 10, 0.15), transparent 38%),
    rgba(255, 255, 255, 0.012);
}

.empty-gallery > span {
  color: rgba(255, 128, 49, 0.18);
}

.empty-gallery p {
  color: rgba(255, 226, 196, 0.5);
}

.uploaded-card,
.field-card {
  border: 1px solid rgba(255, 133, 57, 0.12);
  background: #0d0705;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}

.uploaded-card::before,
.field-card::before {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff3b08, #ffba63, transparent);
  box-shadow: 0 0 18px rgba(255, 57, 7, 0.6);
  content: "";
  opacity: 0.32;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.uploaded-card:hover::before,
.field-card:hover::before {
  opacity: 1;
}

.field-card img {
  filter: saturate(1.18) contrast(1.1) brightness(0.82);
}

.field-card .mineral-image {
  filter: saturate(2.3) contrast(1.25) brightness(0.94);
}

.field-card .lava-study-image {
  filter: saturate(1.45) contrast(1.15) brightness(0.84);
}

.field-card-shade {
  background:
    linear-gradient(180deg, rgba(7, 3, 2, 0.24), transparent 38%, rgba(7, 3, 2, 0.9)),
    radial-gradient(circle at 80% 75%, rgba(255, 58, 7, 0.08), transparent 26%);
}

.field-card:hover .field-card-shade,
.field-card:focus-within .field-card-shade {
  background:
    linear-gradient(180deg, rgba(7, 3, 2, 0.14), transparent 34%, rgba(7, 3, 2, 0.92)),
    radial-gradient(circle at 80% 75%, rgba(255, 68, 9, 0.18), transparent 32%);
}

.field-card-hit::before {
  border-color: rgba(255, 168, 86, 0);
}

.field-card:hover .field-card-hit::before,
.field-card:focus-within .field-card-hit::before {
  border-color: rgba(255, 138, 55, 0.58);
  box-shadow:
    inset 0 0 34px rgba(255, 61, 8, 0.04),
    0 0 26px rgba(255, 61, 8, 0.12);
}

.method-section {
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 64, 9, 0.18), transparent 25%),
    radial-gradient(circle at 12% 88%, rgba(255, 126, 36, 0.08), transparent 30%),
    linear-gradient(135deg, rgba(8, 4, 2, 0.88), rgba(18, 8, 5, 0.78) 52%, rgba(7, 3, 2, 0.88));
}

.method-section::before {
  border-color: rgba(255, 118, 43, 0.14);
  box-shadow:
    0 0 0 80px rgba(255, 63, 10, 0.025),
    0 0 0 160px rgba(255, 116, 31, 0.018),
    0 0 130px rgba(255, 48, 8, 0.13);
}

.method-section::after {
  position: absolute;
  right: -10%;
  bottom: 18%;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff3c08, #ffc063, transparent);
  box-shadow:
    0 0 14px rgba(255, 58, 7, 0.72),
    0 0 55px rgba(255, 48, 7, 0.34);
  content: "";
  opacity: 0.5;
  transform: rotate(9deg);
}

.method-visual {
  border: 1px solid rgba(255, 133, 55, 0.18);
  background: #0b0604;
  box-shadow:
    0 24px 90px rgba(0, 0, 0, 0.48),
    0 0 60px rgba(255, 54, 8, 0.07);
}

.method-visual > img {
  filter: brightness(0.62) saturate(2.15) contrast(1.28);
}

.method-grid {
  background-image:
    linear-gradient(rgba(255, 169, 91, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 169, 91, 0.09) 1px, transparent 1px);
}

.method-steps {
  border-color: rgba(255, 161, 82, 0.18);
}

.method-step {
  border-color: rgba(255, 161, 82, 0.18);
  transition:
    padding-left 260ms ease,
    background 260ms ease;
}

.method-step:hover {
  padding-left: 16px;
  background: linear-gradient(90deg, rgba(255, 63, 9, 0.09), transparent);
}

.metrics-section {
  color: var(--paper);
  background:
    radial-gradient(circle at 50% 115%, rgba(255, 92, 17, 0.42), transparent 38%),
    linear-gradient(125deg, rgba(22, 9, 5, 0.86), rgba(8, 4, 2, 0.72) 46%, rgba(27, 10, 5, 0.86));
}

.metrics-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(108deg, transparent 0 29%, rgba(255, 70, 9, 0.15) 29.1%, transparent 29.5%),
    linear-gradient(68deg, transparent 0 72%, rgba(255, 151, 56, 0.1) 72.1%, transparent 72.35%);
  content: "";
  pointer-events: none;
}

.metrics-section .section-kicker {
  position: relative;
  color: #ff7a2f;
}

.metrics-grid {
  position: relative;
  border-color: rgba(255, 151, 70, 0.2);
}

.metrics-grid article {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 151, 70, 0.2);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.012);
  transition:
    background 300ms ease,
    color 300ms ease;
}

.metrics-grid article::after {
  position: absolute;
  right: -30%;
  bottom: -70%;
  width: 130%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 91, 16, 0.28), transparent 64%);
  content: "";
  opacity: 0;
  transition:
    opacity 300ms ease,
    transform 450ms ease;
  transform: scale(0.72);
}

.metrics-grid article:hover {
  background: rgba(255, 67, 9, 0.08);
}

.metrics-grid article:hover::after {
  opacity: 1;
  transform: scale(1);
}

.metrics-grid strong,
.metrics-grid span {
  position: relative;
  z-index: 1;
}

.metrics-grid strong {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 186, 104, 0.68);
  text-shadow: 0 0 28px rgba(255, 60, 8, 0.12);
}

.contact-section {
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 66, 8, 0.2), transparent 11%),
    radial-gradient(circle at 50% 54%, rgba(255, 111, 25, 0.1), transparent 30%),
    linear-gradient(rgba(255, 204, 147, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 204, 147, 0.035) 1px, transparent 1px),
    rgba(7, 3, 2, 0.78);
  background-size: auto, auto, 80px 80px, 80px 80px, auto;
}

.contact-orbit {
  border-color: rgba(255, 121, 42, 0.18);
  box-shadow:
    0 0 90px rgba(255, 48, 7, 0.08),
    inset 0 0 90px rgba(255, 62, 8, 0.05);
  animation: crater-breathe 5.8s ease-in-out infinite alternate;
}

.contact-orbit i {
  border-color: rgba(255, 151, 69, 0.12);
}

.contact-orbit i:nth-child(3) {
  border-color: rgba(255, 101, 27, 0.62);
  background: radial-gradient(circle, rgba(255, 87, 15, 0.16), transparent 70%);
  box-shadow:
    0 0 70px rgba(255, 51, 7, 0.28),
    inset 0 0 40px rgba(255, 183, 95, 0.1);
}

.contact-copy a {
  border-color: rgba(255, 170, 89, 0.4);
  background: linear-gradient(135deg, rgba(255, 111, 29, 0.13), rgba(255, 49, 7, 0.08));
  box-shadow: 0 0 40px rgba(255, 51, 7, 0.11);
}

.site-footer {
  border-color: rgba(255, 145, 65, 0.13);
  background:
    linear-gradient(90deg, rgba(255, 64, 9, 0.04), transparent 30%),
    #050201;
}

.work-detail {
  color: var(--paper);
  background: #080402;
}

.work-detail-page {
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 65, 9, 0.16), transparent 21%),
    linear-gradient(90deg, rgba(255, 177, 95, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #110805, #080402 52%, #100704);
  background-size: auto, 25% 100%, auto;
}

.work-detail-intro {
  border-top: 1px solid rgba(255, 149, 69, 0.12);
}

.detail-section-index,
.detail-eyebrow,
.detail-facts dt,
.detail-image-full figcaption,
.work-detail-footer {
  color: rgba(255, 221, 188, 0.46);
}

.detail-intro-copy > p:last-child {
  color: rgba(255, 229, 204, 0.64);
}

.detail-facts div {
  border-color: rgba(255, 155, 76, 0.16);
}

.detail-facts dd {
  color: #ffd19a;
}

.detail-image-full,
.detail-image-pair figure,
.detail-image-pair figcaption {
  background: #090402;
}

.detail-image-full {
  border: 1px solid rgba(255, 133, 54, 0.14);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.42);
}

.detail-image-pair blockquote {
  border: 1px solid rgba(255, 130, 52, 0.15);
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 75, 12, 0.32), transparent 30%),
    linear-gradient(rgba(255, 207, 149, 0.035) 1px, transparent 1px),
    #0d0604;
  box-shadow: inset 0 -2px rgba(255, 82, 13, 0.18);
}

.work-detail-pagination {
  border-color: rgba(255, 151, 72, 0.18);
}

.work-detail-pagination button {
  color: var(--paper);
}

.work-detail-pagination button:hover {
  background:
    radial-gradient(circle at center, rgba(255, 72, 10, 0.16), transparent 70%),
    #120805;
}

.work-detail-pagination button > span {
  color: rgba(255, 221, 188, 0.46);
}

.work-detail-pagination > div {
  border-color: rgba(255, 151, 72, 0.18);
  color: rgba(255, 221, 188, 0.52);
}

.work-detail-pagination > div i {
  background: linear-gradient(90deg, #ff3c08, #ffc069);
  box-shadow: 0 0 10px rgba(255, 59, 7, 0.45);
}

@keyframes fissure-pulse {
  from {
    opacity: 0.38;
    filter: brightness(0.78);
    transform: rotate(-12deg) skewX(-34deg) scaleX(0.96);
  }
  to {
    opacity: 0.82;
    filter: brightness(1.2);
    transform: rotate(-12deg) skewX(-34deg) scaleX(1.04);
  }
}

@keyframes molten-line {
  from {
    opacity: 0.45;
    transform: scaleX(0.74);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes crater-breathe {
  from {
    opacity: 0.55;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes ambient-molten-flow {
  from {
    opacity: 0.58;
    transform: translate3d(-4%, 3%, 0) scaleX(1.02) scaleY(0.94);
  }
  to {
    opacity: 1;
    transform: translate3d(4%, -5%, 0) scaleX(1.16) scaleY(1.08);
  }
}

@keyframes ambient-crack-drift {
  from {
    opacity: 0.52;
    transform: translate3d(-3%, 8px, 0) scaleX(0.98);
  }
  to {
    opacity: 1;
    transform: translate3d(3%, -8px, 0) scaleX(1.03);
  }
}

@keyframes ambient-heat-breathe {
  from {
    opacity: 0.48;
    transform: translate3d(-5%, 5%, 0) scale(0.82);
  }
  to {
    opacity: 0.94;
    transform: translate3d(6%, -7%, 0) scale(1.2);
  }
}

@media (max-width: 760px) {
  .global-lava-atmosphere::before {
    height: 52vh;
    filter: blur(22px);
    opacity: 0.76;
  }

  .ambient-heat {
    width: 74vw;
    opacity: 0.68;
  }

  .heat-two {
    left: 16%;
    width: 84vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  #ambient-fire {
    display: none;
  }
}
