:root {
  color-scheme: dark;
  --bg: #050608;
  --bg-soft: #0b0d11;
  --bg-deep: #030406;
  --panel: rgba(11, 13, 18, 0.88);
  --panel-soft: rgba(17, 19, 26, 0.92);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f5efe6;
  --muted: #b8b0a6;
  --muted-strong: #d2cbc1;
  --gold: #d7c18d;
  --gold-soft: rgba(215, 193, 141, 0.18);
  --wine: #6e2331;
  --shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
  --shadow-strong: 0 60px 120px rgba(0, 0, 0, 0.55);
  --photo-shadow: 0 44px 110px rgba(0, 0, 0, 0.56);
  --shell: min(1180px, calc(100% - clamp(32px, 6vw, 96px)));
  --radius: 28px;
  --radius-lg: 40px;
  --ease-out: cubic-bezier(0.2, 0.72, 0.16, 1);
  --photo-brightness: 0.84;
  --photo-contrast: 1.18;
  --photo-saturation: 0.9;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", "Hiragino Sans", "Yu Gothic", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(110, 35, 49, 0.22), transparent 28%),
    radial-gradient(circle at 18% 12%, rgba(215, 193, 141, 0.08), transparent 22%),
    linear-gradient(180deg, #06070b 0%, #050608 48%, #030305 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

body.is-intro-active {
  overflow: hidden;
  height: 100svh;
}

body.is-gate-active {
  overflow: hidden;
  height: 100svh;
}

body.is-gate-active .intro-overlay {
  opacity: 0;
  visibility: hidden;
}

body.is-gate-active main,
body.is-gate-active .ambient-particles {
  opacity: 0;
  visibility: hidden;
}

body.is-gate-active .micro-nav,
body.is-intro-active .micro-nav {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
}

main,
.ambient-particles {
  transition:
    opacity 0.48s var(--ease-out),
    visibility 0.48s var(--ease-out);
}

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

img,
video {
  width: 100%;
  height: auto;
}

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

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", "Shippori Mincho", serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

#gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  background-color: #000;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.025), transparent 18%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.96) 0%, rgba(2, 2, 4, 1) 100%);
  transition:
    opacity 0.68s var(--ease-out),
    visibility 0.68s var(--ease-out);
}

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

.gate-inner {
  transition:
    opacity 0.42s ease,
    transform 0.42s ease;
}

#gate.is-entered .gate-inner {
  opacity: 0;
  transform: translateY(8px);
}

.gate-inner {
  width: min(100% - 48px, 320px);
  text-align: center;
}

.gate-title {
  margin-bottom: 24px;
  color: #aaa29a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

#gate-input {
  width: 180px;
  max-width: 100%;
  padding: 8px 8px 10px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-family: "Manrope", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  outline: none;
  transition:
    border-color 0.32s ease,
    color 0.32s ease;
}

#gate-input::placeholder {
  color: rgba(245, 239, 230, 0.34);
  letter-spacing: 0.16em;
}

#gate-input:focus {
  border-bottom-color: rgba(215, 193, 141, 0.6);
}

#gate-enter {
  display: block;
  margin-top: 16px;
  margin-inline: auto;
  padding: 0;
  border: none;
  background: none;
  color: rgba(245, 239, 230, 0.92);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition:
    color 0.24s ease,
    opacity 0.24s ease;
}

#gate-enter:hover,
#gate-enter:focus-visible {
  color: var(--gold);
  outline: none;
}

#gate-enter:disabled,
#gate-input:disabled {
  cursor: default;
  opacity: 0.45;
}

.gate-error {
  min-height: 1.4em;
  margin-top: 12px;
  color: rgba(184, 176, 166, 0.58);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.ambient-particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.28;
  mix-blend-mode: screen;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.016), transparent 28%),
    #020204;
  transition:
    opacity 0.9s var(--ease-out),
    visibility 0.9s var(--ease-out);
}

.intro-overlay.is-complete {
  opacity: 0;
  visibility: hidden;
}

.intro-video,
.intro-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.intro-video {
  object-fit: cover;
  opacity: 0;
  filter: brightness(0.65) contrast(1.08) saturate(0.75);
  transition: opacity 0.9s var(--ease-out);
}

.intro-overlay.is-video-visible .intro-video {
  opacity: 0.42;
}

.intro-particles {
  z-index: 1;
}

.intro-copy {
  position: absolute;
  inset: auto 0 112px;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 12px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition:
    opacity 1.1s var(--ease-out),
    transform 1.1s var(--ease-out);
}

.intro-overlay.is-scent-visible .intro-copy {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.intro-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(247, 239, 230, 0.34);
}

.intro-fallback {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(15px, 1.8vw, 20px);
  line-height: 1.95;
  letter-spacing: 0.18em;
  color: rgba(247, 239, 230, 0.24);
  text-align: center;
}

.intro-skip {
  position: absolute;
  top: 24px;
  right: clamp(20px, 4vw, 40px);
  z-index: 3;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: rgba(5, 6, 8, 0.22);
  color: rgba(245, 239, 230, 0.44);
  backdrop-filter: blur(10px);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.5s var(--ease-out),
    border-color 0.24s ease,
    transform 0.24s ease,
    background 0.24s ease;
}

.intro-overlay.is-scent-visible .intro-skip {
  opacity: 1;
  pointer-events: auto;
}

.intro-skip:hover,
.intro-skip:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(215, 193, 141, 0.5);
  background: rgba(5, 6, 8, 0.52);
  outline: none;
}

.intro-progress {
  position: absolute;
  left: clamp(20px, 4vw, 40px);
  right: clamp(20px, 4vw, 40px);
  bottom: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 3;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}

.intro-overlay.is-scent-visible .intro-progress {
  opacity: 1;
}

.intro-progress span {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(215, 193, 141, 0.2), rgba(215, 193, 141, 1));
  transform-origin: left center;
  transform: scaleX(0);
}

.micro-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1060px, calc(100% - 28px));
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0;
  background: rgba(6, 7, 10, 0.32);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
  transition:
    opacity 0.5s var(--ease-out),
    visibility 0.5s var(--ease-out),
    transform 0.5s var(--ease-out);
}

.micro-brand,
.micro-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.micro-brand {
  color: rgba(245, 239, 230, 0.9);
}

.micro-link {
  color: var(--gold);
}

main {
  position: relative;
}

main {
  z-index: 1;
}

.panel {
  position: relative;
  padding: clamp(88px, 12vw, 160px) 0;
}

.panel-soft {
  background:
    linear-gradient(180deg, rgba(9, 11, 15, 0.72) 0%, rgba(9, 11, 15, 0.94) 100%);
}

.panel-deep {
  background:
    radial-gradient(circle at 20% 22%, rgba(215, 193, 141, 0.12), transparent 16%),
    radial-gradient(circle at 82% 28%, rgba(110, 35, 49, 0.16), transparent 18%),
    linear-gradient(180deg, #05060a 0%, #07090e 100%);
}

.panel-stage {
  background:
    radial-gradient(circle at top left, rgba(110, 35, 49, 0.18), transparent 22%),
    linear-gradient(180deg, #05070b 0%, #090b10 100%);
}

.panel-closing {
  background:
    radial-gradient(circle at top center, rgba(215, 193, 141, 0.14), transparent 22%),
    radial-gradient(circle at 78% 34%, rgba(110, 35, 49, 0.18), transparent 18%),
    linear-gradient(180deg, #08090d 0%, #040507 100%);
}

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

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: auto;
  padding: 0;
  margin-bottom: 18px;
  border: 0;
  background: none;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  background: rgba(215, 193, 141, 0.52);
}

.section-title {
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 0.98;
  text-wrap: balance;
}

.section-intro,
.section-copy {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 1.28vw, 1.1rem);
}

.section-copy p + p,
.section-intro {
  margin-top: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    color 0.24s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(215, 193, 141, 0.44);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.button-primary {
  border-color: rgba(215, 193, 141, 0.48);
  background:
    linear-gradient(135deg, rgba(215, 193, 141, 0.16), rgba(179, 145, 84, 0.08)),
    rgba(255, 255, 255, 0.03);
  color: rgba(245, 239, 230, 0.94);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: rgba(245, 239, 230, 0.98);
  background:
    linear-gradient(135deg, rgba(215, 193, 141, 0.22), rgba(179, 145, 84, 0.12)),
    rgba(255, 255, 255, 0.05);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.015);
  color: rgba(245, 239, 230, 0.88);
}

.reveal {
  opacity: 0;
  --reveal-distance: 44px;
  --reveal-y: var(--reveal-distance);
  --parallax-y: 0px;
  transform: translate3d(0, calc(var(--reveal-y) + var(--parallax-y)), 0);
  transition:
    opacity var(--reveal-opacity-duration, 0.95s) var(--ease-out) var(--reveal-delay, 0s),
    transform var(--reveal-move-duration, 1.15s) var(--ease-out) var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  --reveal-y: 0px;
}

.reveal-fast {
  --reveal-opacity-duration: 0.6s;
  --reveal-move-duration: 0.78s;
  --reveal-distance: 26px;
}

.reveal-medium {
  --reveal-opacity-duration: 0.82s;
  --reveal-move-duration: 1.04s;
  --reveal-distance: 34px;
}

.reveal-slow {
  --reveal-opacity-duration: 1.16s;
  --reveal-move-duration: 1.42s;
  --reveal-distance: 56px;
}

.reveal-slower {
  --reveal-opacity-duration: 1.36s;
  --reveal-move-duration: 1.66s;
  --reveal-distance: 68px;
}

.hero {
  min-height: auto;
  padding-top: clamp(116px, 15vw, 168px);
  padding-bottom: clamp(84px, 10vw, 136px);
  overflow: clip;
}

.hero-backdrop,
.hero-backdrop::before,
.hero-backdrop::after {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  background:
    radial-gradient(circle at 78% 26%, rgba(215, 193, 141, 0.12), transparent 20%),
    linear-gradient(135deg, rgba(110, 35, 49, 0.12) 0%, transparent 34%),
    linear-gradient(180deg, rgba(3, 4, 6, 0.42) 0%, rgba(3, 4, 6, 0.96) 100%);
}

.hero-backdrop::before {
  content: "";
  background:
    radial-gradient(circle at 74% 42%, rgba(255, 255, 255, 0.14), transparent 16%),
    radial-gradient(circle at 18% 72%, rgba(215, 193, 141, 0.05), transparent 18%);
  filter: blur(64px);
}

.hero-backdrop::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 5, 7, 0.96) 0%, rgba(4, 5, 7, 0.76) 42%, rgba(4, 5, 7, 0.38) 100%);
}

.hero-spark-field {
  position: absolute;
  inset: 12% 6% 18%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.58;
}

.hero-spark-field span {
  position: absolute;
  width: 1.5px;
  height: 1.5px;
  background: rgba(245, 239, 230, 0.68);
  box-shadow: 0 0 10px rgba(245, 239, 230, 0.24);
  animation: hoverSpeck 18s ease-in-out infinite;
}

.hero-spark-field span:nth-child(1) { top: 20%; left: 18%; animation-delay: -1.2s; }
.hero-spark-field span:nth-child(2) { top: 32%; left: 38%; animation-delay: -4.6s; }
.hero-spark-field span:nth-child(3) { top: 18%; left: 62%; animation-delay: -2.3s; }
.hero-spark-field span:nth-child(4) { top: 42%; left: 76%; animation-delay: -6.8s; }
.hero-spark-field span:nth-child(5) { top: 66%; left: 28%; animation-delay: -3.5s; }
.hero-spark-field span:nth-child(6) { top: 74%; left: 58%; animation-delay: -5.1s; }

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(460px, 1.34fr);
  gap: clamp(36px, 6vw, 108px);
  align-items: center;
  min-height: calc(100svh - clamp(168px, 22vw, 252px));
}

.hero-copy,
.stage-copy {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 520px;
}

.hero-main {
  max-width: none;
}

.hero-main-title {
  font-size: clamp(4rem, 9vw, 8.6rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-wrap: balance;
  white-space: nowrap;
}

.hero-second {
  margin-top: clamp(26px, 4vw, 44px);
  max-width: 13ch;
  color: var(--muted-strong);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.2rem, 1.9vw, 1.88rem);
  line-height: 1.6;
  white-space: nowrap;
}

.hero-support-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(460px, 1.34fr);
  gap: clamp(36px, 6vw, 108px);
  margin-top: clamp(60px, 9vw, 132px);
}

.hero-support {
  grid-column: 1;
  max-width: 420px;
}

.hero-subcopy {
  color: var(--muted-strong);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  line-height: 1.8;
}

.hero-body {
  max-width: none;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
}

.hero-body p + p {
  margin-top: 0.72rem;
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-visuals {
  position: relative;
  min-height: min(88vh, 1020px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-figure,
.hero-trace,
.philosophy-image,
.action-card,
.crystal-primary,
.crystal-secondary,
.crystal-detail,
.memory-photo,
.gallery-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: #06070b;
  box-shadow: var(--photo-shadow);
  isolation: isolate;
}

.hero-figure {
  width: min(100%, 760px);
  margin-left: auto;
  aspect-ratio: 0.66;
  min-height: min(88vh, 1000px);
  --img-brightness: 0.72;
  --img-contrast: 1.24;
  --img-saturation: 0.9;
  --media-glow:
    radial-gradient(circle at 54% 16%, rgba(255, 255, 255, 0.34), transparent 13%),
    radial-gradient(circle at 52% 44%, rgba(215, 193, 141, 0.28), transparent 28%),
    radial-gradient(circle at 50% 66%, rgba(255, 255, 255, 0.1), transparent 18%);
}

.hero-figure::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.18) 28%, rgba(0, 0, 0, 0.12) 58%, rgba(0, 0, 0, 0.76) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-figure::after {
  opacity: 0.98;
}

.hero-figure img {
  object-position: center 36%;
}

.hero-figure,
.hero-trace,
.philosophy-image,
.action-card,
.crystal-primary,
.crystal-secondary,
.crystal-detail,
.memory-photo,
.gallery-card {
  position: relative;
}

.hero-figure::before,
.hero-trace::before,
.philosophy-image::before,
.action-card::before,
.crystal-primary::before,
.crystal-secondary::before,
.crystal-detail::before,
.memory-photo::before,
.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.12) 32%, rgba(0, 0, 0, 0.04) 58%, rgba(0, 0, 0, 0.56) 100%);
  pointer-events: none;
}

.hero-figure::after,
.hero-trace::after,
.philosophy-image::after,
.action-card::after,
.crystal-primary::after,
.crystal-secondary::after,
.crystal-detail::after,
.memory-photo::after,
.gallery-card::after {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: 1;
  background: var(--media-glow, radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.16), transparent 28%));
  mix-blend-mode: screen;
  opacity: 0.72;
  pointer-events: none;
}

.hero-figure img,
.hero-trace img,
.philosophy-image img,
.action-card img,
.crystal-primary img,
.crystal-secondary img,
.crystal-detail img,
.memory-photo img,
.gallery-card img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter:
    brightness(var(--img-brightness, var(--photo-brightness)))
    contrast(var(--img-contrast, var(--photo-contrast)))
    saturate(var(--img-saturation, var(--photo-saturation)));
  transition:
    transform 1.1s var(--ease-out),
    filter 1.1s var(--ease-out);
}

.hero-trace {
  position: absolute;
  left: -14px;
  bottom: 4%;
  width: min(32vw, 280px);
  aspect-ratio: 1.22;
  background: rgba(7, 8, 10, 0.88);
  --img-brightness: 0.74;
  --img-contrast: 1.18;
  --img-saturation: 0.84;
  --media-glow:
    radial-gradient(circle at 72% 56%, rgba(215, 193, 141, 0.18), transparent 20%),
    radial-gradient(circle at 18% 34%, rgba(255, 255, 255, 0.08), transparent 18%);
}

.hero-trace img {
  object-position: center 62%;
}

.philosophy-shell,
.action-shell,
.crystal-shell,
.memory-shell,
.gallery-shell {
  position: relative;
}

.philosophy,
.memory {
  padding-top: clamp(118px, 15vw, 208px);
  padding-bottom: clamp(132px, 15vw, 216px);
}

.philosophy-layout {
  display: grid;
  grid-template-columns: minmax(300px, 520px) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 108px);
  align-items: start;
}

.philosophy-image {
  aspect-ratio: 0.72;
  min-height: min(74vh, 860px);
  margin-top: clamp(18px, 5vw, 58px);
  --img-brightness: 0.78;
  --img-contrast: 1.14;
  --img-saturation: 0.86;
  --media-glow:
    radial-gradient(circle at 62% 24%, rgba(255, 255, 255, 0.12), transparent 18%),
    radial-gradient(circle at 32% 72%, rgba(215, 193, 141, 0.14), transparent 30%);
}

.philosophy-image img {
  object-position: center;
}

.philosophy .section-heading {
  margin-bottom: clamp(54px, 7vw, 96px);
}

.philosophy .section-copy {
  max-width: 400px;
  padding-top: clamp(84px, 10vw, 150px);
}

.action-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
}

.action-copy {
  max-width: 360px;
  padding-top: clamp(24px, 5vw, 56px);
}

.action-copy p {
  color: rgba(245, 239, 230, 0.88);
  font-family: "Cormorant Garamond", "Shippori Mincho", serif;
  font-size: clamp(1.18rem, 1.72vw, 1.56rem);
  letter-spacing: 0.04em;
  line-height: 1.36;
}

.action-copy p + p {
  margin-top: 0.58rem;
}

.action-copy p:last-child {
  color: var(--muted);
  font-size: clamp(1rem, 1.28vw, 1.12rem);
  letter-spacing: 0.08em;
}

.action-collage {
  position: relative;
  min-height: 860px;
  display: block;
}

.action-rings {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.38;
}

.action-ring {
  position: absolute;
  border: 1px solid rgba(215, 193, 141, 0.18);
  border-radius: 50%;
  opacity: 0.26;
  mix-blend-mode: screen;
  animation: actionPulse 16s ease-out infinite;
}

.action-card-large {
  position: absolute;
  left: 8%;
  top: 4%;
  width: 56%;
  aspect-ratio: 0.76;
  min-height: 720px;
  z-index: 2;
  --img-brightness: 0.82;
  --img-contrast: 1.2;
  --media-glow:
    radial-gradient(circle at 56% 22%, rgba(255, 255, 255, 0.24), transparent 16%),
    radial-gradient(circle at 48% 62%, rgba(215, 193, 141, 0.18), transparent 34%);
}

.action-card-small {
  position: absolute;
  right: 8%;
  top: 10%;
  width: 30%;
  aspect-ratio: 1.04;
  min-height: 260px;
  z-index: 4;
  --img-brightness: 0.8;
  --media-glow:
    radial-gradient(circle at 50% 54%, rgba(215, 193, 141, 0.24), transparent 26%);
}

.action-card-tall {
  position: absolute;
  right: 14%;
  bottom: 2%;
  width: 36%;
  aspect-ratio: 0.74;
  min-height: 470px;
  z-index: 3;
  --img-brightness: 0.84;
  --media-glow:
    radial-gradient(circle at 64% 30%, rgba(255, 255, 255, 0.18), transparent 16%),
    radial-gradient(circle at 42% 66%, rgba(215, 193, 141, 0.14), transparent 28%);
}

.action-ring-a {
  width: 44%;
  aspect-ratio: 1;
  left: 10%;
  top: 12%;
}

.action-ring-b {
  width: 26%;
  aspect-ratio: 1;
  right: 22%;
  top: 26%;
  animation-delay: -4.8s;
}

.action-ring-c {
  width: 30%;
  aspect-ratio: 1;
  right: 10%;
  bottom: 16%;
  animation-delay: -9.3s;
}

.crystal {
  overflow: clip;
}

.crystal::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.02) 16%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
}

.crystal-shell {
  position: relative;
  z-index: 1;
}

.crystal .section-heading {
  max-width: 560px;
}

.crystal-dust {
  position: absolute;
  inset: 8% 2% 6% 34%;
  z-index: 5;
  pointer-events: none;
}

.crystal-dust span {
  position: absolute;
  width: 2px;
  height: 18px;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(245, 239, 230, 0.92) 50%, rgba(255, 255, 255, 0));
  box-shadow: 0 0 18px rgba(245, 239, 230, 0.36);
  transform-origin: center;
  animation: shardGather 11s ease-in-out infinite;
}

.crystal-dust span:nth-child(1) { top: 8%; left: 34%; --shard-rotate: 20deg; animation-delay: -0.2s; }
.crystal-dust span:nth-child(2) { top: 16%; left: 52%; height: 12px; --shard-rotate: -16deg; animation-delay: -3.4s; }
.crystal-dust span:nth-child(3) { top: 24%; left: 70%; --shard-rotate: 10deg; animation-delay: -1.4s; }
.crystal-dust span:nth-child(4) { top: 32%; left: 86%; height: 14px; --shard-rotate: -24deg; animation-delay: -5.4s; }
.crystal-dust span:nth-child(5) { top: 40%; left: 24%; height: 14px; --shard-rotate: 28deg; animation-delay: -2.7s; }
.crystal-dust span:nth-child(6) { top: 48%; left: 66%; --shard-rotate: -10deg; animation-delay: -6.5s; }
.crystal-dust span:nth-child(7) { top: 58%; left: 82%; height: 14px; --shard-rotate: 18deg; animation-delay: -4.1s; }
.crystal-dust span:nth-child(8) { top: 62%; left: 42%; height: 12px; --shard-rotate: -16deg; animation-delay: -7.2s; }
.crystal-dust span:nth-child(9) { top: 74%; left: 18%; --shard-rotate: 24deg; animation-delay: -0.8s; }
.crystal-dust span:nth-child(10) { top: 82%; left: 54%; height: 14px; --shard-rotate: -20deg; animation-delay: -5.9s; }
.crystal-dust span:nth-child(11) { top: 70%; left: 72%; height: 12px; --shard-rotate: 14deg; animation-delay: -3.1s; }
.crystal-dust span:nth-child(12) { top: 18%; left: 92%; --shard-rotate: -26deg; animation-delay: -6.9s; }

.crystal-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1.44fr);
  gap: clamp(26px, 4.8vw, 72px);
  align-items: center;
}

.crystal-visuals {
  position: relative;
  display: block;
  min-height: 980px;
}

.crystal-visuals::before {
  content: "";
  position: absolute;
  inset: 12% 6% 8%;
  z-index: 1;
  background:
    radial-gradient(circle at 36% 42%, rgba(255, 255, 255, 0.18), transparent 18%),
    radial-gradient(circle at 58% 24%, rgba(215, 193, 141, 0.16), transparent 24%),
    radial-gradient(circle at 72% 72%, rgba(255, 255, 255, 0.08), transparent 20%);
  filter: blur(28px);
  pointer-events: none;
}

.crystal-fog {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  mix-blend-mode: screen;
}

.crystal-fog span {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 68%);
  filter: blur(34px);
  opacity: 0.06;
  animation: fogDrift 21s ease-in-out infinite;
}

.crystal-fog-a {
  width: 300px;
  height: 180px;
  top: 18%;
  left: 6%;
}

.crystal-fog-b {
  width: 260px;
  height: 220px;
  right: 8%;
  top: 8%;
  animation-delay: -5.4s;
}

.crystal-fog-c {
  width: 340px;
  height: 240px;
  right: 0;
  bottom: 10%;
  animation-delay: -9.2s;
}

.crystal-primary {
  position: absolute;
  left: 0;
  top: 12%;
  width: 64%;
  aspect-ratio: 0.74;
  height: 76%;
  min-height: 0;
  z-index: 2;
  --img-brightness: 0.78;
  --img-contrast: 1.26;
  --media-glow:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.28), transparent 18%),
    radial-gradient(circle at 36% 56%, rgba(215, 193, 141, 0.22), transparent 34%);
}

.crystal-secondary {
  position: absolute;
  right: 12%;
  top: 2%;
  width: 22%;
  aspect-ratio: 0.82;
  height: 28%;
  min-height: 0;
  z-index: 5;
  --img-brightness: 0.8;
  --media-glow:
    radial-gradient(circle at 48% 28%, rgba(255, 255, 255, 0.18), transparent 16%);
}

.crystal-detail {
  position: absolute;
  right: 0;
  bottom: 6%;
  width: 30%;
  aspect-ratio: 0.96;
  height: 32%;
  min-height: 0;
  margin-left: 0;
  z-index: 3;
  --img-brightness: 0.8;
  --media-glow:
    radial-gradient(circle at 62% 52%, rgba(215, 193, 141, 0.22), transparent 20%);
}

.memory-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-areas:
    "map copy"
    "map photos";
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.memory-map {
  grid-area: map;
  position: relative;
  aspect-ratio: 0.98;
  min-height: 780px;
  background: #08090c;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  isolation: isolate;
  box-shadow: var(--photo-shadow);
}

.memory-map::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.18) 30%, rgba(0, 0, 0, 0.54) 100%);
  pointer-events: none;
}

.memory-map::after {
  content: "";
  position: absolute;
  inset: 10% 8%;
  z-index: 2;
  background:
    radial-gradient(circle at 56% 44%, rgba(215, 193, 141, 0.12), transparent 16%),
    radial-gradient(circle at 70% 58%, rgba(255, 255, 255, 0.08), transparent 18%);
  filter: blur(24px);
  pointer-events: none;
}

.memory-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.28) brightness(0.14) contrast(1.16) saturate(0.18);
}

.map-dot,
.map-line {
  position: absolute;
}

.map-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(215, 193, 141, 0.56);
  box-shadow:
    0 0 0 0 rgba(215, 193, 141, 0.16),
    0 0 8px rgba(215, 193, 141, 0.22);
  animation: pulseDot 7.2s ease-out infinite;
}

.map-dot-a { top: 43%; left: 52%; width: 10px; height: 10px; }
.map-dot-b { top: 54%; left: 58%; width: 8px; height: 8px; animation-delay: -0.8s; }
.map-dot-c { top: 36%; left: 61%; width: 7px; height: 7px; animation-delay: -1.5s; }
.map-dot-d { top: 48%; left: 38%; width: 9px; height: 9px; animation-delay: -2.8s; }
.map-dot-e { top: 66%; left: 68%; width: 6px; height: 6px; animation-delay: -3.9s; }

.map-line {
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(215, 193, 141, 0.9), rgba(215, 193, 141, 0));
  opacity: 0.22;
  animation: traceLine 22s ease-in-out infinite;
}

.map-line-a {
  top: 46%;
  left: 52%;
  width: 130px;
  transform: rotate(-18deg);
}

.map-line-b {
  top: 54%;
  left: 58%;
  width: 104px;
  transform: rotate(28deg);
}

.map-line-c {
  top: 49%;
  left: 39%;
  width: 140px;
  transform: rotate(-10deg);
}

.map-line-d {
  top: 62%;
  left: 57%;
  width: 92px;
  transform: rotate(44deg);
}

.memory-copy {
  grid-area: copy;
  max-width: 320px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  position: relative;
  z-index: 3;
  margin-left: -14%;
  padding-top: 66px;
}

.memory-copy p + p {
  margin-top: 0.9rem;
}

.memory-photos {
  grid-area: photos;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 22px;
  z-index: 3;
  margin-top: -18%;
  margin-left: -12%;
}

.memory-photo {
  aspect-ratio: 0.74;
  min-height: 420px;
  --img-brightness: 0.8;
  --media-glow:
    radial-gradient(circle at 56% 28%, rgba(255, 255, 255, 0.18), transparent 16%),
    radial-gradient(circle at 34% 66%, rgba(215, 193, 141, 0.16), transparent 28%);
}

.memory-photo-primary {
  margin-top: 0;
  min-height: 460px;
  transform: translate(10%, 18%);
}

.memory-photo-secondary {
  margin-top: 0;
  min-height: 560px;
  transform: translate(-2%, -4%);
}

.stage-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.stage-video-wrap {
  position: relative;
  aspect-ratio: 1.12;
  min-height: min(74vh, 780px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: #050608;
  box-shadow: var(--photo-shadow);
  isolation: isolate;
}

.stage-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.18) saturate(0.88);
}

.stage-video-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 48% 36%, rgba(255, 255, 255, 0.12), transparent 16%),
    radial-gradient(circle at 74% 20%, rgba(215, 193, 141, 0.12), transparent 16%);
  pointer-events: none;
}

.stage-video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(4, 5, 7, 0.38) 0%, rgba(4, 5, 7, 0.08) 26%, rgba(4, 5, 7, 0.78) 100%),
    linear-gradient(90deg, rgba(4, 5, 7, 0.44) 0%, rgba(4, 5, 7, 0.06) 42%, rgba(4, 5, 7, 0.62) 100%);
}

.stage-specks,
.stage-rings {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.stage-specks span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(245, 239, 230, 0.8);
  box-shadow: 0 0 14px rgba(245, 239, 230, 0.48);
  animation: hoverSpeck 12s ease-in-out infinite;
}

.stage-specks span:nth-child(1) { top: 16%; left: 22%; animation-delay: -1.2s; }
.stage-specks span:nth-child(2) { top: 26%; left: 48%; animation-delay: -3.7s; }
.stage-specks span:nth-child(3) { top: 18%; left: 76%; animation-delay: -6.4s; }
.stage-specks span:nth-child(4) { top: 42%; left: 14%; animation-delay: -5.1s; }
.stage-specks span:nth-child(5) { top: 54%; left: 62%; animation-delay: -2.4s; }
.stage-specks span:nth-child(6) { top: 66%; left: 84%; animation-delay: -8.1s; }
.stage-specks span:nth-child(7) { top: 78%; left: 28%; animation-delay: -4.8s; }
.stage-specks span:nth-child(8) { top: 72%; left: 52%; animation-delay: -7.5s; }
.stage-specks span:nth-child(9) { top: 34%; left: 88%; animation-delay: -9.4s; }

.stage-ring {
  position: absolute;
  border: 1px solid rgba(245, 239, 230, 0.18);
  border-radius: 50%;
  opacity: 0.18;
  animation: stageOrbit 18s ease-in-out infinite;
}

.stage-ring-a {
  width: 34%;
  aspect-ratio: 1;
  left: 4%;
  top: 18%;
}

.stage-ring-b {
  width: 48%;
  aspect-ratio: 1;
  right: 8%;
  top: 8%;
  animation-delay: -6.2s;
}

.stage-ring-c {
  width: 28%;
  aspect-ratio: 1;
  right: 18%;
  bottom: 10%;
  animation-delay: -11.4s;
}

.stage-word {
  position: absolute;
  right: -8px;
  bottom: -12px;
  z-index: 4;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(6rem, 16vw, 12rem);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: 0.08em;
  color: rgba(245, 239, 230, 0.08);
  mix-blend-mode: screen;
}

.stage-copy p {
  max-width: 360px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.08rem);
}

.stage-copy p + p {
  margin-top: 0.8rem;
}

.gallery-grid {
  columns: 2 360px;
  column-gap: clamp(52px, 6vw, 104px);
  max-width: 1120px;
  margin: 122px auto 0;
}

.gallery-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 clamp(32px, 3vw, 52px);
  break-inside: avoid;
  background: rgba(255, 255, 255, 0.03);
  transition:
    transform 0.95s var(--ease-out),
    box-shadow 0.95s var(--ease-out);
}

.gallery-card.reveal {
  --reveal-delay: calc(var(--gallery-delay, 0s) + 0.14s);
  --reveal-distance: 60px;
}

.gallery-card:nth-child(1) { --gallery-delay: 0.04s; }
.gallery-card:nth-child(2) { --gallery-delay: 0.16s; }
.gallery-card:nth-child(3) { --gallery-delay: 0.08s; }
.gallery-card:nth-child(4) { --gallery-delay: 0.22s; }
.gallery-card:nth-child(5) { --gallery-delay: 0.12s; }

.gallery-card:nth-child(1) { width: 92%; margin-top: 40px; margin-left: 4%; }
.gallery-card:nth-child(2) { width: 66%; margin-top: 180px; margin-left: 22%; }
.gallery-card:nth-child(3) { width: 74%; margin-top: 10px; margin-left: 12%; }
.gallery-card:nth-child(4) { width: 70%; margin-top: 142px; margin-left: 0; }
.gallery-card:nth-child(5) { width: 90%; margin-top: 40px; margin-left: 8%; }

.gallery-card:hover img,
.gallery-card:focus-within img {
  transform: scale(1.015);
  filter:
    brightness(0.86)
    contrast(1.18)
    saturate(0.92);
}

.gallery-card:hover,
.gallery-card:focus-within {
  transform: translate3d(0, -1px, 0);
  box-shadow: 0 38px 92px rgba(0, 0, 0, 0.48);
}

.gallery-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: rgba(245, 239, 230, 0.5);
  font-family: "Cormorant Garamond", "Shippori Mincho", serif;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
}

.gallery-card-wide {
  aspect-ratio: 1.28;
}

.gallery-card-tall {
  aspect-ratio: 0.72;
}

.gallery-card-square {
  aspect-ratio: 0.96;
}

.gallery-card-portrait {
  aspect-ratio: 0.64;
}

.closing-shell {
  display: grid;
  gap: 32px;
  justify-items: center;
}

.closing-particle-wrap {
  width: 100%;
  max-width: 980px;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background:
    radial-gradient(circle at center, rgba(215, 193, 141, 0.08), transparent 30%),
    rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.closing-particles {
  width: 100%;
  height: 220px;
}

.closing-copy {
  max-width: 760px;
  text-align: center;
}

.closing-mantra {
  display: grid;
  gap: 0.5rem;
  margin: 0 auto 28px;
  max-width: 560px;
  color: rgba(245, 239, 230, 0.82);
  font-family: "Shippori Mincho", serif;
}

.closing-copy .section-copy {
  max-width: 520px;
  margin: 0 auto;
}

.closing-copy .section-copy p:first-child {
  margin-top: 1rem;
  color: rgba(245, 239, 230, 0.9);
  font-family: "Shippori Mincho", serif;
}

.closing-actions {
  justify-content: center;
}

@keyframes driftDust {
  0% {
    transform: translate3d(0, 0, 0) scale(0.92);
    opacity: 0.24;
  }

  50% {
    transform: translate3d(18px, -24px, 0) scale(1.14);
    opacity: 0.78;
  }

  100% {
    transform: translate3d(-12px, -52px, 0) scale(0.9);
    opacity: 0.12;
  }
}

@keyframes hoverSpeck {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.88);
    opacity: 0.18;
  }

  50% {
    transform: translate3d(8px, -10px, 0) scale(1.16);
    opacity: 0.72;
  }
}

@keyframes echoRing {
  0% {
    transform: scale(0.88);
    opacity: 0;
  }

  18% {
    opacity: 0.22;
  }

  72% {
    transform: scale(1.08);
    opacity: 0.08;
  }

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

@keyframes actionPulse {
  0% {
    transform: scale(0.88);
    opacity: 0;
  }

  16% {
    opacity: 0.22;
  }

  54% {
    transform: scale(1.06);
    opacity: 0.12;
  }

  100% {
    transform: scale(1.14);
    opacity: 0;
  }
}

@keyframes shardGather {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--shard-rotate, 0deg)) scaleY(0.88);
    opacity: 0.12;
  }

  40% {
    transform: translate3d(-10px, 10px, 0) rotate(var(--shard-rotate, 0deg)) scaleY(1.18);
    opacity: 0.52;
  }

  70% {
    transform: translate3d(-18px, 20px, 0) rotate(var(--shard-rotate, 0deg)) scaleY(1.34);
    opacity: 0.86;
  }
}

@keyframes fogDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.92);
    opacity: 0.08;
  }

  50% {
    transform: translate3d(20px, -14px, 0) scale(1.08);
    opacity: 0.18;
  }
}

@keyframes pulseDot {
  0% {
    box-shadow:
      0 0 0 0 rgba(215, 193, 141, 0.22),
      0 0 10px rgba(215, 193, 141, 0.36);
  }

  100% {
    box-shadow:
      0 0 0 12px rgba(215, 193, 141, 0),
      0 0 14px rgba(215, 193, 141, 0.12);
  }
}

@keyframes traceLine {
  0%,
  100% {
    opacity: 0.1;
    filter: drop-shadow(0 0 0 rgba(215, 193, 141, 0));
  }

  50% {
    opacity: 0.42;
    filter: drop-shadow(0 0 4px rgba(215, 193, 141, 0.18));
  }
}

@keyframes stageOrbit {
  0%,
  100% {
    transform: scale(0.94) rotate(0deg);
    opacity: 0.06;
  }

  50% {
    transform: scale(1.08) rotate(12deg);
    opacity: 0.2;
  }
}

@media (max-width: 1120px) {
  .hero-shell,
  .hero-support-shell,
  .crystal-layout,
  .stage-shell {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    position: relative;
    min-height: 100svh;
    align-items: end;
  }

  .hero-copy {
    position: absolute;
    left: 0;
    bottom: clamp(28px, 6vw, 72px);
    z-index: 4;
    max-width: min(78vw, 540px);
    margin-top: 0;
    padding-bottom: 0;
  }

  .hero-support-shell {
    margin-top: 28px;
  }

  .hero-support {
    grid-column: auto;
    max-width: 520px;
  }

  .hero-visuals {
    min-height: min(72vh, 820px);
  }

  .hero-figure {
    width: min(100%, 680px);
    min-height: 680px;
  }

  .hero-trace {
    left: auto;
    right: 14px;
    bottom: 12px;
    width: min(40vw, 300px);
  }

  .action-layout,
  .philosophy-layout,
  .memory-layout {
    grid-template-columns: 1fr;
  }

  .action-collage {
    min-height: 760px;
  }

  .action-card-large {
    left: 6%;
    width: 52%;
    min-height: 620px;
  }

  .action-card-small {
    right: 6%;
    width: 32%;
  }

  .action-card-tall {
    right: 8%;
    width: 40%;
    min-height: 420px;
  }

  .crystal-visuals {
    min-height: 760px;
  }

  .memory-layout {
    grid-template-areas:
      "copy"
      "map"
      "photos";
  }

  .memory-copy {
    margin-left: 0;
    max-width: 620px;
    padding-top: 0;
  }

  .memory-map {
    min-height: 620px;
  }

  .memory-photos {
    grid-column: auto;
    margin-top: -12%;
    margin-left: 0;
    max-width: 760px;
  }

  .memory-photo-primary {
    transform: translate(6%, 12%);
  }

  .memory-photo-secondary {
    transform: translate(0, -2%);
  }
}

@media (max-width: 820px) {
  .micro-nav {
    width: calc(100% - 20px);
    padding: 10px 14px;
  }

  .micro-brand,
  .micro-link {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .hero {
    min-height: auto;
  }

  .hero-main-title,
  .section-title {
    text-wrap: pretty;
  }

  .hero-shell {
    min-height: calc(100svh - 96px);
  }

  .hero-copy {
    max-width: min(84vw, 460px);
    bottom: clamp(22px, 7vw, 48px);
  }

  .hero-second {
    font-size: clamp(1.08rem, 2.6vw, 1.48rem);
  }

  .action-collage {
    min-height: auto;
    padding: 18px 0 48px;
  }

  .action-card-large,
  .action-card-small,
  .action-card-tall {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    margin: 0;
  }

  .action-card-large {
    width: 74%;
    min-height: 460px;
  }

  .action-card-small {
    width: 42%;
    min-height: 220px;
    margin-top: -88px;
    margin-left: auto;
  }

  .action-card-tall {
    width: 56%;
    min-height: 340px;
    margin-top: -34px;
    margin-left: 20%;
  }

  .action-ring-a {
    width: 56%;
    left: 18%;
    top: 12%;
  }

  .action-ring-b {
    width: 30%;
    right: 6%;
    top: 28%;
  }

  .action-ring-c {
    width: 36%;
    right: 18%;
    bottom: 10%;
  }

  .crystal-visuals {
    min-height: auto;
    padding: 12px 0 40px;
  }

  .crystal-primary,
  .crystal-secondary,
  .crystal-detail {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    height: auto;
    min-height: 0;
    margin: 0;
  }

  .crystal-primary {
    width: 76%;
    aspect-ratio: 0.76;
  }

  .crystal-secondary {
    width: 42%;
    aspect-ratio: 0.82;
    margin-top: -68px;
    margin-left: auto;
  }

  .crystal-detail {
    width: 58%;
    aspect-ratio: 1.02;
    margin-top: -30px;
    margin-left: 22%;
  }

  .crystal-dust {
    inset: 8% 0 8% 12%;
  }

  .memory-map {
    min-height: 520px;
  }

  .memory-photos {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 16px;
    margin-top: -14%;
  }

  .memory-photo {
    min-height: 320px;
  }

  .memory-photo-primary {
    min-height: 340px;
    transform: translate(4%, 12%);
  }

  .memory-photo-secondary {
    min-height: 420px;
    transform: translate(0, -4%);
  }

  .stage-video-wrap {
    min-height: 460px;
  }

  .gallery-grid {
    columns: 2 220px;
    column-gap: 24px;
    margin-top: 72px;
  }

  .gallery-card,
  .gallery-card:nth-child(1),
  .gallery-card:nth-child(2),
  .gallery-card:nth-child(3),
  .gallery-card:nth-child(4),
  .gallery-card:nth-child(5),
  .gallery-card:nth-child(6),
  .gallery-card:nth-child(7) {
    width: 100%;
    margin-left: 0;
  }

  .gallery-card:nth-child(1),
  .gallery-card:nth-child(3),
  .gallery-card:nth-child(5),
  .gallery-card:nth-child(7) {
    margin-top: 20px;
  }

  .gallery-card:nth-child(2),
  .gallery-card:nth-child(4),
  .gallery-card:nth-child(6) {
    margin-top: 88px;
  }

  .gallery-card figcaption {
    left: 12px;
    right: 12px;
    bottom: 10px;
    font-size: 0.76rem;
  }
}

@media (max-width: 640px) {
  :root {
    --radius: 22px;
    --radius-lg: 28px;
  }

  .panel {
    padding: 84px 0;
  }

  .gate-inner {
    width: min(100% - 40px, 280px);
  }

  #gate-input {
    width: 168px;
  }

  .intro-copy {
    inset: auto 0 84px;
  }

  .hero-actions,
  .closing-actions {
    flex-direction: column;
  }

  .hero-main-title {
    max-width: none;
    font-size: clamp(2.9rem, 12vw, 4.2rem);
    line-height: 0.9;
  }

  .hero-second {
    margin-top: 18px;
    font-size: 1rem;
    max-width: none;
  }

  .button {
    width: 100%;
  }

  .hero-spark-field {
    inset: 14% 8% 18%;
  }

  .hero-shell {
    min-height: calc(100svh - 88px);
  }

  .hero-figure {
    aspect-ratio: 0.84;
    min-height: 520px;
    --img-brightness: 0.76;
  }

  .hero-figure img {
    object-position: center 40%;
  }

  .hero-trace {
    right: 6px;
    bottom: 10px;
    width: min(46vw, 220px);
    --img-brightness: 0.78;
  }

  .hero-trace img {
    object-position: center 54%;
  }

  .action-card-large {
    width: 84%;
    min-height: 340px;
  }

  .action-card-small {
    width: 52%;
    min-height: 180px;
    margin-top: -58px;
  }

  .action-card-tall {
    width: 64%;
    min-height: 250px;
    margin-top: -20px;
    margin-left: 16%;
  }

  .crystal-primary {
    width: 86%;
    min-height: 320px;
  }

  .crystal-secondary {
    width: 54%;
    margin-top: -52px;
  }

  .crystal-detail {
    width: 66%;
    margin-top: -18px;
    margin-left: 24%;
  }

  .crystal-fog span {
    opacity: 0.12;
  }

  .memory-map {
    min-height: 420px;
  }

  .memory-photos {
    display: block;
    margin-top: -10%;
  }

  .memory-photo-primary,
  .memory-photo-secondary {
    width: 100%;
    transform: none;
  }

  .memory-photo-primary {
    width: 58%;
    min-height: 220px;
  }

  .memory-photo-secondary {
    width: 80%;
    min-height: 300px;
    margin-top: -34px;
    margin-left: auto;
  }

  .stage-word {
    right: 4px;
    bottom: 8px;
    font-size: clamp(4.8rem, 24vw, 7.4rem);
  }

  .gallery-grid {
    columns: 1;
  }

  .gallery-card,
  .gallery-card:nth-child(1),
  .gallery-card:nth-child(2),
  .gallery-card:nth-child(3),
  .gallery-card:nth-child(4),
  .gallery-card:nth-child(5),
  .gallery-card:nth-child(6),
  .gallery-card:nth-child(7) {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
  }

  .gallery-card-wide,
  .gallery-card-tall,
  .gallery-card-square,
  .gallery-card-portrait {
    aspect-ratio: 0.88;
  }

  .gallery-card-wide {
    aspect-ratio: 1.3;
  }

  .gallery-card figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 0.78rem;
  }

  .closing-particle-wrap,
  .closing-particles {
    min-height: 180px;
    height: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .ambient-particles,
  .intro-particles,
  .closing-particles {
    display: none;
  }
}
