:root {
  color-scheme: dark;
  --bg: #040404;
  --bg-soft: #0a0a0c;
  --bg-elev: #121215;
  --bg-elev-strong: #17171b;
  --ink: #ece4d4;
  --ink-soft: rgba(236, 228, 212, 0.78);
  --muted: rgba(236, 228, 212, 0.5);
  --line: rgba(209, 171, 101, 0.24);
  --line-soft: rgba(255, 255, 255, 0.08);
  --gold: #cfac6d;
  --gold-deep: #8d6a35;
  --shadow: 0 36px 72px rgba(0, 0, 0, 0.34);
  --shell: min(1180px, calc(100% - 40px));
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --jp: "Shippori Mincho", "Yu Mincho", serif;
  --sans: "Jost", "Hiragino Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(124, 95, 42, 0.12), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(190, 157, 99, 0.08), transparent 20%),
    linear-gradient(180deg, #040404 0%, #080809 24%, #050506 56%, #020203 100%);
  color: var(--ink);
  font-family: var(--jp);
  line-height: 1.95;
  letter-spacing: 0.03em;
}

body.is-locked,
body.is-unlocking,
body.is-intro-active {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 44px 44px;
  mask: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5) 10%, rgba(0, 0, 0, 0.68) 85%, transparent);
  content: "";
  opacity: 0.42;
  pointer-events: none;
  z-index: -1;
}

.access-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 24%, rgba(207, 172, 109, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(4, 4, 4, 0.96), rgba(4, 4, 4, 0.98));
  transition: opacity 0.42s ease, visibility 0.42s ease;
}

.access-gate.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.access-gate__panel {
  width: min(100%, 420px);
  padding: 34px 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  text-align: center;
}

.access-gate__eyebrow,
.access-gate__label {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.access-gate__title {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 9vw, 4rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 0.96;
}

.access-gate__text {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.9;
}

.access-gate__form {
  margin-top: 24px;
  text-align: left;
}

.access-gate__input {
  width: 100%;
  min-height: 54px;
  margin-top: 10px;
  padding: 0 16px;
  border: 1px solid rgba(209, 171, 101, 0.32);
  border-radius: 16px;
  background: rgba(6, 6, 7, 0.88);
  color: var(--ink);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.access-gate__input::placeholder {
  color: rgba(236, 228, 212, 0.34);
}

.access-gate__input:focus {
  outline: none;
  border-color: rgba(209, 171, 101, 0.68);
  box-shadow: 0 0 0 3px rgba(209, 171, 101, 0.12);
}

.access-gate__error {
  min-height: 1.4em;
  margin-top: 10px;
  color: rgba(225, 178, 168, 0.92);
  font-size: 0.84rem;
  line-height: 1.6;
  text-align: left;
}

.access-gate__button {
  width: 100%;
  min-height: 54px;
  margin-top: 10px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.access-gate__button:hover,
.access-gate__button:focus-visible {
  background: var(--gold);
  color: #17130c;
  outline: none;
  transform: translateY(-1px);
}

.is-locked .intro-overlay,
.is-locked .intro-overlay *,
.is-locked .hero {
  animation-play-state: paused !important;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #050505;
  overflow: hidden;
  isolation: isolate;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease, visibility 1s ease;
}

.intro-overlay.is-active .intro-progress span {
  animation: progress 5s linear forwards;
}

.intro-overlay.is-end {
  pointer-events: none;
  animation: introOut 1s ease forwards;
}

.intro-particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
  opacity: 0.9;
  pointer-events: none;
}

.intro-light {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 0;
  opacity: 0.75;
}

.intro-light--left {
  background:
    linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.05) 40%, rgba(230, 210, 170, 0.12) 50%, transparent 70%);
  filter: blur(40px);
  transform: translateX(-50%);
  animation: introLightMove 5s ease forwards;
}

.intro-mist,
.intro-merge {
  position: absolute;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 0;
}

.intro-mist--left {
  inset: -44%;
  background:
    radial-gradient(ellipse at 16% 48%, rgba(238, 230, 210, 0.2), transparent 56%),
    radial-gradient(ellipse at 30% 60%, rgba(190, 170, 135, 0.13), transparent 66%),
    radial-gradient(ellipse at 22% 72%, rgba(255, 255, 255, 0.07), transparent 72%);
  filter: blur(112px);
  opacity: 0;
  animation: introMistFlow 5s cubic-bezier(0.45, 0, 0.2, 1) forwards;
}

.intro-mist--right {
  inset: -42% -28% -36% 36%;
  background:
    radial-gradient(ellipse at 72% 46%, rgba(228, 214, 191, 0.13), transparent 42%),
    radial-gradient(ellipse at 84% 64%, rgba(255, 255, 255, 0.08), transparent 30%),
    radial-gradient(ellipse at 66% 76%, rgba(187, 160, 118, 0.12), transparent 44%);
  filter: blur(130px);
  opacity: 0;
  animation: introMistRight 5s cubic-bezier(0.42, 0, 0.18, 1) forwards;
}

.intro-merge {
  inset: -20%;
  background:
    linear-gradient(
      105deg,
      transparent 18%,
      rgba(255, 255, 255, 0.02) 36%,
      rgba(230, 210, 170, 0.1) 50%,
      rgba(255, 255, 255, 0.025) 64%,
      transparent 82%
    );
  filter: blur(42px);
  opacity: 0;
  transform: translateX(-45%) rotate(-4deg);
  animation: introLightSweep 5s ease-in-out forwards;
}

.intro-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 10;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.9);
}

.intro-main {
  display: inline-block;
  margin: 0;
  font-family: var(--jp);
  font-size: clamp(3.2rem, 7vw, 7.2rem);
  line-height: 1.18;
  letter-spacing: 0.14em;
  opacity: 0;
  filter: blur(18px);
  transform: translateY(18px) scale(1.02);
  text-shadow:
    0 0 20px rgba(240, 210, 150, 0.3),
    0 0 80px rgba(255, 255, 255, 0.12);
  will-change: opacity, transform, filter;
}

.intro-sub {
  margin-top: 18px;
  color: rgba(240, 230, 210, 0.66);
  font-family: var(--sans);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  opacity: 0;
}

.intro-overlay.is-active .intro-main {
  animation: introMainFromSand 2.4s ease forwards;
  animation-delay: 2.2s;
}

.intro-overlay.is-active .intro-sub {
  animation: introFade 1.7s ease forwards;
  animation-delay: 2.35s;
}

.intro-skip {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 5, 5, 0.2);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.intro-skip:hover,
.intro-skip:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(-50%) translateY(-1px);
  outline: none;
}

.intro-progress {
  position: absolute;
  bottom: 18px;
  left: 50%;
  z-index: 6;
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-50%);
}

.intro-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
}

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

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

h1,
h2,
h3,
p,
ol,
li,
figure {
  margin: 0;
}

ol {
  padding: 0;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(4, 4, 4, 0.72);
  backdrop-filter: blur(18px);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 8px 0;
}

.topbar__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

.topbar__nav a {
  position: relative;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.topbar__nav a::after {
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.6);
  transform-origin: left;
  transition: opacity 180ms ease, transform 180ms ease;
}

.topbar__nav a:hover::after,
.topbar__nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 100svh;
  overflow: hidden;
  background: #050506;
  opacity: 0;
  transform: scale(1.015);
}

body.is-intro-ready .hero {
  animation: heroReveal 1.2s ease forwards;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 4, 4, 0.96) 0%, rgba(4, 4, 4, 0.88) 24%, rgba(4, 4, 4, 0.54) 48%, rgba(4, 4, 4, 0.64) 100%),
    linear-gradient(180deg, rgba(4, 4, 4, 0.38), rgba(4, 4, 4, 0.8));
  content: "";
  z-index: 1;
}

.hero::after {
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(4, 4, 4, 0.98));
  content: "";
  z-index: 1;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
  filter: brightness(0.48) saturate(0.76) contrast(1.05);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  padding: clamp(118px, 16vh, 158px) 0 84px;
}

.hero__copy {
  max-width: 720px;
  display: grid;
  align-content: start;
  gap: 18px;
}

.hero__copy > * {
  margin-top: 0;
  margin-bottom: 0;
}

.eyebrow,
.section-index,
.aside-card__label,
.quote-panel__label,
.process-step,
.site-footer__inner a,
.site-footer__inner span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__statement,
.section-title {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
}

.hero__statement {
  font-family: var(--jp);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1.2;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  width: max-content;
  max-width: 100%;
}

.hero__statement span {
  display: block;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(12px);
}

.hero__statement span:first-child {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.2em;
}

.hero__statement span:last-child {
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.94);
}

body.is-intro-ready .hero__statement span:first-child {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.18s;
}

body.is-intro-ready .hero__statement span:last-child {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.43s;
}

.hero__artist {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  letter-spacing: 0.22em;
  color: rgba(230, 210, 170, 0.72);
}

.hero__keycopy {
  margin: 0;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.hero__lead p + p {
  margin-top: 18px;
}

.line-unit {
  display: block;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.hero__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.hero__aside {
  display: grid;
  gap: 14px;
  align-self: end;
}

.aside-card,
.quote-panel,
.contact-panel,
.info-card,
.work-item {
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.aside-card {
  padding: 18px 18px 20px;
}

.aside-card__text {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.8;
}

.section {
  position: relative;
  padding: clamp(96px, 12vw, 152px) 0;
  scroll-margin-top: 88px;
}

.section > .shell {
  position: relative;
  z-index: 2;
}

.section[data-number]::before {
  position: absolute;
  top: clamp(32px, 5vw, 56px);
  right: max(18px, calc((100vw - min(1180px, calc(100% - 40px))) / 2));
  color: rgba(255, 255, 255, 0.04);
  font-family: var(--serif);
  font-size: clamp(4.8rem, 18vw, 12rem);
  line-height: 1;
  letter-spacing: 0.08em;
  content: attr(data-number);
  pointer-events: none;
}

.bg-text {
  position: absolute;
  top: var(--bg-text-top, 10%);
  left: 0;
  z-index: 1;
  color: var(--bg-text-color, rgba(255, 255, 255, 0.018));
  font-family: var(--serif);
  font-size: var(--bg-text-size, clamp(6rem, 18vw, 16rem));
  font-weight: 300;
  letter-spacing: 0.25em;
  line-height: 0.9;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  filter: blur(2px);
  transform: translate3d(var(--bg-text-start-x, -10%), var(--bg-text-start-y, 0), 0) rotate(var(--bg-text-rotate, 0deg));
  transform-origin: left center;
}

#about .bg-text {
  --bg-text-top: 12%;
  --bg-text-size: clamp(5.4rem, 16vw, 14rem);
  --bg-text-start-x: -10%;
  --bg-text-end-x: 7%;
}

#technical .bg-text {
  --bg-text-top: 10%;
  --bg-text-start-x: -12%;
  --bg-text-end-x: 8%;
}

#message .bg-text {
  --bg-text-top: 14%;
  --bg-text-start-x: -8%;
  --bg-text-end-x: 10%;
  --bg-text-start-y: 5%;
  --bg-text-end-y: 2%;
}

#cristal .bg-text {
  --bg-text-top: 14%;
  --bg-text-start-x: -10%;
  --bg-text-end-x: 8%;
  --bg-text-rotate: -2deg;
}

#works .bg-text {
  --bg-text-top: 11%;
  --bg-text-size: clamp(6.8rem, 20vw, 18rem);
  --bg-text-start-x: -11%;
  --bg-text-end-x: 9%;
}

#process .bg-text {
  --bg-text-top: 12%;
  --bg-text-start-x: -9%;
  --bg-text-end-x: 10%;
}

#statement .bg-text {
  --bg-text-top: 24%;
  --bg-text-color: rgba(255, 255, 255, 0.012);
  --bg-text-start-x: -10%;
  --bg-text-end-x: 6%;
  --bg-text-rotate: -1.5deg;
}

#contact .bg-text {
  --bg-text-top: 14%;
  --bg-text-size: clamp(5rem, 15vw, 12.5rem);
  --bg-text-start-x: -10%;
  --bg-text-end-x: 8%;
}

.section--muted {
  background:
    linear-gradient(180deg, rgba(12, 12, 14, 0.92), rgba(6, 6, 7, 0.92)),
    rgba(8, 8, 9, 0.6);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.section-grid--reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 0.92fr);
}

.section-grid--reverse .section-copy {
  order: 2;
}

.section-grid--reverse .visual-frame {
  order: 1;
}

.section-copy {
  position: relative;
  z-index: 1;
}

.section-copy--narrow {
  max-width: 620px;
}

.section-copy--wide {
  max-width: 780px;
}

.section-copy--centered {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-index {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-index::before {
  width: 34px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.section-title {
  margin-top: 18px;
  font-size: clamp(2.8rem, 6vw, 4.9rem);
  letter-spacing: 0.05em;
  line-height: 0.98;
}

.split-text span {
  display: inline-block;
}

.section-subtitle {
  margin-top: 14px;
  color: rgba(236, 228, 212, 0.96);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.8;
}

.section-body {
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.section-body p + p {
  margin-top: 16px;
}

.section-body--centered {
  font-size: 1.02rem;
}

.visual-frame {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--line-soft);
  background: var(--bg-elev);
  box-shadow: var(--shadow);
  --img-brightness: 0.52;
  --img-brightness-on: 0.7;
  --img-saturate: 0.78;
  --img-contrast: 1.04;
}

.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(var(--img-brightness)) saturate(var(--img-saturate)) contrast(var(--img-contrast));
  transform: scale(1.02);
  transition: filter 1.5s ease;
}

.visual-frame::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.22), rgba(4, 4, 4, 0.72)),
    linear-gradient(115deg, rgba(4, 4, 4, 0.58), transparent 48%, rgba(4, 4, 4, 0.42));
  content: "";
}

.visual-frame--portrait {
  min-height: 640px;
}

.visual-frame--about img {
  object-position: center 18%;
}

.visual-frame--about {
  --img-brightness: 0.4;
  --img-brightness-on: 0.54;
  --img-saturate: 0.72;
  --img-contrast: 1.08;
}

.visual-frame--technical img {
  object-position: center 28%;
}

.visual-frame--technical {
  --img-brightness: 0.24;
  --img-brightness-on: 0.38;
  --img-saturate: 0.58;
  --img-contrast: 1.02;
}

.visual-frame--technical::after {
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.24), rgba(4, 4, 4, 0.78)),
    linear-gradient(90deg, rgba(4, 4, 4, 0.42), rgba(4, 4, 4, 0.08) 44%, rgba(4, 4, 4, 0.62));
}

.visual-frame--message img {
  object-position: center 28%;
}

.visual-frame--message {
  --img-brightness: 0.36;
  --img-brightness-on: 0.5;
  --img-saturate: 0.72;
  --img-contrast: 1.03;
}

.visual-frame--landscape {
  min-height: 420px;
}

.visual-frame--works img {
  object-position: center center;
}

.works-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(var(--img-brightness)) saturate(var(--img-saturate)) contrast(var(--img-contrast));
  transform: scale(1.02);
  transition: filter 1.5s ease;
}

.visual-frame--works {
  position: relative;
  overflow: hidden;
  --img-brightness: 0.44;
  --img-brightness-on: 0.58;
  --img-saturate: 0.74;
  --img-contrast: 1.04;
}

.visual-frame--works::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.06),
    rgba(0, 0, 0, 0.28)
  );
}

.visual-frame--process img {
  object-position: 62% center;
}

.visual-frame--process {
  --img-brightness: 0.34;
  --img-brightness-on: 0.48;
  --img-saturate: 0.66;
  --img-contrast: 1.05;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.info-card {
  padding: 18px 18px 20px;
}

.info-card h3,
.work-item h3 {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-card p,
.work-item p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.75;
}

.section--cristal {
  overflow: hidden;
  background: #05060a;
}

.section-band__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  --cristal-brightness: 0.3;
  --cristal-brightness-on: 0.42;
}

.section-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% center;
  filter: brightness(var(--cristal-brightness)) saturate(0.72) contrast(1.04);
  transform: scale(1.05);
  transition: transform 2s ease, filter 1.5s ease;
}

.section--cristal::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 76% 32%, rgba(239, 233, 222, 0.16), transparent 14%),
    linear-gradient(90deg, rgba(4, 4, 4, 0.94) 0%, rgba(4, 4, 4, 0.82) 42%, rgba(4, 4, 4, 0.56) 100%),
    linear-gradient(180deg, rgba(4, 4, 4, 0.3), rgba(4, 4, 4, 0.88));
  content: "";
}

.cristal-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(24px, 5vw, 56px);
  align-items: end;
}

.quote-panel {
  align-self: end;
  padding: 22px 22px 24px;
}

.quote-panel__text {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.9;
}

.work-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.work-item {
  padding: 16px 18px 18px;
}

.process-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
  list-style: none;
}

.process-list li {
  display: grid;
  gap: 4px;
  padding: 16px 18px 18px;
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.process-desc {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.section--statement {
  padding-top: clamp(118px, 15vw, 188px);
  background:
    radial-gradient(circle at center, rgba(184, 143, 74, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(4, 4, 4, 0.96), rgba(7, 7, 8, 0.98));
}

.statement-shell {
  display: grid;
  gap: 30px;
}

.statement-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(207, 172, 109, 0.54), transparent);
}

.has-section-motion .bg-text {
  opacity: 0;
  transform: translate3d(var(--bg-text-start-x, -10%), var(--bg-text-start-y, 0), 0) rotate(var(--bg-text-rotate, 0deg));
  transition: transform 3s ease, opacity 1.6s ease;
}

.has-section-motion .section.is-visible .bg-text {
  opacity: 1;
  transform: translate3d(var(--bg-text-end-x, 10%), var(--bg-text-end-y, var(--bg-text-start-y, 0)), 0) rotate(var(--bg-text-rotate, 0deg));
}

.has-section-motion .section-index,
.has-section-motion .section-subtitle,
.has-section-motion .section-body,
.has-section-motion .card-grid,
.has-section-motion .work-list,
.has-section-motion .quote-panel,
.has-section-motion .contact-button,
.has-section-motion .statement-line,
.has-section-motion .visual-frame,
.has-section-motion .section-band__media,
.has-section-motion .info-card,
.has-section-motion .work-item {
  opacity: 0;
  transform: translateY(20px);
}

.has-section-motion .split-text span {
  opacity: 0;
  transform: translateY(10px);
}

.has-section-motion .section-body p {
  opacity: 0;
  transform: translateY(16px);
}

.has-section-motion .section.is-visible .split-text span {
  animation: textFade 0.8s ease forwards;
  animation-delay: calc(0.03s * var(--i));
}

.has-section-motion .section.is-visible .section-index {
  animation: fadeUp 0.75s ease forwards;
}

.has-section-motion .section.is-visible .section-subtitle {
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 0.18s;
}

.has-section-motion .section.is-visible .section-body {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.4s;
}

.has-section-motion .section.is-visible .section-body p {
  animation: fadeUp 0.95s ease forwards;
}

.has-section-motion .section.is-visible .section-body p:nth-child(1) {
  animation-delay: 0.42s;
}

.has-section-motion .section.is-visible .section-body p:nth-child(2) {
  animation-delay: 0.58s;
}

.has-section-motion .section.is-visible .section-body p:nth-child(3) {
  animation-delay: 0.74s;
}

.has-section-motion .section.is-visible .card-grid,
.has-section-motion .section.is-visible .work-list {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.55s;
}

.has-section-motion .section.is-visible .info-card,
.has-section-motion .section.is-visible .work-item {
  animation: fadeUp 0.95s ease forwards;
}

.has-section-motion .section.is-visible .info-card:nth-child(1),
.has-section-motion .section.is-visible .work-item:nth-child(1) {
  animation-delay: 0.54s;
}

.has-section-motion .section.is-visible .info-card:nth-child(2),
.has-section-motion .section.is-visible .work-item:nth-child(2) {
  animation-delay: 0.64s;
}

.has-section-motion .section.is-visible .info-card:nth-child(3),
.has-section-motion .section.is-visible .work-item:nth-child(3) {
  animation-delay: 0.74s;
}

.has-section-motion .section.is-visible .info-card:nth-child(4),
.has-section-motion .section.is-visible .work-item:nth-child(4) {
  animation-delay: 0.84s;
}

.has-section-motion .section.is-visible .quote-panel {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.6s;
}

.has-section-motion .section.is-visible .contact-button {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.65s;
}

.has-section-motion .section.is-visible .statement-line {
  animation: slowFade 1.8s ease forwards;
  animation-delay: 0.12s;
}

.has-section-motion .process-list li {
  opacity: 0;
  transform: translateY(15px);
}

.has-section-motion .section.is-visible .process-list li {
  animation: fadeUp 0.8s ease forwards;
}

.has-section-motion .process-list li:nth-child(1) { animation-delay: 0.1s; }
.has-section-motion .process-list li:nth-child(2) { animation-delay: 0.2s; }
.has-section-motion .process-list li:nth-child(3) { animation-delay: 0.3s; }
.has-section-motion .process-list li:nth-child(4) { animation-delay: 0.4s; }
.has-section-motion .process-list li:nth-child(5) { animation-delay: 0.5s; }

.has-section-motion .section.is-visible .visual-frame {
  animation: fadeFrame 1.4s ease forwards;
  --img-brightness: var(--img-brightness-on);
}

.has-section-motion .section--cristal.is-visible .section-band__media {
  animation: fadeFrame 1.8s ease forwards;
  --cristal-brightness: var(--cristal-brightness-on);
}

.has-section-motion .section--cristal.is-visible .section-band__media img {
  transform: scale(1);
}

.has-section-motion .section--statement {
  opacity: 0;
}

.has-section-motion .section--statement.is-visible {
  animation: slowFade 2.5s ease forwards;
}

.section--final {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(120px, 15vw, 180px) 20px;
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.96), #050505 34%, #040404 100%);
  overflow: hidden;
}

.section--final::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(207, 172, 109, 0.05), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent 22%, rgba(255, 255, 255, 0.02) 72%, transparent);
  content: "";
  pointer-events: none;
}

.final-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 60%);
  filter: blur(60px);
  opacity: 0;
  transition: opacity 2s ease;
}

.section--final.is-visible .final-overlay {
  opacity: 1;
}

.final-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 4vw, 3rem);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.15em;
  opacity: 0;
  transform: translateY(20px);
}

.final-copy p + p {
  margin-top: 0.28em;
}

.section--final.is-visible .final-copy {
  animation: finalFade 2.4s ease forwards;
}

.contact-panel {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 42px);
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-button:hover,
.contact-button:focus-visible {
  background: var(--gold);
  color: #17130c;
  transform: translateY(-1px);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 26px 0 36px;
  background: rgba(2, 2, 3, 0.96);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.site-footer__inner p {
  margin: 0;
}

@keyframes nameFromMotion {
  0% {
    opacity: 0;
    filter: blur(24px);
    transform: translateY(14px) scale(1.04);
  }

  36% {
    opacity: 0.16;
    filter: blur(18px);
  }

  60% {
    opacity: 0.52;
    filter: blur(5px);
    transform: translateY(0) scale(1);
  }

  78% {
    opacity: 0.58;
    filter: blur(3px);
  }

  100% {
    opacity: 0.84;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes textFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeFrame {
  from {
    opacity: 0;
    transform: translateY(26px) scale(1.02);
  }

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

@keyframes slowFade {
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes introMainFromSand {
  0% {
    opacity: 0;
    filter: blur(30px);
    transform: translateY(24px) scale(1.04);
  }

  50% {
    opacity: 0.6;
    filter: blur(8px);
    transform: translateY(0) scale(1);
  }

  70% {
    opacity: 1;
    filter: blur(0);
  }

  100% {
    opacity: 0.95;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes introFade {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(10px);
  }

  100% {
    opacity: 0.6;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes introMistFlow {
  0% {
    opacity: 0;
    transform: translateX(-46%) translateY(18px) rotate(-12deg) scale(0.9, 1.16);
    border-radius: 42% 58% 66% 34% / 48% 40% 60% 52%;
  }

  26% {
    opacity: 0.38;
    transform: translateX(-25%) translateY(8px) rotate(-6deg) scale(1.06, 1.08);
  }

  52% {
    opacity: 0.66;
    transform: translateX(-6%) translateY(-5px) rotate(3deg) scale(1.22, 0.98);
    border-radius: 62% 38% 45% 55% / 42% 62% 38% 58%;
  }

  76% {
    opacity: 0.42;
    transform: translateX(6%) translateY(-20px) rotate(9deg) scale(1.34, 0.92);
  }

  100% {
    opacity: 0;
    transform: translateX(20%) translateY(-42px) rotate(16deg) scale(1.5, 0.86);
  }
}

@keyframes introLeftLight {
  0% {
    opacity: 0;
    transform: translateX(-18%) scale(1.04);
  }

  22% {
    opacity: 0.2;
  }

  52% {
    opacity: 0.42;
    transform: translateX(-4%) scale(1.08);
  }

  76% {
    opacity: 0.24;
    transform: translateX(5%) scale(1.1);
  }

  100% {
    opacity: 0;
    transform: translateX(16%) scale(1.16);
  }
}

@keyframes introMistRight {
  0% {
    opacity: 0;
    transform: translateX(18%) translateY(16px) rotate(10deg) scale(0.92, 1.08);
    border-radius: 58% 42% 46% 54% / 50% 54% 46% 50%;
  }

  30% {
    opacity: 0.24;
    transform: translateX(8%) translateY(8px) rotate(6deg) scale(1.02, 1.04);
  }

  58% {
    opacity: 0.42;
    transform: translateX(-2%) translateY(-4px) rotate(-1deg) scale(1.12, 0.98);
    border-radius: 44% 56% 60% 40% / 52% 36% 64% 48%;
  }

  82% {
    opacity: 0.22;
    transform: translateX(-9%) translateY(-18px) rotate(-8deg) scale(1.18, 0.92);
  }

  100% {
    opacity: 0;
    transform: translateX(-16%) translateY(-32px) rotate(-12deg) scale(1.26, 0.88);
  }
}

@keyframes introLightSweep {
  0% {
    opacity: 0;
    transform: translateX(-50%) rotate(-4deg) scale(0.95);
  }

  24% {
    opacity: 0.22;
  }

  55% {
    opacity: 0.34;
    transform: translateX(0) rotate(2deg) scale(1.06);
  }

  82% {
    opacity: 0.18;
  }

  100% {
    opacity: 0;
    transform: translateX(52%) rotate(6deg) scale(1.12);
  }
}

@keyframes introLightMove {
  to {
    transform: translateX(50%);
  }
}

@keyframes progress {
  to {
    width: 100%;
  }
}

@keyframes introOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes finalFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .topbar__inner,
  .hero__inner,
  .section-grid,
  .cristal-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .topbar__inner {
    min-height: auto;
    padding: 12px 0;
  }

  .topbar__nav {
    justify-content: center;
  }

  .hero__inner {
    padding-top: 128px;
  }

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

  .section-grid--reverse .section-copy,
  .section-grid--reverse .visual-frame {
    order: initial;
  }

  .visual-frame,
  .visual-frame--portrait {
    min-height: 480px;
  }

  .contact-panel {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .access-gate {
    padding: 18px;
  }

  .access-gate__panel {
    padding: 28px 20px 24px;
    border-radius: 24px;
  }

  .intro-main {
    font-size: clamp(2.6rem, 11vw, 4.6rem);
    letter-spacing: 0.1em;
  }

  .intro-sub {
    font-size: 0.76rem;
    letter-spacing: 0.16em;
  }

  .intro-skip {
    bottom: 32px;
    left: 50%;
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.68rem;
  }

  .intro-progress {
    bottom: 12px;
    width: 92px;
  }

  body {
    line-height: 1.85;
  }

  .shell {
    width: min(calc(100% - 28px), 1180px);
  }

  .topbar__nav {
    gap: 8px 14px;
  }

  .hero__statement {
    font-size: clamp(2.8rem, 12vw, 4.8rem);
    line-height: 1.12;
  }

  .hero__artist {
    margin-top: 0;
    font-size: 1rem;
    letter-spacing: 0.16em;
  }

  .hero__tags span {
    min-height: 34px;
    font-size: 0.76rem;
  }

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

  .section {
    padding: 86px 0;
  }

  .bg-text {
    --bg-text-top: 16%;
    --bg-text-size: clamp(3.8rem, 18vw, 6.2rem);
    letter-spacing: 0.18em;
    filter: blur(1.4px);
  }

  .section[data-number]::before {
    top: 24px;
    right: 16px;
    font-size: clamp(3.8rem, 22vw, 6rem);
  }

  .section-title {
    font-size: clamp(2.4rem, 11vw, 3.2rem);
  }

  .section-subtitle {
    font-size: 1rem;
  }

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

  .contact-panel {
    padding: 24px 20px 22px;
  }

  .contact-button {
    width: 100%;
  }

  .final-copy {
    font-size: clamp(1.3rem, 7vw, 2rem);
    letter-spacing: 0.12em;
  }

  .site-footer__inner {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-overlay {
    display: none;
  }

  .hero {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .bg-text {
    opacity: 1 !important;
    transition: none !important;
  }

  .split-text span,
  .hero__statement span,
  .section-index,
  .section-subtitle,
  .section-body,
  .section-body p,
  .card-grid,
  .info-card,
  .work-list,
  .work-item,
  .quote-panel,
  .contact-button,
  .process-list li,
  .section--statement,
  .section-band__media,
  .visual-frame,
  .statement-line,
  .final-copy,
  .final-overlay {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
