:root {
  --bg: #16161a;
  --pink: #f0a8c0;
  --pink-light: #fad4e4;
  --gold: #f5e8a8;
  --gold-light: #fdf6d8;
  --green: #a8d4a0;
  --green-deep: #5a9e70;
  --coral: #e87272;
  --lime: #dde89a;
  --olive: #8fa832;
  --cream: #f8f3ee;
  --warm: #6b6662;
  --border: rgba(245, 232, 168, 0.12);
  --border-h: rgba(245, 232, 168, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --section-pad-top: clamp(80px, 10vw, 120px);
  --section-pad-bottom: clamp(60px, 8vw, 100px);
  --inner-pad: clamp(16px, 5vw, 64px);
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #0e0e11;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    var(--pink) 0%,
    var(--gold) 50%,
    var(--green) 100%
  );
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    var(--pink-light) 0%,
    var(--gold-light) 50%,
    var(--lime) 100%
  );
}
* {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) #0e0e11;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
* {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
img {
  -webkit-user-drag: none;
  display: block;
  max-width: 100%;
}
button {
  font-family: inherit;
  cursor: pointer;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  background: var(--bg);
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--coral), var(--lime), var(--gold));
  z-index: 999;
  pointer-events: none;
  transition: width 0.08s linear;
}

.stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.star {
  position: absolute;
  border-radius: 50%;
  animation: twinkle var(--dur) ease-in-out infinite;
  opacity: 0;
}
.star:nth-child(3n) {
  background: rgba(240, 168, 192, 0.8);
}
.star:nth-child(3n + 1) {
  background: rgba(168, 212, 160, 0.8);
}
.star:nth-child(3n + 2) {
  background: rgba(245, 232, 168, 0.9);
}
@keyframes twinkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.Illustration {
  position: absolute;
  width: 40vw;       
  max-width: 500px;  
  height: auto;
  object-fit: contain;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.bg-orb--1 {
  width: clamp(300px, 50vw, 600px);
  height: clamp(300px, 50vw, 600px);
  top: -10%;
  left: -10%;
  background: radial-gradient(
    circle,
    rgba(240, 168, 192, 0.07) 0%,
    transparent 70%
  );
  animation: orbDrift 14s ease-in-out infinite;
}
.bg-orb--2 {
  width: clamp(250px, 40vw, 500px);
  height: clamp(250px, 40vw, 500px);
  bottom: 10%;
  right: -10%;
  background: radial-gradient(
    circle,
    rgba(143, 168, 50, 0.07) 0%,
    transparent 70%
  );
  animation: orbDrift 18s ease-in-out infinite 3s;
}
.bg-orb--3 {
  width: clamp(200px, 35vw, 400px);
  height: clamp(200px, 35vw, 400px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(245, 232, 168, 0.04) 0%,
    transparent 70%
  );
  animation: orbDrift 22s ease-in-out infinite 7s;
}
@keyframes orbDrift {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  33% {
    transform: translateY(-40px) scale(1.06);
    opacity: 1;
  }
  66% {
    transform: translateY(25px) scale(0.96);
    opacity: 0.8;
  }
}

.deco-line {
  position: fixed;
  pointer-events: none;
  opacity: 0.04;
  z-index: 0;
}
.deco-line-h {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--pink),
    var(--green),
    transparent
  );
  top: 50%;
}
.deco-line-v {
  height: 100%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--green),
    var(--pink),
    transparent
  );
  left: 50%;
}

.sparkle {
  position: fixed;
  pointer-events: none;
  z-index: 999;
  border-radius: 50%;
}
@keyframes sparkleAnim {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--dx), var(--dy)) scale(0);
  }
}

#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(16px, 4vw, 50px);
  height: clamp(56px, 7vw, 68px);
  background: linear-gradient(
    to bottom,
    rgba(13, 15, 14, 0.96) 0%,
    transparent 100%
  );
}
.nav-logo {
  font-family: "Cinzel Decorative", cursive;
  font-size: clamp(13px, 1.6vw, 16px);
  letter-spacing: 4px;
  color: var(--pink);
  text-decoration: none;
  transition:
    text-shadow 0.3s,
    color 0.3s;
}
.nav-logo:hover {
  color: var(--pink-light);
  text-shadow: 0 0 28px rgba(240, 168, 192, 0.55);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  transition: filter 0.25s;
}
.menu-toggle-btn:hover {
  filter: drop-shadow(0 0 8px rgba(240, 168, 192, 0.5));
}
.ham-line {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--cream);
  transition:
    background 0.25s,
    transform 0.3s var(--ease),
    width 0.25s,
    opacity 0.25s;
  transform-origin: center;
}
.menu-toggle-btn.active .ham-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  background: var(--pink);
}
.menu-toggle-btn.active .ham-line:nth-child(2) {
  opacity: 0;
  width: 0;
}
.menu-toggle-btn.active .ham-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  background: var(--pink);
}

#navDropdown {
  position: fixed;
  top: clamp(60px, 8vw, 76px);
  right: clamp(16px, 4vw, 50px);
  z-index: 600;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 232, 168, 0.08);
  border-radius: 4px;
  padding: clamp(18px, 3vw, 28px) clamp(18px, 3vw, 32px)
    clamp(14px, 2.5vw, 22px);
  min-width: min(260px, calc(100vw - 32px));
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(240, 168, 192, 0.03);
}
#navDropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-drop-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  margin-bottom: 16px;
}
.nav-drop-list li a {
  font-family: "Cinzel Decorative", cursive;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 2px;
  opacity: 0.38;
  display: block;
  padding: 7px 0;
  transition:
    opacity 0.18s,
    color 0.18s,
    transform 0.18s,
    letter-spacing 0.18s;
}
.nav-drop-list li a:hover {
  opacity: 1;
  color: var(--pink-light);
  transform: translateX(-6px);
  letter-spacing: 3px;
}
.nav-drop-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to left, rgba(245, 232, 168, 0.18), transparent);
  margin-bottom: 16px;
}
.nav-drop-socials {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.nav-drop-social {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  min-height: 42px;
  border: 1px solid rgba(245, 232, 168, 0.12);
  border-radius: 3px;
  color: rgba(245, 232, 168, 0.4);
  text-decoration: none;
  font-family: "IM Fell English SC", serif;
  font-size: 11px;
  letter-spacing: 2px;
  background: rgba(255, 255, 255, 0.02);
  transition:
    color 0.25s,
    border-color 0.25s,
    background 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
  white-space: nowrap;
}
.nav-drop-social svg {
  width: 13px;
  height: 13px;
  display: block;
  flex-shrink: 0;
}
.nav-drop-social--twitch:hover {
  background: rgba(145, 70, 255, 0.85);
  border-color: rgba(145, 70, 255, 0.9);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(145, 70, 255, 0.3);
}
.nav-drop-social--x:hover {
  background: rgba(240, 168, 192, 0.85);
  border-color: rgba(240, 168, 192, 0.9);
  color: #0d0d0d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 168, 192, 0.25);
}
.nav-drop-social--vgen:hover {
  background: rgba(143, 168, 50, 0.85);
  border-color: rgba(143, 168, 50, 0.9);
  color: #0d0d0d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(143, 168, 50, 0.25);
}

.section {
  position: relative;
  z-index: 1;
}
.section--home {
  height: 100svh;
  min-height: 500px;
  overflow: hidden;
}
.section--inner {
  padding: var(--section-pad-top) 0 var(--section-pad-bottom);
  border-top: 1px solid rgba(245, 232, 168, 0.06);
}
.inner-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--inner-pad);
}

.section-bg-accent {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
}
.section-bg-accent--coral {
  background: radial-gradient(
    ellipse at 80% 20%,
    rgba(232, 114, 114, 0.6) 0%,
    transparent 60%
  );
}
.section-bg-accent--lime {
  background: radial-gradient(
    ellipse at 20% 80%,
    rgba(143, 168, 50, 0.6) 0%,
    transparent 60%
  );
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.page-header {
  margin-bottom: clamp(32px, 5vw, 56px);
}
.page-header-eyebrow {
  font-family: "IM Fell English SC", serif;
  font-size: 13px;
  letter-spacing: 5px;
  color: var(--green-deep);
  opacity: 0.85;
  margin-bottom: 12px;
}
.page-header-title {
  font-family: "Cinzel Decorative", cursive;
  font-size: clamp(32px, 5vw, 68px);
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--pink) 0%,
    var(--gold-light) 60%,
    var(--green) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: clamp(2px, 0.5vw, 4px);
  margin-bottom: 16px;
}
.page-header-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, var(--pink), transparent);
}

.home-center {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: orbPulse 7s ease-in-out infinite;
}
.orb-main {
  width: 52vmin;
  height: 52vmin;
  background: radial-gradient(
    circle at 38% 38%,
    rgba(240, 168, 192, 0.1) 0%,
    rgba(245, 232, 168, 0.06) 45%,
    transparent 72%
  );
  border: 1px solid rgba(245, 232, 168, 0.18);
  box-shadow:
    0 0 100px rgba(240, 168, 192, 0.06),
    0 0 180px rgba(245, 232, 168, 0.04);
}
.orb-inner {
  width: 35vmin;
  height: 35vmin;
  background: radial-gradient(
    circle at 55% 45%,
    rgba(245, 232, 168, 0.07) 0%,
    rgba(240, 168, 192, 0.04) 60%,
    transparent 80%
  );
  border: 1px solid rgba(245, 232, 168, 0.1);
  animation-direction: reverse;
}
.orb-ring {
  width: 64vmin;
  height: 64vmin;
  border: 1px solid rgba(245, 232, 168, 0.06);
  animation-duration: 10s;
}
@keyframes orbPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

.char-image {
  position: absolute;
  height: min(78vh, 78svh);
  width: auto;
  object-fit: contain;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: charFloat 8s ease-in-out infinite;
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  margin-bottom: clamp(40px, 6vw, 72px);
}
@keyframes charFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-12px);
  }
}

.home-side-left {
  position: absolute;
  left: clamp(12px, 5%, 5%);
  top: 42%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.4vh, 16px);
  z-index: 10;
}
.home-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  opacity: 0;
  animation: slideInLeft 0.7s var(--ease) forwards;
  transition:
    transform 0.35s var(--ease-back),
    filter 0.3s;
  padding: 4px 0;
}
.home-menu-item:nth-child(1) {
  animation-delay: 0.15s;
}
.home-menu-item:nth-child(2) {
  animation-delay: 0.28s;
}
.home-menu-item:nth-child(3) {
  animation-delay: 0.41s;
}
.home-menu-item:hover {
  transform: translateX(8px);
  filter: drop-shadow(0 0 1vw rgba(245, 232, 168, 0.5));
}
.home-menu-item img {
  height: clamp(28px, 4.5vw, 42px);
  width: auto;
  object-fit: contain;
  transition: filter 0.3s;
}
.home-menu-item:hover img {
  filter: brightness(1.15);
}
.home-menu-label {
  font-family: "IM Fell English SC", serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(245, 232, 168, 0.4);
  transition: color 0.25s;
}
.home-menu-item:hover .home-menu-label {
  color: var(--gold);
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.home-gallery-cta {
  position: absolute;
  right: clamp(12px, 5%, 5%);
  bottom: clamp(40px, 8%, 8%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  text-decoration: none;
  z-index: 10;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s var(--ease) forwards;
  transition:
    filter 0.3s,
    transform 0.3s;
}
.home-gallery-cta:hover {
  filter: drop-shadow(0 0 2vw rgba(245, 232, 168, 0.5));
  transform: scale(1.04);
}
.home-gallery-cta img {
  height: clamp(60px, 8vw, 100px);
  width: auto;
  object-fit: contain;
}
.home-gallery-label {
  font-family: "IM Fell English SC", serif;
  font-size: 12px;
  letter-spacing: 4px;
  color: rgba(245, 232, 168, 0.35);
}

.name-display {
  position: absolute;
  left: 50%;
  top: 70%;
  transform: translateX(-50%);
  z-index: 6;
  pointer-events: none;
  animation: charFloat 8s ease-in-out infinite;
  filter: drop-shadow(0 0 2vw rgba(245, 232, 168, 0.25));
}
.name-display img {
  height: clamp(36px, 5vw, 70px);
  width: auto;
}

.scroll-hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  opacity: 0;
  animation: fadeUp 1s 1s var(--ease) forwards;
}
.scroll-hint-text {
  font-family: "IM Fell English SC", serif;
  font-size: 12px;
  letter-spacing: 5px;
  color: rgba(245, 232, 168, 0.3);
}
.scroll-hint-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(245, 232, 168, 0.3), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.8;
    transform: scaleY(1.2);
  }
}

.ill-hero {
  display: flex;
  justify-content: center;
  align-items: center;    
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.ill-hero-eyebrow {
  font-family: "IM Fell English SC", serif;
  font-size: 13px;
  letter-spacing: 5px;
  color: var(--green-deep);
  opacity: 0.85;
  margin-bottom: 14px;
}
.ill-hero-title {
  font-family: "Cinzel Decorative", cursive;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: clamp(1px, 0.4vw, 4px);
  margin-bottom: 20px;
  color: var(--gold);

  text-align: center;
}
.ill-hero-desc {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(16px, 1.7vw, 20px);
  color: var(--cream);
  opacity: 0.6;
  line-height: 1.75;
  max-width: 420px;
}
.ill-hero-deco {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.ill-hero-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--pink), transparent);
}
.ill-hero-tag {
  font-family: "IM Fell English SC", serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: rgba(245, 232, 168, 0.35);
  writing-mode: vertical-rl;
}

.ill-carousel-section {
  position: relative;
}
.ill-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding-bottom: 4px;
}
.ill-carousel-track {
  display: flex;
  align-items: stretch;
  will-change: transform;
  transition: transform 0.65s var(--ease);
}

.ill-carousel-slide {
  flex-shrink: 0;
  width: 52%;
  padding: 0 10px;
  cursor: pointer;
  transition:
    filter 0.5s var(--ease),
    transform 0.5s var(--ease);
}
.ill-carousel-slide.active {
  filter: brightness(1.05) saturate(1.1);
  transform: scale(1.01);
}
.ill-carousel-slide:not(.active) {
  filter: brightness(0.45) saturate(0.4);
  transform: scale(0.97);
}

.ill-carousel-img-wrap {
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--border);
  background: rgba(13, 13, 13, 0.5);
}
.ill-carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.ill-carousel-img.loaded {
  opacity: 1;
}
.ill-carousel-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: rgba(13, 13, 13, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ill-carousel-slide:hover .ill-carousel-overlay {
  opacity: 1;
}
.ill-carousel-overlay-btn {
  font-family: "Cinzel Decorative", cursive;
  font-size: 12px;
  letter-spacing: 5px;
  color: var(--gold);
  border: 1px solid rgba(245, 232, 168, 0.5);
  padding: 12px 28px;
  background: rgba(13, 13, 13, 0.5);
  backdrop-filter: blur(4px);
  transform: scale(0.88);
  transition: transform 0.3s var(--ease-back);
}
.ill-carousel-slide:hover .ill-carousel-overlay-btn {
  transform: scale(1);
}

.ill-carousel-label {
  font-family: "IM Fell English SC", serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(245, 232, 168, 0.45);
  padding: 14px 0 4px;
  text-align: left;
  transition: color 0.3s;
}
.ill-carousel-slide.active .ill-carousel-label {
  color: rgba(245, 232, 168, 0.85);
}

.ill-carousel-fade {
  position: absolute;
  top: 0;
  bottom: 20px;
  width: clamp(60px, 18%, 220px);
  pointer-events: none;
  z-index: 2;
}
.ill-carousel-fade--left {
  left: 0;
  background: linear-gradient(
    to right,
    var(--bg) 0%,
    rgba(22, 22, 26, 0.6) 50%,
    transparent 100%
  );
}
.ill-carousel-fade--right {
  right: 0;
  background: linear-gradient(
    to left,
    var(--bg) 0%,
    rgba(22, 22, 26, 0.6) 50%,
    transparent 100%
  );
}

.ill-carousel-arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 22, 26, 0.85);
  border: 1px solid var(--border);
  color: var(--gold);
  backdrop-filter: blur(8px);
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s var(--ease);
}
.ill-carousel-arrow--prev {
  left: 10px;
}
.ill-carousel-arrow--next {
  right: 10px;
}
.ill-carousel-arrow:hover {
  background: rgba(245, 232, 168, 0.1);
  border-color: var(--border-h);
}
.ill-carousel-arrow--prev:hover {
  transform: translateY(-50%) translateX(-2px);
}
.ill-carousel-arrow--next:hover {
  transform: translateY(-50%) translateX(2px);
}

.ill-carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}
.ill-carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.ill-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(245, 232, 168, 0.18);
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-back);
  padding: 0;
  flex-shrink: 0;
}
.ill-dot.active {
  background: var(--gold);
  width: 28px;
  box-shadow: 0 0 12px rgba(245, 232, 168, 0.4);
}
.ill-dot:hover:not(.active) {
  background: rgba(245, 232, 168, 0.4);
}

.ill-carousel-actions {
  display: flex;
  gap: 12px;
}
.ill-action-btn {
  font-family: "Cinzel Decorative", cursive;
  font-size: 12px;
  letter-spacing: 4px;
  padding: 12px 28px;
  text-decoration: none;
  border: 1px solid rgba(245, 232, 168, 0.3);
  color: var(--gold);
  background: rgba(255, 255, 255, 0.02);
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.ill-action-btn:hover {
  background: rgba(245, 232, 168, 0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 232, 168, 0.1);
}
.ill-action-btn--vgen {
  border-color: rgba(143, 168, 50, 0.4);
  color: var(--green);
}
.ill-action-btn--vgen:hover {
  background: rgba(143, 168, 50, 0.1);
  border-color: var(--green-deep);
  box-shadow: 0 8px 24px rgba(143, 168, 50, 0.15);
  color: var(--lime);
}

.ill-marquee {
  margin-top: clamp(40px, 6vw, 72px);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  background: rgba(0, 0, 0, 0.15);
}
.ill-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marqueeScroll 22s linear infinite;
}
.ill-marquee-track span {
  font-family: "IM Fell English SC", serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: rgba(245, 232, 168, 0.28);
}
.marquee-dot {
  color: rgba(143, 168, 50, 0.5) !important;
  letter-spacing: 0 !important;
}
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.comm-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 48px);
  margin-bottom: 32px;
}
.comm-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.comm-block-title {
  font-family: "Cinzel Decorative", cursive;
  font-size: clamp(11px, 1.3vw, 13px);
  letter-spacing: 5px;
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: 20px;
}
.comm-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.comm-list li {
  padding: 14px 16px 14px 38px;
  position: relative;
  border: 1px solid rgba(245, 232, 168, 0.07);
  background: rgba(255, 255, 255, 0.015);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
  color: var(--cream);
  opacity: 0.82;
  transition:
    border-color 0.25s,
    opacity 0.25s;
}
.comm-list li:hover {
  border-color: rgba(245, 232, 168, 0.18);
  opacity: 1;
}
.comm-list li::before {
  content: "✦";
  position: absolute;
  left: 14px;
  top: 16px;
  color: var(--green-deep);
  font-size: 9px;
}
.comm-list li strong {
  color: var(--gold);
  opacity: 1;
}

.comm-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(232, 114, 114, 0.05);
  border: 1px solid rgba(232, 114, 114, 0.2);
  border-left: 3px solid rgba(232, 114, 114, 0.5);
  padding: 20px 24px;
  margin-bottom: 44px;
}
.comm-note svg {
  flex-shrink: 0;
  color: rgba(232, 114, 114, 0.7);
  margin-top: 2px;
}
.comm-note p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--cream);
  opacity: 0.75;
  line-height: 1.75;
}
.comm-note p strong {
  color: var(--coral);
  opacity: 1;
}

.comm-addons {
  margin-bottom: 44px;
}
.comm-addon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2vw, 24px);
  margin-top: 20px;
}
.comm-addon-card {
  padding: clamp(20px, 2.5vw, 32px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 232, 168, 0.1);
  background: rgba(255, 255, 255, 0.02);
  transition:
    border-color 0.3s,
    transform 0.35s var(--ease),
    box-shadow 0.35s;
}
.comm-addon-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--green-deep),
    var(--gold),
    transparent
  );
}
.comm-addon-card:hover {
  border-color: rgba(245, 232, 168, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}
.addon-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.addon-tag {
  font-family: "IM Fell English SC", serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(143, 168, 50, 0.85);
  background: rgba(143, 168, 50, 0.1);
  border: 1px solid rgba(143, 168, 50, 0.25);
  padding: 4px 10px;
}
.addon-price {
  font-family: "Cinzel Decorative", cursive;
  font-size: clamp(15px, 2vw, 20px);
  color: var(--gold-light);
  filter: drop-shadow(0 0 10px rgba(245, 232, 168, 0.2));
}
.addon-name {
  font-family: "IM Fell English SC", serif;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--cream);
  margin-bottom: 10px;
}
.addon-desc {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  color: var(--cream);
  opacity: 0.6;
  line-height: 1.65;
}

.comm-cta {
  text-align: center;
  padding-top: 8px;
}
.comm-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Cinzel Decorative", cursive;
  font-size: 13px;
  letter-spacing: 5px;
  padding: 16px 48px;
  min-height: 54px;
  border: 1px solid rgba(143, 168, 50, 0.4);
  color: var(--green);
  text-decoration: none;
  background: rgba(143, 168, 50, 0.05);
  transition: all 0.3s var(--ease);
}
.comm-cta-btn:hover {
  background: rgba(143, 168, 50, 0.12);
  border-color: var(--green-deep);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(143, 168, 50, 0.15);
  color: var(--lime);
}

.gallery-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(32px, 5vw, 56px);
  padding-bottom: clamp(28px, 4vw, 48px);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 24px;
}
.gallery-hero-eyebrow {
  font-family: "IM Fell English SC", serif;
  font-size: 13px;
  letter-spacing: 5px;
  color: var(--green-deep);
  opacity: 0.85;
  margin-bottom: 16px;
}
.gallery-hero-title {
  font-family: "Cinzel Decorative", cursive;
  font-weight: 900;
  font-size: clamp(40px, 7vw, 90px);
  line-height: 0.88;
  margin: 0 0 20px;
  color: var(--cream);
}
.gallery-hero-title em {
  font-style: normal;
  background: linear-gradient(
    135deg,
    var(--pink) 0%,
    var(--gold-light) 50%,
    var(--green) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.gallery-hero-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--cream);
  opacity: 0.5;
  line-height: 1.7;
  max-width: 360px;
}
.gallery-count-ring {
  width: clamp(100px, 14vw, 160px);
  height: clamp(100px, 14vw, 160px);
  border-radius: 50%;
  border: 1px solid rgba(245, 232, 168, 0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  background: radial-gradient(
    circle at center,
    rgba(245, 232, 168, 0.03) 0%,
    transparent 70%
  );
}
.gallery-count-ring::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(245, 232, 168, 0.06);
}
.gallery-count-num {
  font-family: "Cinzel Decorative", cursive;
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  filter: drop-shadow(0 0 20px rgba(245, 232, 168, 0.3));
}
.gallery-count-lbl {
  font-family: "IM Fell English SC", serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(245, 232, 168, 0.4);
  margin-top: 4px;
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar {
  display: none;
}
.filter-btn {
  background: none;
  border: 1px solid transparent;
  color: rgba(245, 232, 168, 0.45);
  font-family: "IM Fell English SC", serif;
  font-size: 13px;
  letter-spacing: 3px;
  padding: 11px 20px;
  transition: all 0.25s var(--ease);
  position: relative;
  margin-bottom: -1px;
  white-space: nowrap;
  min-height: 44px;
}
.filter-btn::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--gold);
  transition:
    left 0.3s var(--ease),
    right 0.3s var(--ease);
}
.filter-btn:hover,
.filter-btn.active {
  color: var(--gold);
  border-color: var(--border);
}
.filter-btn.active::after {
  left: 0;
  right: 0;
}

.gallery-cat-section {
  margin-bottom: 64px;
}
.gallery-cat-section.hidden {
  display: none;
}

.cat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.cat-header-arrow {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.arrow-chevron {
  font-family: "Cinzel Decorative", cursive;
  font-size: 24px;
  color: rgba(143, 168, 50, 0.88);
  line-height: 1;
  margin-top: -2px;
}
.arrow-line {
  width: 2px;
  height: 18px;
  background: rgba(143, 168, 50, 0.88);
}
.cat-title {
  font-family: "Cinzel Decorative", cursive;
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--cream);
  margin: 0;
}
.cat-count {
  margin-left: auto;
  font-family: "Cinzel Decorative", cursive;
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(245, 232, 168, 0.28);
}

.section-grid {
  columns: 3;
  column-gap: clamp(10px, 1.8vw, 20px);
}

.art-card {
  break-inside: avoid;
  margin-bottom: clamp(10px, 1.8vw, 20px);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  background: rgba(13, 13, 13, 0.35);
  opacity: 0;
  transform: translateX(-40px);
  transition: border-color 0.25s var(--ease);
}
.art-card.card-visible {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease),
    border-color 0.25s var(--ease);
}
.art-card:hover {
  border-color: var(--border-h);
}
.art-card-img-wrap {
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}
.art-card-skeleton {
  position: absolute;
  inset: 0;
  min-height: 120px;
  background: linear-gradient(
    90deg,
    rgba(245, 232, 168, 0.03) 0%,
    rgba(245, 232, 168, 0.08) 40%,
    rgba(245, 232, 168, 0.03) 80%
  );
  background-size: 200% 100%;
  animation: shimmer 1.2s linear infinite;
  z-index: 2;
  transition: opacity 0.2s;
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.art-card-img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  will-change: opacity;
  transition:
    opacity 0.4s ease,
    transform 0.5s var(--ease);
}
.art-card-img.loaded {
  opacity: 1;
}
.art-card:hover .art-card-img {
  transform: scale(1.04);
}
.art-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(13, 13, 13, 0.85) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3;
}
.art-card:hover .art-card-overlay {
  opacity: 1;
}
.overlay-badge {
  font-family: "Cinzel Decorative", cursive;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold);
  border: 1px solid rgba(245, 232, 168, 0.35);
  padding: 7px 16px;
  background: rgba(13, 13, 13, 0.5);
  backdrop-filter: blur(4px);
}
.art-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(13, 13, 13, 0.6);
  border-top: 1px solid rgba(245, 232, 168, 0.07);
}
.art-card-label {
  font-family: "IM Fell English SC", serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  color: rgba(245, 232, 168, 0.55);
  transition: color 0.25s;
}
.art-card:hover .art-card-label {
  color: rgba(245, 232, 168, 0.9);
}
.art-card-idx {
  font-family: "Cinzel Decorative", cursive;
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(245, 232, 168, 0.22);
}
.art-card.img-error {
  display: none;
}

.vtuber-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(32px, 7vw, 80px);
  align-items: center;
}
.big-quote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.5;
  opacity: 0.92;
  margin-bottom: 32px;
  padding-left: 20px;
  border-left: 2px solid rgba(232, 114, 114, 0.6);
}
.vtuber-text p {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.85;
  color: var(--cream);
  opacity: 0.65;
  margin-bottom: 20px;
}
.vtuber-links {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.vtuber-link {
  display: flex;
  align-items: center;
  padding: 11px 24px;
  min-height: 46px;
  border: 1px solid rgba(245, 232, 168, 0.25);
  font-family: "IM Fell English SC", serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--gold);
  text-decoration: none;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.25s;
}
.vtuber-link:hover {
  background: rgba(245, 232, 168, 0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.vtuber-stats {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 20px);
}
.stat-box {
  padding: clamp(16px, 2.5vw, 24px) clamp(16px, 2.5vw, 28px);
  border: 1px solid rgba(245, 232, 168, 0.08);
  position: relative;
  transition:
    border-color 0.3s,
    transform 0.3s var(--ease);
}
.stat-box:hover {
  border-color: rgba(245, 232, 168, 0.25);
  transform: translateX(-4px);
}
.stat-box::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 20px;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, rgba(143, 168, 50, 0.8), transparent);
}
.stat-num {
  font-family: "Cinzel Decorative", cursive;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--gold-light);
  display: block;
  margin-bottom: 6px;
  filter: drop-shadow(0 0 16px rgba(245, 232, 168, 0.3));
}
.stat-label {
  font-family: "IM Fell English SC", serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--cream);
  opacity: 0.5;
}
/* ── ABOUT ─────────────────────────────── */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
}

.about-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.about-img-wrap {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

/* ── Sparkle cluster A — top-right of image */
.about-gold-orb {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(245, 232, 168, 1);
  top: 6%;
  right: 14%;
  z-index: 4;
  pointer-events: none;
  animation: sparkClusterA 2.6s ease-in-out infinite;
  box-shadow:
    -28px  18px 0 0   rgba(240, 168, 192, 0.9),
     18px  44px 0 1px rgba(168, 212, 160, 0.75),
    -52px  62px 0 0   rgba(245, 232, 168, 0.8),
     38px  -8px 0 0   rgba(240, 168, 192, 0.65),
    -14px  96px 0 1px rgba(245, 232, 168, 0.5),
     62px  28px 0 0   rgba(168, 212, 160, 0.8),
    -36px 130px 0 0   rgba(240, 168, 192, 0.45),
     80px  55px 0 1px rgba(245, 232, 168, 0.6);
}
@keyframes sparkClusterA {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50%       { opacity: 1;   transform: scale(1.2); }
}

/* ── Sparkle cluster B — bottom-left of image */
.about-img-glow {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(240, 168, 192, 1);
  bottom: 18%;
  left: 6%;
  z-index: 4;
  pointer-events: none;
  animation: sparkClusterB 3.4s ease-in-out infinite 0.9s;
  box-shadow:
     22px -32px 0 0   rgba(245, 232, 168, 0.85),
    -12px  22px 0 1px rgba(168, 212, 160, 0.75),
     38px  12px 0 0   rgba(240, 168, 192, 0.9),
    -28px -18px 0 0   rgba(245, 232, 168, 0.6),
     54px  -6px 0 1px rgba(168, 212, 160, 0.55),
     16px  54px 0 0   rgba(245, 232, 168, 0.7),
    -44px  48px 0 0   rgba(240, 168, 192, 0.5),
     70px -40px 0 1px rgba(245, 232, 168, 0.4);
}
@keyframes sparkClusterB {
  0%, 100% { opacity: 0.25; transform: scale(0.7); }
  50%       { opacity: 1;    transform: scale(1.3); }
}

/* ── 4-pointed star accents via pseudo */
.about-img-wrap::before,
.about-img-wrap::after {
  content: "✦";
  position: absolute;
  font-size: 18px;
  z-index: 5;
  pointer-events: none;
  line-height: 1;
}
.about-img-wrap::before {
  top: 4%;
  left: 18%;
  color: rgba(240, 168, 192, 0.7);
  animation: starSpin 4s ease-in-out infinite;
}
.about-img-wrap::after {
  bottom: 10%;
  right: 10%;
  color: rgba(168, 212, 160, 0.65);
  font-size: 13px;
  animation: starSpin 5s ease-in-out infinite 1.2s;
}
@keyframes starSpin {
  0%, 100% { opacity: 0.2; transform: scale(0.7) rotate(0deg); }
  50%       { opacity: 1;   transform: scale(1.1) rotate(180deg); }
}

@keyframes aboutFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

.about-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  animation: aboutFloat 8s ease-in-out infinite;
  filter:
    drop-shadow(0 0 3vw rgba(240, 168, 192, 0.22))
    drop-shadow(0 0 7vw rgba(245, 232, 168, 0.1));
}

/* ── Tags */
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.about-tag {
  font-family: "IM Fell English SC", serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  opacity: 0.55;
  border: 1px solid rgba(245, 232, 168, 0.18);
  padding: 7px 16px;
  transition: opacity 0.3s, border-color 0.3s, background 0.3s;
}
.about-tag:hover {
  opacity: 1;
  border-color: rgba(245, 232, 168, 0.5);
  background: rgba(245, 232, 168, 0.04);
}
.about-tag--open {
  border-color: rgba(240, 168, 192, 0.45);
  color: rgba(240, 168, 192, 0.9);
  opacity: 1;
  background: rgba(240, 168, 192, 0.05);
}

/* ── Right column */
.about-eyebrow {
  font-family: "IM Fell English SC", serif;
  font-size: 12px;
  letter-spacing: 6px;
  color: var(--green-deep);
  opacity: 0.9;
  margin-bottom: 14px;
}
.about-name {
  font-family: "Cinzel Decorative", cursive;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
  line-height: 1;
  margin: 0;
  background: linear-gradient(135deg, var(--pink) 0%, var(--gold-light) 55%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: clamp(2px, 0.5vw, 5px);
}
.about-divider {
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, var(--pink), rgba(245, 232, 168, 0.3), transparent);
  margin: 28px 0;
}
.about-bio {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(17px, 1.9vw, 22px);
  line-height: 2;
  font-weight: 300;
  color: var(--cream);
  opacity: 0.85;
}
.about-bio strong { color: var(--gold); opacity: 1; }

/* ── Social buttons */
.about-social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.about-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  min-height: 48px;
  border: 1px solid rgba(245, 232, 168, 0.18);
  font-family: "IM Fell English SC", serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(245, 232, 168, 0.55);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  transition: color 0.28s, border-color 0.28s, background 0.28s, transform 0.25s, box-shadow 0.28s;
}
.about-social-svg { width: 14px; height: 14px; display: block; flex-shrink: 0; }
.about-social-btn--twitch:hover {
  background: rgba(145, 70, 255, 0.85); border-color: rgba(145, 70, 255, 1);
  color: #fff; transform: translateY(-2px); box-shadow: 0 6px 22px rgba(145, 70, 255, 0.3);
}
.about-social-btn--x:hover {
  background: rgba(240, 168, 192, 0.88); border-color: rgba(240, 168, 192, 1);
  color: #0d0d0d; transform: translateY(-2px); box-shadow: 0 6px 22px rgba(240, 168, 192, 0.25);
}
.about-social-btn--vgen:hover {
  background: rgba(143, 168, 50, 0.88); border-color: rgba(143, 168, 50, 1);
  color: #0d0d0d; transform: translateY(-2px); box-shadow: 0 6px 22px rgba(143, 168, 50, 0.25);
}

.trello-embed-wrap {
  border: 1px solid rgba(245, 232, 168, 0.1);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.trello-embed-frame {
  width: 100%;
  height: 680px;
  border: none;
  display: block;
}

.trello-embed-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 16px;
  border-top: 1px solid rgba(245, 232, 168, 0.08);
  background: rgba(0, 0, 0, 0.3);
}

.trello-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "IM Fell English SC", serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(245, 232, 168, 0.45);
  text-decoration: none;
  transition: color 0.25s;
}
.trello-open-btn:hover {
  color: var(--gold);
}


.queue-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 24px);
}
.queue-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.queue-col-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.queue-col-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.queue-col-dot--done {
  background: rgba(143, 168, 50, 0.8);
  box-shadow: 0 0 8px rgba(143, 168, 50, 0.5);
}
.queue-col-dot--progress {
  background: rgba(232, 114, 114, 0.8);
  box-shadow: 0 0 8px rgba(232, 114, 114, 0.5);
  animation: dotBlink 2s ease-in-out infinite;
}
.queue-col-dot--planned {
  background: rgba(245, 232, 168, 0.35);
}
@keyframes dotBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
.queue-col-title {
  font-family: "Cinzel Decorative", cursive;
  font-size: clamp(11px, 1.3vw, 13px);
  letter-spacing: 4px;
  color: var(--cream);
  opacity: 0.65;
}
.queue-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.queue-card {
  padding: 18px;
  border: 1px solid rgba(245, 232, 168, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition:
    border-color 0.25s,
    transform 0.25s var(--ease);
}
.queue-card:hover {
  border-color: rgba(245, 232, 168, 0.22);
  transform: translateX(4px);
}
.queue-card--active {
  border-color: rgba(232, 114, 114, 0.15);
  background: rgba(232, 114, 114, 0.04);
}
.queue-card-tag {
  font-family: "IM Fell English SC", serif;
  font-size: 11px;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 10px;
}
.queue-card-tag--done {
  color: rgba(143, 168, 50, 0.85);
}
.queue-card-tag--progress {
  color: rgba(232, 114, 114, 0.85);
}
.queue-card-tag--planned {
  color: rgba(245, 232, 168, 0.4);
}
.queue-card-text {
  font-family: "IM Fell English SC", serif;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--cream);
  opacity: 0.75;
  line-height: 1.55;
}

.twitch-live-banner {
  margin-bottom: 32px;
  border: 1px solid rgba(145, 70, 255, 0.35);
  background: rgba(145, 70, 255, 0.08);
  padding: 14px 20px;
  animation: livePulseGlow 3s ease-in-out infinite;
}
@keyframes livePulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(145, 70, 255, 0);
    border-color: rgba(145, 70, 255, 0.35);
  }
  50% {
    box-shadow: 0 0 24px rgba(145, 70, 255, 0.18);
    border-color: rgba(145, 70, 255, 0.65);
  }
}
.live-banner-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #9146ff;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(145, 70, 255, 0.8);
  animation: liveDotBlink 1.4s ease-in-out infinite;
}
@keyframes liveDotBlink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
}
.live-label {
  font-family: "Cinzel Decorative", cursive;
  font-size: 12px;
  letter-spacing: 4px;
  color: #9146ff;
  flex-shrink: 0;
}
.live-divider {
  color: rgba(245, 232, 168, 0.25);
}
.live-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-style: italic;
  color: var(--cream);
  opacity: 0.8;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.live-watch-btn {
  font-family: "IM Fell English SC", serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: #fff;
  background: #9146ff;
  border: none;
  padding: 9px 20px;
  text-decoration: none;
  flex-shrink: 0;
  transition:
    background 0.25s,
    transform 0.2s,
    box-shadow 0.25s;
}
.live-watch-btn:hover {
  background: #7b2ff7;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(145, 70, 255, 0.45);
}

.twitch-embed-wrap {
  margin: 4px 0 8px;
  border: 1px solid rgba(145, 70, 255, 0.25);
  overflow: hidden;
  background: #0e0e10;
}
.twitch-embed-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.twitch-embed-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.twitch-embed-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(145, 70, 255, 0.15);
}
.twitch-embed-status {
  display: flex;
  align-items: center;
  gap: 8px;
}
.twitch-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 232, 168, 0.3);
  flex-shrink: 0;
}
.twitch-status-dot--live {
  background: #9146ff;
  box-shadow: 0 0 6px rgba(145, 70, 255, 0.8);
  animation: liveDotBlink 1.4s ease-in-out infinite;
}
.twitch-status-dot--offline {
  background: rgba(245, 232, 168, 0.2);
}
.twitch-status-text {
  font-family: "IM Fell English SC", serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(245, 232, 168, 0.5);
}
.twitch-status-text--live {
  color: #9146ff;
}
.twitch-embed-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "IM Fell English SC", serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(145, 70, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.twitch-embed-cta:hover {
  color: #9146ff;
}

.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: clamp(60px, 8vw, 100px);
  border-top: 1px solid rgba(245, 232, 168, 0.06);
}
.footer-geo {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.footer-geo--1 {
  top: 0;
  left: -100px;
  width: clamp(250px, 35vw, 420px);
  height: clamp(250px, 35vw, 420px);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background: linear-gradient(
    135deg,
    rgba(240, 168, 192, 0.06) 0%,
    transparent 70%
  );
  animation: footerGeoFloat 12s ease-in-out infinite;
}
.footer-geo--2 {
  top: 0;
  right: -80px;
  width: clamp(220px, 30vw, 380px);
  height: clamp(220px, 30vw, 380px);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  background: linear-gradient(
    225deg,
    rgba(143, 168, 50, 0.06) 0%,
    transparent 70%
  );
  animation: footerGeoFloat 15s ease-in-out infinite 2s;
}
.footer-geo--3 {
  bottom: 0;
  left: 30%;
  width: clamp(150px, 20vw, 280px);
  height: clamp(150px, 20vw, 280px);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: rgba(245, 232, 168, 0.025);
  animation: footerGeoFloat 18s ease-in-out infinite 4s;
}
.footer-geo--4 {
  top: 30%;
  right: 15%;
  width: clamp(100px, 12vw, 180px);
  height: clamp(100px, 12vw, 180px);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: rgba(232, 114, 114, 0.03);
  animation: footerGeoFloat 10s ease-in-out infinite 1s;
}
@keyframes footerGeoFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.8;
  }
  33% {
    transform: translateY(-20px) rotate(2deg);
    opacity: 1;
  }
  66% {
    transform: translateY(12px) rotate(-1deg);
    opacity: 0.6;
  }
}

.footer-contact-section {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) var(--inner-pad) clamp(48px, 6vw, 80px);
}
.footer-contact-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.footer-contact-title-wrap {
  flex-shrink: 0;
}
.footer-contact-title {
  font-family: "Cinzel Decorative", cursive;
  font-weight: 900;
  font-size: clamp(32px, 6vw, 76px);
  line-height: 1;
  background: linear-gradient(
    135deg,
    var(--pink) 0%,
    var(--gold-light) 45%,
    var(--green) 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGradShift 7s ease-in-out infinite;
  margin-bottom: 12px;
  letter-spacing: clamp(1px, 0.3vw, 3px);
}
@keyframes titleGradShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.footer-contact-sub {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 22px);
  letter-spacing: 4px;
  color: rgba(245, 232, 168, 0.4);
}
.footer-contact-desc {
  max-width: 380px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--cream);
  opacity: 0.6;
  line-height: 1.8;
  align-self: flex-end;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.footer-input,
.footer-textarea {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  user-select: auto;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(245, 232, 168, 0.1);
  color: var(--cream);
  font-family: "IM Fell English SC", serif;
  font-size: 13px;
  letter-spacing: 3px;
  padding: 18px 20px;
  outline: none;
  resize: none;
  display: block;
  width: 100%;
  transition:
    border-color 0.3s,
    background 0.3s,
    box-shadow 0.3s;
}
.footer-input::placeholder,
.footer-textarea::placeholder {
  color: rgba(245, 232, 168, 0.25);
}
.footer-input:focus,
.footer-textarea:focus {
  border-color: rgba(245, 232, 168, 0.4);
  background: rgba(255, 255, 255, 0.045);
  box-shadow:
    0 0 0 3px rgba(245, 232, 168, 0.04),
    0 0 20px rgba(245, 232, 168, 0.03);
}
.footer-textarea {
  min-height: 160px;
}
.footer-submit {
  background: rgba(245, 232, 168, 0.06);
  border: 1px solid rgba(245, 232, 168, 0.3);
  color: var(--gold);
  font-family: "Cinzel Decorative", cursive;
  font-size: 13px;
  letter-spacing: 6px;
  padding: 18px 40px;
  cursor: pointer;
  min-height: 58px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.footer-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(245, 232, 168, 0.06),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.footer-submit:hover {
  background: rgba(245, 232, 168, 0.12);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(245, 232, 168, 0.1);
}
.footer-submit:hover::before {
  transform: translateX(100%);
}
.footer-submit.submitted {
  background: rgba(143, 168, 50, 0.12);
  border-color: rgba(143, 168, 50, 0.6);
  color: var(--green);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(245, 232, 168, 0.07);
}
.footer-bottom-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(36px, 4vw, 56px) var(--inner-pad);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.footer-sitemap-title {
  font-family: "Cinzel Decorative", cursive;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.footer-sitemap-links {
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  flex-wrap: wrap;
}
.footer-sitemap-links a {
  font-family: "IM Fell English SC", serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: rgba(245, 232, 168, 0.4);
  text-decoration: none;
  transition:
    color 0.25s,
    transform 0.25s;
  display: inline-block;
  padding: 3px 0;
}
.footer-sitemap-links a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}
.footer-bottom-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(245, 232, 168, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 232, 168, 0.4);
  text-decoration: none;
  transition: all 0.35s var(--ease);
  flex-shrink: 0;
}
.footer-social-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.footer-social-icon--twitch:hover {
  background: rgba(145, 70, 255, 0.15);
  border-color: rgba(145, 70, 255, 0.5);
  color: #9146ff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 24px rgba(145, 70, 255, 0.25);
}
.footer-social-icon--x:hover {
  background: rgba(240, 168, 192, 0.15);
  border-color: rgba(240, 168, 192, 0.5);
  color: var(--pink);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 24px rgba(240, 168, 192, 0.2);
}
.footer-social-icon--vgen:hover {
  background: rgba(143, 168, 50, 0.15);
  border-color: rgba(143, 168, 50, 0.5);
  color: var(--green);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 24px rgba(143, 168, 50, 0.2);
}
.footer-copy {
  font-family: "IM Fell English SC", serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(245, 232, 168, 0.22);
  text-align: right;
  line-height: 1.9;
}
.footer-line {
  max-width: 1120px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(245, 232, 168, 0.12),
    transparent
  );
}
.footer-credits {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px var(--inner-pad);
  font-family: "IM Fell English SC", serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: rgba(245, 232, 168, 0.18);
  text-align: center;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.93);
  backdrop-filter: blur(10px);
  cursor: zoom-out;
  z-index: 901;
}
.lightbox-close {
  position: fixed;
  top: clamp(12px, 3vw, 28px);
  right: clamp(12px, 3vw, 36px);
  z-index: 920;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(40, 36, 33, 0.85);
  border: 1px solid var(--border);
  color: var(--gold);
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.3s var(--ease);
}
.lightbox-close:hover {
  background: rgba(245, 232, 168, 0.08);
  border-color: var(--border-h);
  transform: rotate(90deg);
}
.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 920;
  width: clamp(44px, 5vw, 56px);
  height: clamp(64px, 7vw, 84px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(40, 36, 33, 0.7);
  border: 1px solid var(--border);
  color: var(--gold);
  transition:
    background 0.25s var(--ease),
    border-color 0.25s,
    transform 0.25s var(--ease);
}
.lightbox-arrow:hover {
  background: rgba(245, 232, 168, 0.08);
  border-color: var(--border-h);
}
.lightbox-prev {
  left: clamp(8px, 2vw, 28px);
}
.lightbox-prev:hover {
  transform: translateY(-50%) translateX(-3px);
}
.lightbox-next {
  right: clamp(8px, 2vw, 28px);
}
.lightbox-next:hover {
  transform: translateY(-50%) translateX(3px);
}
.lightbox-inner {
  position: relative;
  z-index: 910;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.lightbox-img-wrap {
  pointer-events: auto;
}
.lightbox-img {
  max-width: min(78vw, 90vw);
  max-height: min(76vh, 76svh);
  width: auto;
  height: auto;
  display: block;
  border: 1px solid var(--border);
  opacity: 0;
  transform: scale(0.97);
  transition:
    opacity 0.35s ease,
    transform 0.35s var(--ease);
}
.lightbox-img.lb-loaded {
  opacity: 1;
  transform: scale(1);
}
.lightbox-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  pointer-events: none;
}
.lightbox-label {
  font-family: "IM Fell English SC", serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: rgba(245, 232, 168, 0.55);
}
.lightbox-counter {
  font-family: "Cinzel Decorative", cursive;
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(245, 232, 168, 0.3);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .section-grid {
    columns: 2;
  }
  .queue-board {
    gap: 16px;
  }
  .ill-carousel-slide {
    width: 65%;
  }
}

@media (max-width: 768px) {
  .char-image {
    height: 65svh;
  }
  .home-side-left {
    top: 30%;
    left: 12px;
  }
  .name-display {
    top: 72%;
  }
  .home-gallery-cta {
    bottom: 44px;
  }
  .ill-carousel-slide {
    width: 82%;
  }
  .ill-hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .ill-hero-deco {
    display: none;
  }
  .comm-layout {
    grid-template-columns: 1fr;
  }
  .comm-addon-grid {
    grid-template-columns: 1fr;
  }
  .vtuber-layout {
    grid-template-columns: 1fr;
  }
  .vtuber-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .stat-box {
    flex: 1 1 calc(50% - 10px);
    min-width: 130px;
  }
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}
  .about-divider {
    margin: 18px auto;
  }
  .about-social-row {
    justify-content: center;
  }
  .queue-board {
    grid-template-columns: 1fr 1fr;
  }
  .section-grid {
    columns: 2;
    column-gap: 10px;
  }
  .gallery-hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .gallery-count-ring {
    display: none;
  }
  .footer-contact-header {
    flex-direction: column;
    gap: 20px;
  }
  .footer-form-row {
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner {
    grid-template-columns: 1fr;
  }
  .footer-bottom-right {
    align-items: flex-start;
  }
  .footer-copy {
    text-align: left;
  }
}

@media (max-width: 540px) {
  .char-image {
    height: 62svh;
    top: 42%;
  }
  .home-side-left {
    top: 24%;
    left: 8px;
  }
  .home-menu-item img {
    height: 28px;
  }
  .home-gallery-cta {
    bottom: 44px;
    right: 10px;
  }
  .orb-ring,
  .orb-main,
  .orb-inner {
    display: none;
  }
  .ill-carousel-slide {
    width: 90%;
  }
  .ill-carousel-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-grid {
    columns: 1;
  }
  .queue-board {
    grid-template-columns: 1fr;
  }
  .stat-box {
    flex: 1 1 100%;
  }
  .filter-bar {
    gap: 0;
  }
  .filter-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
  .lightbox-img {
    max-width: 94vw;
    max-height: 70svh;
  }
}

@media (max-width: 380px) {
  .page-header-title {
    letter-spacing: 1px;
  }
  .nav-drop-list li a {
    font-size: 13px;
  }
  .home-side-left {
    display: none;
  }
  .scroll-hint {
    display: none;
  }
}
.ill-autoslide-section {
  position: relative;
}
.ill-autoslide-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.ill-autoslide-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: autoSlide 14s linear infinite;
}
.ill-autoslide-track img {
  height: clamp(220px, 32vw, 420px);
  width: auto;
  object-fit: cover;
  aspect-ratio: 3/4;
  border: 1px solid rgba(245, 232, 168, 0.08);
  display: block;
  flex-shrink: 0;
}
@keyframes autoSlide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ill-autoslide-track:hover {
  animation-play-state: paused;
}

.ill-slide-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  justify-content: center;
}
.ill-slide-btn {
  font-family: "Cinzel Decorative", cursive;
  font-size: 13px;
  letter-spacing: 4px;
  padding: 18px 0;
  width: 50%;
  max-width: 320px;
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(245, 232, 168, 0.3);
  color: var(--gold);
  background: rgba(255, 255, 255, 0.02);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.ill-slide-btn:hover {
  background: rgba(245, 232, 168, 0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 232, 168, 0.1);
}
.ill-slide-btn--vgen {
  border-color: rgba(143, 168, 50, 0.4);
  color: var(--green);
}
.ill-slide-btn--vgen:hover {
  background: rgba(143, 168, 50, 0.1);
  border-color: var(--green-deep);
  box-shadow: 0 8px 24px rgba(143, 168, 50, 0.15);
  color: var(--lime);
}
/* ── 1024px ───────────────────────────── */
@media (max-width: 1024px) {
  .section-grid { columns: 2; }
  .queue-board { gap: 16px; }
  .ill-carousel-slide { width: 65%; }
  .about-content { gap: clamp(20px, 4vw, 40px); }
}

/* ── 768px ────────────────────────────── */
@media (max-width: 768px) {

  /* HOME */
  .char-image { height: 60svh; }
  .home-side-left {
    top: auto;
    bottom: clamp(80px, 14vh, 130px);
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    gap: clamp(12px, 4vw, 28px);
    justify-content: center;
  }
  .home-menu-item img { height: clamp(36px, 7vw, 52px); }
  .name-display { top: 68%; }
  .home-gallery-cta {
    bottom: clamp(16px, 4vh, 36px);
    right: clamp(12px, 4vw, 28px);
  }
  .home-gallery-cta img { height: clamp(44px, 9vw, 72px); }

  /* ABOUT */
  .about-content {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }
  .about-img-wrap {
    min-height: 320px;
    max-height: 55vw;
  }
  .about-img { max-height: 55vw; }
  .about-name { font-size: clamp(28px, 6vw, 44px); }
  .about-divider { margin: 18px 0; }
  .about-social-row { justify-content: flex-start; }
  .about-tags { justify-content: flex-start; }

  /* ILLUSTRATION */
  .ill-carousel-slide { width: 82%; }
  .ill-hero { flex-direction: column; align-items: flex-start; }
  .ill-hero-deco { display: none; }

  /* COMMISSIONS */
  .comm-layout { grid-template-columns: 1fr; }
  .comm-addon-grid { grid-template-columns: 1fr; }

  /* VTUBER */
  .vtuber-layout { grid-template-columns: 1fr; }
  .vtuber-stats { flex-direction: row; flex-wrap: wrap; }
  .stat-box { flex: 1 1 calc(50% - 10px); min-width: 130px; }

  /* QUEUE */
  .queue-board { grid-template-columns: 1fr 1fr; }
  .trello-embed-frame { height: 480px; }

  /* GALLERY */
  .section-grid { columns: 2; column-gap: 10px; }
  .gallery-hero { flex-direction: column; align-items: flex-start; }
  .gallery-count-ring { display: none; }

  /* FOOTER */
  .footer-contact-header { flex-direction: column; gap: 20px; }
  .footer-form-row { grid-template-columns: 1fr; }
  .footer-bottom-inner { grid-template-columns: 1fr; }
  .footer-bottom-right { align-items: flex-start; }
  .footer-copy { text-align: left; }
}

/* ── 540px ────────────────────────────── */
@media (max-width: 540px) {

  /* HOME */
  .char-image { height: 54svh; top: 40%; }
  .home-side-left {
    bottom: clamp(70px, 12vh, 110px);
    gap: clamp(10px, 3vw, 20px);
  }
  .home-menu-item img { height: 32px; }
  .home-gallery-cta { bottom: 12px; right: 10px; }
  .home-gallery-cta img { height: 44px; }
  .orb-ring, .orb-main, .orb-inner { display: none; }
  .name-display { top: 65%; }

  /* ABOUT */
  .about-img-wrap { min-height: 260px; }
  .about-img { max-height: 70vw; }
  .twitch-embed-wrap { margin: 0; }

  /* MISC */
  .ill-carousel-slide { width: 90%; }
  .ill-carousel-footer { flex-direction: column; align-items: flex-start; }
  .section-grid { columns: 1; }
  .queue-board { grid-template-columns: 1fr; }
  .stat-box { flex: 1 1 100%; }
  .filter-bar { gap: 0; }
  .filter-btn { padding: 8px 12px; font-size: 12px; }
  .lightbox-img { max-width: 94vw; max-height: 70svh; }
  .trello-embed-frame { height: 380px; }
}

/* ── 380px ────────────────────────────── */
@media (max-width: 380px) {
  .page-header-title { letter-spacing: 1px; }
  .nav-drop-list li a { font-size: 13px; }
  .home-side-left { display: none; }
  .scroll-hint { display: none; }
  .about-img-wrap { min-height: 220px; }
  .about-name { font-size: clamp(24px, 7vw, 36px); }
}

@media (max-width: 768px) {
  .trello-embed-frame { height: 480px; }
}
/* ── Responsive */
@media (max-width: 768px) {
  .about-content { grid-template-columns: 1fr; }
  .about-img-wrap { min-height: 380px; }
  .about-img { max-height: 60vw; }
}
