@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

:root {
  --bg: #0b0d12;
  --bg-soft: #121620;
  --panel: rgba(20, 25, 36, 0.82);
  --text: #f3efe7;
  --muted: #bbb4a7;
  --gold: #c7a66a;
  --gold-light: #ead9b1;
  --line: rgba(199, 166, 106, 0.28);
  --max-width: 1180px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(199, 166, 106, 0.08), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.7;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem max(1.25rem, calc((100vw - var(--max-width)) / 2));
  background: rgba(11, 13, 18, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  width: 3.2rem;
  height: 3.2rem;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
  box-shadow: 0 0 18px rgba(234, 217, 177, 0.12);
}

.brand strong,
.brand span {
  display: block;
}

.brand strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}

.brand span {
  color: var(--muted);
  font-size: 0.72rem;
}

.main-nav {
  display: flex;
  gap: 1.6rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--gold-light);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 7rem 1.25rem 5rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 34rem;
  height: 34rem;
  left: -12rem;
  top: 6rem;
  border-radius: 50%;
  background: rgba(199, 166, 106, 0.08);
  filter: blur(60px);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.08;
}

h1 {
  margin: 0;
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  font-weight: 600;
}

h3 {
  margin: 0.4rem 0 0.8rem;
  font-size: 2rem;
}

.japanese {
  margin: 0.8rem 0 1.4rem;
  color: var(--gold-light);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  letter-spacing: 0.16em;
}

.lead {
  max-width: 44rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.72rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.button.primary {
  background: var(--gold);
  color: #15120d;
}

.button.primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--text);
}

.button.secondary:hover {
  border-color: var(--gold);
}

.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32rem;
}

.hero-logo {
  width: min(31rem, 82vw);
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
  border: 1px solid rgba(234, 217, 177, 0.16);
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 7rem 1.25rem;
}

.section-dark {
  max-width: none;
  padding-left: max(1.25rem, calc((100vw - var(--max-width)) / 2));
  padding-right: max(1.25rem, calc((100vw - var(--max-width)) / 2));
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 3rem;
}

.two-column {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.two-column p {
  color: var(--muted);
}

blockquote {
  margin: 0;
  padding: 2rem;
  border-left: 2px solid var(--gold);
  background: var(--panel);
  box-shadow: var(--shadow);
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.project-card,
.author-card,
.contact-card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.project-card {
  min-height: 23rem;
  padding: 2rem;
  border-radius: 1.25rem;
}

.project-card.featured {
  background:
    linear-gradient(180deg, rgba(199, 166, 106, 0.11), rgba(20, 25, 36, 0.82)),
    var(--panel);
}

.project-card p {
  color: var(--muted);
}

.status {
  display: inline-block;
  padding: 0.35rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 0.72rem;
}

.project-type,
.author-role,
.project-note,
.small-note {
  font-size: 0.78rem;
}

.project-type,
.author-role {
  margin-top: 1.7rem;
  color: var(--gold) !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-note {
  color: var(--gold-light);
}

.author-name-latin {
  margin-top: -0.35rem;
  color: var(--gold-light) !important;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.author-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.author-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 1.25rem;
}

.author-card p {
  color: var(--muted);
}

.author-symbol {
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 1.6rem;
}

.contact-section {
  text-align: center;
}

.contact-card {
  max-width: 50rem;
  margin: 0 auto;
  padding: clamp(2rem, 7vw, 5rem);
  border-radius: 1.5rem;
}

.contact-card p {
  color: var(--muted);
}

.small-note {
  margin-top: 1rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 2.5rem max(1.25rem, calc((100vw - var(--max-width)) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
}

.site-footer > p {
  grid-column: 1 / -1;
}

@media (max-width: 850px) {
  .menu-button {
    display: inline-flex;
    padding: 0.55rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: var(--text);
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 1rem 1.25rem 1.5rem;
    background: rgba(11, 13, 18, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    display: flex;
  }

  .hero,
  .two-column {
    grid-template-columns: 1fr;
  }

  .hero-logo-wrap {
    min-height: 24rem;
  }

  .project-grid,
  .author-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .brand span {
    display: none;
  }

  .hero {
    padding-top: 5rem;
  }

  h1 {
    font-size: 3.35rem;
  }

  .hero-logo-wrap {
    min-height: 18rem;
  }

  .hero-logo {
    border-radius: 1rem;
  }

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


/* ===== Version 2.0 enhancements ===== */

body {
  overflow-x: hidden;
}

.page-ambient {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 18%, rgba(234, 217, 177, 0.06), transparent 26rem),
    radial-gradient(circle at 80% 72%, rgba(90, 115, 155, 0.06), transparent 30rem);
}

.sakura-layer {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.sakura-petal {
  position: absolute;
  top: -2rem;
  width: 0.72rem;
  height: 0.5rem;
  border-radius: 70% 30% 70% 30%;
  background: rgba(244, 210, 222, 0.52);
  box-shadow: 0 0 10px rgba(244, 210, 222, 0.12);
  animation: sakura-fall linear infinite;
  transform-origin: center;
}

@keyframes sakura-fall {
  0% {
    transform: translate3d(0, -8vh, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.75;
  }
  100% {
    transform: translate3d(var(--drift), 110vh, 0) rotate(620deg);
    opacity: 0;
  }
}

.site-header {
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(8, 10, 15, 0.94);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.4rem;
  height: 1px;
  background: var(--gold);
  transition: right 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  right: 0;
}

.hero-content {
  animation: hero-copy-in 0.9s ease both;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo-wrap {
  position: relative;
  isolation: isolate;
  animation: hero-logo-in 1.2s 0.1s ease both;
  transition: transform 0.15s ease-out;
}

@keyframes hero-logo-in {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(1rem);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero-logo {
  position: relative;
  z-index: 2;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.hero-logo-wrap:hover .hero-logo {
  transform: translateY(-0.3rem) scale(1.012);
  box-shadow: 0 38px 95px rgba(0, 0, 0, 0.58);
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  width: min(34rem, 88vw);
  aspect-ratio: 1;
  border: 1px solid rgba(234, 217, 177, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 55px rgba(234, 217, 177, 0.08),
    inset 0 0 55px rgba(234, 217, 177, 0.03);
  animation: orbit-breathe 5.5s ease-in-out infinite;
}

@keyframes orbit-breathe {
  0%, 100% {
    transform: scale(0.98);
    opacity: 0.46;
  }
  50% {
    transform: scale(1.03);
    opacity: 0.8;
  }
}

.hero-caption {
  position: absolute;
  z-index: 3;
  bottom: 0.4rem;
  right: 1.2rem;
  color: rgba(243, 239, 231, 0.54);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
}

.project-card,
.author-card,
.news-card {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease;
}

.project-card::before,
.author-card::before,
.news-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(125deg, transparent 20%, rgba(255,255,255,0.04), transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.65s ease;
}

.project-card:hover,
.author-card:hover,
.news-card:hover {
  transform: translateY(-0.45rem);
  border-color: rgba(199, 166, 106, 0.54);
  box-shadow: 0 34px 72px rgba(0, 0, 0, 0.42);
}

.project-card:hover::before,
.author-card:hover::before,
.news-card:hover::before {
  transform: translateX(110%);
}

.reveal,
.reveal-card {
  opacity: 0;
  transform: translateY(1.35rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible,
.reveal-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-card:nth-child(2) {
  transition-delay: 0.09s;
}

.reveal-card:nth-child(3) {
  transition-delay: 0.18s;
}

.section-news {
  max-width: none;
  padding-left: max(1.25rem, calc((100vw - var(--max-width)) / 2));
  padding-right: max(1.25rem, calc((100vw - var(--max-width)) / 2));
  background:
    linear-gradient(180deg, rgba(18, 22, 32, 0.45), rgba(11, 13, 18, 0.2));
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.news-card {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.news-card p {
  color: var(--muted);
}

.news-date {
  margin: 0;
  color: var(--gold) !important;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand img {
  width: 2.7rem;
  height: 2.7rem;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
}

@media (max-width: 850px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .hero-caption {
    right: 0.4rem;
  }
}

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

  .sakura-layer {
    display: none;
  }

  .reveal,
  .reveal-card {
    opacity: 1;
    transform: none;
  }
}


/* ===== Version 2.1 language navigation ===== */

.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.35rem;
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}

.language-link {
  min-width: 2.1rem;
  padding: 0.25rem 0.42rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: center;
}

.language-link::after {
  display: none;
}

.language-link:hover,
.language-link.active-language {
  border-color: var(--line);
  color: var(--gold-light);
  background: rgba(199, 166, 106, 0.08);
}

html[lang="ja"] body {
  line-height: 1.9;
}

html[lang="ja"] h1,
html[lang="ja"] h2,
html[lang="ja"] h3 {
  font-family: "Noto Sans JP", system-ui, sans-serif;
  letter-spacing: 0.02em;
}

@media (max-width: 850px) {
  .language-switcher {
    margin-left: 0;
    padding-left: 0;
    padding-top: 0.9rem;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}


/* ===== Tsuki no Serenade project page ===== */
.project-page {
  background: #090b10;
}

.project-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 75% 12%, rgba(138, 165, 205, 0.09), transparent 28rem),
    radial-gradient(circle at 20% 70%, rgba(196, 135, 154, 0.06), transparent 30rem);
}

.project-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-header .brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  text-decoration: none;
}

.project-header .brand img {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.project-nav {
  display: flex;
  gap: 1.2rem;
}

.project-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
}

.project-nav a:hover {
  color: var(--gold-light);
}

.project-hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 28%, rgba(225,231,241,.14) 0 9rem, transparent 9.2rem),
    radial-gradient(circle at 81% 25%, #090b10 0 8.2rem, transparent 8.4rem),
    radial-gradient(circle at 26% 76%, rgba(205,143,166,.08), transparent 22rem),
    linear-gradient(135deg, #07090e 0%, #111722 52%, #0a0c12 100%);
}

.project-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 35%, rgba(221,226,239,0.12), transparent 22rem),
    linear-gradient(180deg, transparent 65%, #090b10 100%);
}

.project-hero-content {
  position: relative;
  z-index: 2;
  width: min(92%, 70rem);
  padding-top: 6rem;
}

.project-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 8vw, 7.6rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-shadow: 0 10px 50px rgba(0,0,0,0.65);
}

.project-subtitle {
  margin: 1rem 0 0;
  color: var(--gold-light);
  font-size: clamp(1rem, 2vw, 1.45rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project-tagline {
  max-width: 38rem;
  margin: 2rem 0;
  color: rgba(245,242,235,0.82);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1.4rem;
  font-size: 2rem;
  animation: scroll-cue 1.8s ease-in-out infinite;
}

@keyframes scroll-cue {
  0%,100% { transform: translate(-50%,0); opacity: .5; }
  50% { transform: translate(-50%,.5rem); opacity: 1; }
}

.project-section {
  padding-top: 7rem;
}

.story-layout {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 4rem;
  align-items: center;
}

.story-lead {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: rgba(245,242,235,0.86);
}

.story-layout blockquote {
  margin: 0;
  padding: 2rem;
  border-left: 2px solid var(--gold);
  background: rgba(255,255,255,0.025);
  color: var(--gold-light);
  font-family: serif;
  font-size: 1.4rem;
}

.project-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.fact {
  padding: 1.8rem;
  background: #0e1118;
}

.fact span {
  display: block;
  margin-bottom: .45rem;
  color: var(--muted);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.world-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.world-card {
  min-height: 15rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), transparent),
    #11151e;
}

.world-card > span {
  font-size: 1.8rem;
}

.world-card p {
  color: var(--muted);
}

.character-feature,
.character-placeholder {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: rgba(255,255,255,.025);
}

.character-feature img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 1rem;
}

.character-kana {
  margin: 0 0 .4rem;
  color: var(--gold);
  letter-spacing: .12em;
}

.moon-placeholder {
  display: grid;
  place-items: center;
  min-height: 21rem;
  border-radius: 1rem;
  background:
    radial-gradient(circle, rgba(220,225,235,.18) 0 23%, transparent 24%),
    linear-gradient(145deg, #101621, #17131b);
  font-size: 6rem;
  color: rgba(240,235,224,.5);
}

.character-placeholder small {
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 1.1rem;
  border: 1px solid var(--line);
  background: #11151e;
}

.gallery-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform .55s ease;
}

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

.gallery-grid figcaption {
  padding: 1rem 1.2rem;
  color: var(--muted);
}

.timeline {
  max-width: 48rem;
  margin: 0 auto;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  gap: 1rem;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 2.5rem;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-item > span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #0e1118;
  color: var(--muted);
}

.timeline-item.done > span {
  color: var(--gold-light);
  border-color: rgba(199,166,106,.5);
}

.timeline-item.active > span {
  color: #f0d5df;
  border-color: rgba(222,166,188,.55);
  box-shadow: 0 0 25px rgba(222,166,188,.12);
}

.timeline-item p {
  margin: .3rem 0 0;
  color: var(--muted);
}

.project-closing {
  text-align: center;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.project-closing h2 {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .project-nav { display: none; }
  .project-facts,
  .world-grid { grid-template-columns: repeat(2, 1fr); }
  .story-layout,
  .character-feature,
  .character-placeholder { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .project-hero {
    min-height: 86vh;
    background-position: 62% 25%;
  }
  .project-hero-content {
    padding-top: 8rem;
  }
  .project-facts,
  .world-grid,
  .gallery-grid { grid-template-columns: 1fr; }
  .fact { padding: 1.3rem; }
}


/* ===== Version 3.2 – Character presentation system ===== */

.character-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.character-presentation {
  position: relative;
  min-height: 39rem;
  overflow: hidden;
  display: grid;
  align-content: end;
  padding: 2.1rem;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  isolation: isolate;
  box-shadow: 0 30px 75px rgba(0,0,0,.34);
}

.character-presentation::before,
.character-presentation::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.character-presentation::before {
  inset: 0;
  z-index: -2;
}

.character-presentation::after {
  inset: 1rem;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 1.05rem;
}

.haruto-card::before {
  background:
    radial-gradient(circle at 72% 22%, rgba(206,220,239,.16), transparent 13rem),
    radial-gradient(circle at 18% 88%, rgba(143,170,204,.09), transparent 18rem),
    linear-gradient(145deg, #0b111b, #14151d 54%, #090b10);
}

.yuna-card::before {
  background:
    radial-gradient(circle at 72% 20%, rgba(244,208,222,.18), transparent 13rem),
    radial-gradient(circle at 18% 86%, rgba(169,210,239,.10), transparent 18rem),
    linear-gradient(145deg, #17121a, #131823 56%, #0b0d12);
}

.character-symbol {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: grid;
  place-items: center;
  opacity: .36;
}

.crescent-symbol {
  font-size: clamp(14rem, 33vw, 25rem);
  color: rgba(228,235,245,.25);
  transform: translate(18%, -18%) rotate(-10deg);
  text-shadow: 0 0 70px rgba(181,204,235,.16);
}

.sakura-symbol {
  font-size: clamp(12rem, 30vw, 22rem);
  color: rgba(244,211,224,.18);
  transform: translate(17%, -17%) rotate(10deg);
  text-shadow: 0 0 70px rgba(244,211,224,.13);
}

.character-card-content {
  position: relative;
  z-index: 2;
  max-width: 31rem;
}

.character-presentation h3 {
  margin: .15rem 0 .65rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: .95;
  letter-spacing: -.035em;
}

.character-role,
.character-meta {
  margin: .35rem 0;
  color: var(--muted);
}

.character-presentation blockquote {
  margin: 1.7rem 0;
  padding-left: 1.1rem;
  border-left: 2px solid var(--gold);
  color: rgba(248,244,238,.88);
  font-family: serif;
  font-size: 1.12rem;
}

.character-art-status {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin: 1.3rem 0 1.7rem;
  padding: .95rem 1rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: .85rem;
  background: rgba(0,0,0,.16);
}

.character-art-status > span {
  font-size: 1.3rem;
}

.character-art-status p {
  margin: 0;
  color: var(--muted);
}

.character-art-status strong {
  color: var(--text);
}

/* Character profile pages */

.character-profile-page {
  min-height: 100vh;
  background: #090b10;
}

.profile-ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.haruto-profile .profile-ambient {
  background:
    radial-gradient(circle at 75% 15%, rgba(181,204,235,.11), transparent 28rem),
    radial-gradient(circle at 15% 80%, rgba(132,157,192,.07), transparent 30rem);
}

.yuna-profile .profile-ambient {
  background:
    radial-gradient(circle at 75% 15%, rgba(244,211,224,.12), transparent 28rem),
    radial-gradient(circle at 15% 80%, rgba(162,209,239,.07), transparent 30rem);
}

.character-profile-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 8rem 1.5rem 4rem;
  text-align: center;
}

.profile-symbol {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: -1;
  font-size: clamp(18rem, 42vw, 36rem);
  opacity: .12;
}

.haruto-profile .profile-symbol {
  color: #dfe8f4;
  transform: rotate(-8deg);
}

.yuna-profile .profile-symbol {
  color: #f1cfdd;
  transform: rotate(8deg);
}

.profile-hero-content {
  max-width: 70rem;
}

.profile-hero-content h1 {
  margin: .3rem 0;
  font-size: clamp(3.2rem, 9vw, 8rem);
  line-height: .9;
  letter-spacing: -.05em;
}

.profile-role {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .16em;
}

.profile-hero-content blockquote {
  max-width: 42rem;
  margin: 2rem auto 0;
  color: rgba(245,242,235,.8);
  font-family: serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.profile-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 3rem;
  align-items: center;
}

.profile-art-placeholder {
  min-height: 31rem;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255,255,255,.035), transparent),
    #10131a;
}

.profile-art-placeholder > span {
  font-size: 7rem;
  color: rgba(255,255,255,.22);
}

.profile-art-placeholder p {
  color: var(--muted);
}

.profile-copy > p {
  color: var(--muted);
}

.profile-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 2rem;
  background: var(--line);
}

.profile-facts > div {
  padding: 1.1rem;
  background: #0e1118;
}

.profile-facts span {
  display: block;
  margin-bottom: .25rem;
  color: var(--muted);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.profile-color-notes {
  max-width: 48rem;
  color: rgba(245,242,235,.82);
  font-size: 1.14rem;
}

@media (max-width: 850px) {
  .character-card-grid,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .character-presentation {
    min-height: 34rem;
  }
}

@media (max-width: 560px) {
  .character-presentation {
    padding: 1.35rem;
  }

  .profile-facts {
    grid-template-columns: 1fr;
  }
}


/* ===== Version 3.3 – figures intentionally without images ===== */

.section-note {
  max-width: 46rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: .98rem;
}

.project-hero::before {
  content: "";
  position: absolute;
  width: min(52vw, 38rem);
  aspect-ratio: 1;
  right: -8rem;
  top: 12%;
  border: 1px solid rgba(225,231,241,.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 3rem rgba(225,231,241,.018),
    0 0 0 7rem rgba(225,231,241,.012);
}

.project-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,6,10,.9), rgba(4,6,10,.15)),
    linear-gradient(180deg, transparent 62%, #090b10 100%);
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== Version 3.4 – cinematic project presentation ===== */

.cinematic-hero {
  min-height: 100svh;
  background:
    radial-gradient(circle at 77% 24%, rgba(228,235,245,.18) 0 8rem, transparent 8.2rem),
    radial-gradient(circle at 81% 22%, #0a0f18 0 7.4rem, transparent 7.6rem),
    radial-gradient(circle at 25% 76%, rgba(220,160,184,.08), transparent 22rem),
    linear-gradient(135deg, #060810 0%, #101827 48%, #080a10 100%);
}

.cinematic-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.7) 0 1px, transparent 1.2px),
    radial-gradient(circle, rgba(219,230,246,.4) 0 1px, transparent 1.2px);
  background-size: 88px 88px, 141px 141px;
  background-position: 0 0, 36px 54px;
  opacity: .42;
  animation: starDrift 42s linear infinite;
}

@keyframes starDrift {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-70px,42px,0); }
}

.cinematic-hero .project-hero-content {
  position: relative;
  z-index: 2;
}

.hero-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.2rem;
  margin: 2rem 0 .5rem;
  color: var(--gold-light);
  font-family: serif;
  font-size: clamp(1.2rem, 2.3vw, 1.9rem);
}

.hero-status-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 62rem;
  margin-top: 3rem;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
}

.hero-status-strip > div {
  padding: 1rem 1.1rem;
  background: rgba(7,9,14,.56);
}

.hero-status-strip span,
.hero-status-strip strong {
  display: block;
}

.hero-status-strip span {
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-status-strip strong {
  margin-top: .28rem;
  font-size: .88rem;
}

.world-grid-primary {
  grid-template-columns: repeat(3, 1fr);
}

.world-icon {
  display: grid;
  place-items: center;
  width: 3.6rem;
  height: 3.6rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 1.35rem;
  background: rgba(255,255,255,.03);
}

.world-label {
  margin-top: 1.7rem;
  color: var(--gold);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.world-card-theater {
  background:
    radial-gradient(circle at 85% 10%, rgba(207,170,93,.11), transparent 12rem),
    #12141a;
}

.world-card-security {
  background:
    radial-gradient(circle at 85% 10%, rgba(157,185,219,.10), transparent 12rem),
    #10151d;
}

.world-card-ayacar {
  background:
    radial-gradient(circle at 85% 10%, rgba(197,108,91,.09), transparent 12rem),
    #151315;
}

.world-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.2rem;
}

.world-secondary article {
  display: flex;
  gap: 1rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: .9rem;
  background: rgba(255,255,255,.02);
}

.world-secondary p {
  margin: .25rem 0 0;
  color: var(--muted);
  font-size: .88rem;
}

.gallery-disclaimer {
  max-width: 54rem;
  margin-top: 1.2rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(199,166,106,.22);
  border-radius: .85rem;
  color: var(--muted);
  background: rgba(199,166,106,.045);
}

.gallery-disclaimer strong {
  color: var(--gold-light);
}

.gallery-grid figcaption strong {
  display: block;
  margin-top: .45rem;
  color: var(--text);
}

.concept-badge {
  display: inline-flex;
  padding: .3rem .55rem;
  border: 1px solid rgba(199,166,106,.28);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(199,166,106,.06);
  font-size: .68rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.studio-signature {
  display: grid;
  justify-items: center;
  text-align: center;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.studio-signature img {
  width: 7rem;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.studio-signature .eyebrow {
  margin-top: 1.5rem;
}

.studio-signature h2 {
  font-family: sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: .1em;
}

.studio-signature > p:not(.eyebrow) {
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-status-strip,
  .world-grid-primary,
  .world-secondary {
    grid-template-columns: 1fr;
  }
}


/* ===== Version 3.5 – world features and location pages ===== */

.world-feature-grid {
  display: grid;
  gap: 1.35rem;
}

.world-feature {
  display: grid;
  grid-template-columns: minmax(18rem, 44%) 1fr;
  min-height: 24rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  color: inherit;
  text-decoration: none;
  background: #11141b;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.world-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(212,185,126,.35);
  box-shadow: 0 1.5rem 4rem rgba(0,0,0,.22);
}

.world-feature-image {
  position: relative;
  min-height: 24rem;
  overflow: hidden;
}

.world-feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, #11141b 100%);
}

.world-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.world-feature:hover img {
  transform: scale(1.035);
}

.world-feature-image .concept-badge {
  position: absolute;
  z-index: 2;
  left: 1rem;
  bottom: 1rem;
  max-width: calc(100% - 2rem);
  background: rgba(8,10,14,.78);
  backdrop-filter: blur(8px);
}

.world-feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.world-feature-content h3 {
  margin: .4rem 0 .75rem;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.world-feature-content > p:not(.world-label):not(.world-quote) {
  max-width: 38rem;
  color: var(--muted);
}

.world-quote {
  margin: 0 0 1rem;
  color: var(--gold-light);
  font-family: serif;
  font-size: 1.15rem;
}

.text-link {
  margin-top: 1.5rem;
  color: var(--gold-light);
  font-weight: 700;
}

.world-feature-security {
  background: #0f151d;
}

.world-feature-ayacar {
  background: #171315;
}

.location-hero {
  position: relative;
  min-height: min(78svh, 52rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.location-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,6,10,.93) 0%, rgba(4,6,10,.64) 45%, rgba(4,6,10,.18) 100%),
    linear-gradient(180deg, rgba(4,6,10,.16), #090b10 100%);
}

.location-hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 9rem 0 5rem;
}

.location-jp {
  margin: 0;
  color: var(--gold-light);
  letter-spacing: .22em;
}

.location-hero h1 {
  max-width: 56rem;
  margin: .35rem 0 1rem;
  font-size: clamp(3rem, 8vw, 7.8rem);
  line-height: .92;
}

.location-hero blockquote {
  max-width: 42rem;
  margin: 0 0 1.5rem;
  color: #fff;
  font-family: serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

.location-intro {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.location-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.75;
}

.location-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-top: 0;
}

.location-fact {
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}

.location-fact span,
.location-fact strong {
  display: block;
}

.location-fact span {
  color: var(--muted);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.location-fact strong {
  margin-top: .45rem;
}

.location-atmosphere {
  text-align: center;
}

.location-atmosphere blockquote {
  max-width: 62rem;
  margin: 1rem auto 0;
  font-family: serif;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1.45;
}

.location-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.location-detail {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255,255,255,.02);
}

.location-detail h2 {
  font-size: 1.55rem;
}

.location-detail > p:last-child {
  color: var(--muted);
}

.location-transparency {
  display: grid;
  justify-items: start;
  gap: 1.5rem;
}

.location-transparency .gallery-disclaimer {
  max-width: 64rem;
  margin: 0;
}

@media (max-width: 900px) {
  .world-feature {
    grid-template-columns: 1fr;
  }

  .world-feature-image,
  .world-feature {
    min-height: auto;
  }

  .world-feature-image {
    aspect-ratio: 16 / 10;
  }

  .world-feature-image::after {
    background: linear-gradient(180deg, transparent 60%, #11141b 100%);
  }

  .location-intro,
  .location-detail-grid,
  .location-facts {
    grid-template-columns: 1fr;
  }

  .location-intro {
    gap: 1.5rem;
  }
}


/* ===== Version 3.6 – Living Website ===== */

.hero-cloud {
  position: absolute;
  z-index: 1;
  width: 42rem;
  height: 14rem;
  border-radius: 50%;
  filter: blur(30px);
  opacity: .1;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(255,255,255,.38), rgba(255,255,255,0) 68%);
}

.hero-cloud-one {
  top: 18%;
  left: -12rem;
  animation: cloudFloatOne 36s ease-in-out infinite alternate;
}

.hero-cloud-two {
  right: -18rem;
  bottom: 12%;
  animation: cloudFloatTwo 44s ease-in-out infinite alternate;
}

@keyframes cloudFloatOne {
  to { transform: translate3d(22rem, 2rem, 0) scale(1.08); }
}

@keyframes cloudFloatTwo {
  to { transform: translate3d(-24rem, -1rem, 0) scale(.92); }
}

.hero-petals {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.hero-petals span {
  position: absolute;
  top: -3rem;
  width: .72rem;
  height: 1.1rem;
  border-radius: 70% 30% 70% 30%;
  background: rgba(239,183,205,.42);
  animation: petalFall 14s linear infinite;
}

.hero-petals span:nth-child(1) { left: 8%; animation-delay: -2s; }
.hero-petals span:nth-child(2) { left: 24%; animation-delay: -8s; animation-duration: 18s; }
.hero-petals span:nth-child(3) { left: 42%; animation-delay: -5s; animation-duration: 16s; }
.hero-petals span:nth-child(4) { left: 61%; animation-delay: -11s; animation-duration: 20s; }
.hero-petals span:nth-child(5) { left: 79%; animation-delay: -4s; animation-duration: 17s; }
.hero-petals span:nth-child(6) { left: 91%; animation-delay: -13s; animation-duration: 22s; }

@keyframes petalFall {
  0% { transform: translate3d(0,-4rem,0) rotate(0deg); opacity: 0; }
  10% { opacity: .7; }
  100% { transform: translate3d(9rem,110svh,0) rotate(520deg); opacity: 0; }
}

.roadmap-dashboard {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.roadmap-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255,255,255,.025);
}

.roadmap-card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.roadmap-card-head strong {
  color: var(--gold-light);
}

.progress-track {
  height: .55rem;
  margin: 1rem 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
}

.progress-track span {
  display: block;
  width: var(--progress);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(204,172,107,.75), rgba(239,220,170,.95));
  animation: progressReveal 1.3s ease both;
}

@keyframes progressReveal {
  from { width: 0; }
}

.roadmap-card p {
  margin: 0;
  color: var(--muted);
}

.development-notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.development-notes-grid blockquote {
  margin: 0;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background:
    radial-gradient(circle at top right, rgba(218,186,124,.08), transparent 12rem),
    rgba(255,255,255,.02);
}

.development-notes-grid p {
  margin: 0;
  font-family: serif;
  font-size: 1.22rem;
  line-height: 1.55;
}

.development-notes-grid footer {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 1.3rem 0;
}

.gallery-filter-button {
  padding: .65rem .9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.gallery-filter-button:hover,
.gallery-filter-button.is-active {
  color: #111;
  border-color: var(--gold-light);
  background: var(--gold-light);
}

.gallery-card.is-hidden,
.gallery-empty-state.is-hidden {
  display: none;
}

.gallery-empty-state {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 20rem;
  padding: 2rem;
  border: 1px dashed rgba(255,255,255,.16);
  border-radius: 1rem;
  text-align: center;
  background: rgba(255,255,255,.015);
}

.gallery-empty-state span {
  color: var(--gold-light);
  font-size: 2rem;
}

.gallery-empty-state p {
  max-width: 28rem;
  color: var(--muted);
}

.journal-timeline {
  position: relative;
  max-width: 60rem;
  margin: 0 auto;
}

.journal-timeline::before {
  content: "";
  position: absolute;
  left: 8.9rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.journal-timeline article {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 2rem;
  position: relative;
  padding: 0 0 2.5rem;
}

.journal-timeline article::before {
  content: "";
  position: absolute;
  left: 8.58rem;
  top: .35rem;
  width: .7rem;
  height: .7rem;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 .3rem rgba(210,180,119,.12);
}

.journal-timeline time {
  color: var(--muted);
  font-size: .78rem;
  text-align: right;
}

.journal-timeline h3 {
  margin: 0;
}

.journal-timeline p {
  color: var(--muted);
}

.team-section {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.team-card {
  min-height: 23rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background:
    radial-gradient(circle at top right, rgba(207,176,111,.08), transparent 14rem),
    rgba(255,255,255,.025);
}

.team-card-pending {
  background: rgba(255,255,255,.015);
}

.team-monogram {
  display: grid;
  place-items: center;
  width: 4.3rem;
  height: 4.3rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 1.2rem;
}

.team-role {
  color: var(--gold-light);
  font-size: .82rem;
  letter-spacing: .05em;
}

.team-card > p:last-child {
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  .hero-cloud,
  .hero-petals span,
  .cinematic-hero::before,
  .progress-track span {
    animation: none !important;
  }
}

@media (max-width: 900px) {
  .roadmap-dashboard,
  .development-notes-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .journal-timeline::before {
    left: .35rem;
  }

  .journal-timeline article {
    grid-template-columns: 1fr;
    gap: .45rem;
    padding-left: 2rem;
  }

  .journal-timeline article::before {
    left: 0;
  }

  .journal-timeline time {
    text-align: left;
  }
}
