*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --black: #000;
  --white: #fff;
  --violet: #7b3fe4;
  --pearl: #b8c8ff;
  --chrome: #8090b0;
  --dim: #111;
  --dim2: #181818;
  --text-sm: #999;
}
html {
  scroll-behavior: smooth;
}
/* keep anchored section titles clear of the fixed navbar */
section[id] {
  scroll-margin-top: 84px;
}
body {
  background: var(--black);
  color: var(--white);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  cursor: crosshair;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 32px;
  height: 32px;
}
.nav-logo-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  letter-spacing: 5px;
  background: linear-gradient(135deg, #fff 30%, var(--pearl) 65%, var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--chrome);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--white);
}
.nav-cta {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  border: none;
  padding: 10px 22px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--violet);
  color: var(--white);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--pearl);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(68px, 9vw, 128px);
  line-height: 0.92;
}
.hero-title .l1 {
  display: block;
  color: var(--white);
}
.hero-title .l2 {
  display: block;
  background: linear-gradient(135deg, var(--pearl), var(--violet), #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .l3 {
  display: block;
  color: var(--white);
}
.hero-sub {
  margin-top: 36px;
  font-size: 13px;
  line-height: 2;
  color: var(--text-sm);
  max-width: 360px;
}
.hero-actions {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn-primary {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  border: none;
  padding: 15px 34px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--violet);
  color: var(--white);
}
.btn-ghost {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--chrome);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 15px 34px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-ghost:hover {
  color: var(--white);
  border-color: var(--white);
}

/* ── LOGO ANIMATION ── */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-circle {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotateSlow 30s linear infinite;
}
@keyframes rotateSlow {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.hero-number {
  position: absolute;
  bottom: 40px;
  right: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 200px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: -10px;
  pointer-events: none;
  user-select: none;
}

.logo-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  width: 320px;
  height: 320px;
  object-fit: contain;
  animation:
    floatUp 8s ease-in-out infinite,
    logoGlow 6s linear infinite;
}

@keyframes floatUp {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-22px);
  }
}

@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 40px rgba(184, 200, 255, 0.5))
      drop-shadow(0 0 80px rgba(123, 63, 228, 0.3));
  }
  25% {
    filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 55px rgba(200, 170, 255, 0.6))
      drop-shadow(0 0 100px rgba(160, 80, 255, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 65px rgba(170, 210, 255, 0.6))
      drop-shadow(0 0 110px rgba(80, 140, 255, 0.4));
  }
  75% {
    filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 55px rgba(210, 170, 255, 0.6))
      drop-shadow(0 0 100px rgba(180, 60, 255, 0.4));
  }
  100% {
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 40px rgba(184, 200, 255, 0.5))
      drop-shadow(0 0 80px rgba(123, 63, 228, 0.3));
  }
}

/* sparkles around logo */
.sp {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: spTwinkle 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes spTwinkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.4);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

/* ── SECTION BASE ── */
.section {
  padding: 110px 60px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.sec-label {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--pearl);
  text-transform: uppercase;
  margin-bottom: 44px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.sec-label::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--pearl);
}
.sec-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 0.95;
  margin-bottom: 40px;
}

/* ── MARQUEE ── */
.marquee-strip {
  padding: 0 60px;
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
  height: 52px;
  display: flex;
  align-items: center;
}
.marquee-inner {
  font-family: "Bebas Neue", sans-serif;
  font-size: 12px;
  letter-spacing: 10px;
  color: rgba(255, 255, 255, 0.07);
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── ABOUT ── */
#about {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  font-size: 14px;
  line-height: 2;
  color: var(--text-sm);
  margin-bottom: 18px;
}
.about-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--text-sm);
  line-height: 1.6;
}
.about-feature::before {
  content: "→";
  color: var(--pearl);
  flex-shrink: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255, 255, 255, 0.05);
}
.stat-box {
  background: var(--black);
  padding: 36px 28px;
}
.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 56px;
  line-height: 1;
  background: linear-gradient(135deg, var(--pearl), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-lbl {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--chrome);
  text-transform: uppercase;
  margin-top: 6px;
}

/* ── ARTISTS ── */
#artists {
  background: var(--dim);
}
.artists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.artist-card {
  background: var(--black);
  padding: 44px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s;
  text-align: center;
  display: block;
  text-decoration: none;
  color: inherit;
}
.artist-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--pearl), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.artist-card:hover::before {
  transform: scaleX(1);
}
.artist-card:hover {
  transform: translateY(-4px);
}
a.artist-card {
  cursor: pointer;
}
.artist-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  color: var(--black);
  background: linear-gradient(135deg, var(--violet), var(--pearl));
  margin-left: auto;
  margin-right: auto;
}
.artist-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.artist-role {
  font-family: "Space Mono", monospace;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--pearl);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.artist-bio {
  font-size: 12px;
  line-height: 1.8;
  color: var(--text-sm);
}
.artist-ig {
  display: block;
  margin-top: 20px;
  text-align: center;
  font-family: "Space Mono", monospace;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--chrome);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}
.artist-ig:hover {
  color: var(--pearl);
}

/* ── BOOKING ── */
#booking {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.booking-info p {
  font-size: 14px;
  line-height: 2;
  color: var(--text-sm);
  margin-bottom: 14px;
}
.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.info-list li {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--text-sm);
  line-height: 1.6;
}
.info-list li::before {
  content: "→";
  color: var(--pearl);
  flex-shrink: 0;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-family: "Space Mono", monospace;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--chrome);
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dim);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 13px 15px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pearl);
}
.form-group select option {
  background: var(--black);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-note {
  font-size: 11px;
  color: var(--text-sm);
  line-height: 1.6;
  margin-top: 4px;
}
.file-upload-area {
  border: 1px dashed rgba(255, 255, 255, 0.15);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s;
  position: relative;
}
.file-upload-area:hover {
  border-color: var(--pearl);
}
.file-upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.file-upload-area p {
  font-size: 12px;
  color: var(--text-sm);
}
.file-upload-area .upload-icon {
  font-size: 24px;
  margin-bottom: 8px;
}
.submit-btn {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  border: none;
  padding: 17px 38px;
  cursor: pointer;
  margin-top: 6px;
  transition: all 0.3s;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.submit-btn:hover {
  background: var(--violet);
  color: var(--white);
}
.submit-btn:disabled {
  cursor: progress;
}
/* Loading spinner inside the submit button */
.btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
}
.submit-btn.loading .btn-label {
  display: none;
}
.submit-btn.loading .btn-spinner {
  display: inline-block;
}

/* Preferred contact: method dropdown + ID input side by side */
.contact-method-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.contact-method-row select {
  flex: 0 0 130px;
}
.contact-method-row input {
  flex: 1 1 0%;
  min-width: 0;
}
.contact-method-row.method-email input {
  display: none;
}

/* ── FAQ ── */
#faq {
  background: var(--dim);
}
.faq-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 56px;
}
.faq-col-title {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--pearl);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  text-align: left;
  padding: 22px 0;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.3s;
}
.faq-q:hover {
  color: var(--pearl);
}
.faq-q .arr {
  color: var(--chrome);
  transition: transform 0.3s;
  flex-shrink: 0;
  font-size: 18px;
}
.faq-item.open .faq-q .arr {
  transform: rotate(45deg);
  color: var(--pearl);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s,
    padding 0.4s;
  font-size: 13px;
  line-height: 2;
  color: var(--text-sm);
}
.faq-item.open .faq-a {
  max-height: 1200px;
  padding-bottom: 22px;
}

/* ── AFTERCARE ── */
#aftercare {
  background: var(--black);
}
.aftercare-sections {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.care-block {
  background: var(--dim);
  padding: 36px 28px;
}
.care-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 64px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  margin-bottom: -12px;
}
.care-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.care-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.care-list li {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-sm);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.care-list li::before {
  content: "—";
  color: var(--pearl);
  flex-shrink: 0;
  font-size: 10px;
  margin-top: 2px;
}
.care-warn {
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(123, 63, 228, 0.08);
  border-left: 2px solid var(--violet);
}
.care-warn p {
  font-size: 11px;
  color: rgba(184, 200, 255, 0.7);
  line-height: 1.7;
}
.body-parts {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.body-part {
  background: var(--dim);
  padding: 24px 22px;
}
.body-part-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--pearl);
}
.body-part p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--text-sm);
}

/* ── GUEST / JOIN ── */
#join {
  background: var(--dim);
}
.join-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.join-text p {
  font-size: 14px;
  line-height: 2;
  color: var(--text-sm);
  margin-bottom: 14px;
}
.join-reqs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 36px;
}
.join-reqs li {
  font-size: 13px;
  color: var(--text-sm);
  display: flex;
  gap: 12px;
}
.join-reqs li::before {
  content: "◆";
  color: var(--violet);
  font-size: 8px;
  margin-top: 4px;
  flex-shrink: 0;
}
.join-bg {
  font-family: "Bebas Neue", sans-serif;
  font-size: 140px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.02);
  letter-spacing: -5px;
  user-select: none;
}

/* ── FOOTER ── */
footer {
  background: var(--dim);
  padding: 72px 60px 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 52px;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-logo-icon {
  width: 28px;
  height: 28px;
}
.footer-logo-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 5px;
  background: linear-gradient(135deg, #fff, var(--pearl), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-brand p {
  font-size: 12px;
  line-height: 1.9;
  color: var(--text-sm);
  max-width: 260px;
}
.footer-col h4 {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col ul a {
  font-size: 12px;
  color: var(--text-sm);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col ul a:hover {
  color: var(--white);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-bottom p {
  font-family: "Space Mono", monospace;
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.18);
  text-transform: uppercase;
}
.social-links {
  display: flex;
  gap: 18px;
}
.social-links a {
  font-family: "Space Mono", monospace;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--chrome);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}
.social-links a:hover {
  color: var(--pearl);
}

/* ── LANG SWITCHER ── */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0;
  margin-right: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
}
.lang-btn {
  font-family: "Space Mono", monospace;
  font-size: 9px;
  letter-spacing: 2px;
  padding: 7px 12px;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--chrome);
  transition: all 0.25s;
  text-transform: uppercase;
}
.lang-btn.active {
  background: var(--white);
  color: var(--black);
}
.lang-btn:hover:not(.active) {
  color: var(--white);
}

/* Hide/show content by language */
[data-en],
[data-zh] {
  display: inline;
}
body.lang-en [data-zh] {
  display: none !important;
}
body.lang-en [data-en] {
  display: inline !important;
}
body.lang-zh [data-en] {
  display: none !important;
}
body.lang-zh [data-zh] {
  display: inline !important;
}

/* English-friendly badge */
.en-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Space Mono", monospace;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--pearl);
  border: 1px solid rgba(184, 200, 255, 0.3);
  padding: 5px 12px;
  margin-top: 14px;
  text-transform: uppercase;
}
.en-badge::before {
  content: "●";
  font-size: 6px;
  color: var(--pearl);
}

/* ── NEWS ── */
#news {
  background: var(--black);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.news-card {
  background: var(--dim);
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    background 0.3s;
  cursor: pointer;
}
.news-card:hover {
  transform: translateY(-4px);
  background: #1e1e1e;
}
.news-card::after {
  content: "→";
  position: absolute;
  bottom: 28px;
  right: 28px;
  font-family: "Space Mono", monospace;
  font-size: 12px;
  color: var(--pearl);
  opacity: 0;
  transition: opacity 0.3s;
}
.news-card:hover::after {
  opacity: 1;
}
.news-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--pearl), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.news-card:hover::before {
  transform: scaleX(1);
}
.news-badge {
  display: inline-block;
  margin-bottom: 12px;
  font-family: "Space Mono", monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
}
.news-badge.badge-promo {
  background: var(--violet);
  color: #fff;
}
.news-badge.badge-guest {
  color: var(--pearl);
  border: 1px solid var(--pearl);
}
.news-badge.badge-event {
  color: #f0c040;
  border: 1px solid #f0c040;
}
.news-badge.badge-info {
  color: var(--chrome);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.news-date {
  font-family: "Space Mono", monospace;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--chrome);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.news-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 10px;
}
.news-desc {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-sm);
}
@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-card::after {
    opacity: 1;
  }
}
/* ── IG SLIDER ── */
.ig-portfolio-section {
  margin-top: 40px;
}
.ig-portfolio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.ig-portfolio-name {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--pearl);
  text-transform: uppercase;
}
.ig-portfolio-link {
  font-family: "Space Mono", monospace;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--chrome);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}
.ig-portfolio-link:hover {
  color: var(--pearl);
}

/* Official Instagram post embeds, cropped to show ONLY the photo/video,
     laid out as a uniform square grid.
     --ig-crop-top trims off the Instagram header (avatar / username / View
     profile). If a sliver of that bar still shows, raise it a few px;
     if the top of the tattoo gets clipped, lower it. */
.ig-embed-grid {
  --ig-crop-top: 54px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 6px;
}
.ig-crop {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--dim2);
}
/* pull the embed up so the header is clipped; the square wrapper hides
     the likes / caption / comment footer that sits below the image */
.ig-crop > .instagram-media {
  margin: calc(-1 * var(--ig-crop-top)) 0 0 0 !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.ig-crop iframe {
  width: 100% !important;
  min-width: 0 !important;
}
.ig-embed-soon {
  grid-column: 1 / -1;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  padding: 36px;
  text-align: center;
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--chrome);
  text-transform: uppercase;
}
.ig-embed-soon a {
  color: var(--pearl);
  text-decoration: none;
}
.ig-embed-soon a:hover {
  color: var(--violet);
}

/* On phones, a tall vertical stack of 7+ posts is a lot of scrolling.
     Turn each artist's grid into a horizontal swipe carousel: one post per
     view (next one peeking to signal it scrolls), snapping as you swipe. */
@media (max-width: 700px) {
  .ig-embed-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    padding-bottom: 4px;
  }
  .ig-embed-grid::-webkit-scrollbar {
    display: none;
  } /* WebKit */
  .ig-embed-grid > .ig-crop {
    flex: 0 0 86%;
    scroll-snap-align: center;
  }
  .ig-embed-grid > .ig-embed-soon {
    flex: 0 0 100%;
  }
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav {
    padding: 14px 20px;
  }
  section[id] {
    scroll-margin-top: 68px;
  }
  .nav-links {
    display: none;
  }
  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 72px;
  }
  .hero-left {
    padding: 48px 20px 28px;
  }
  .hero-right {
    height: 260px;
  }
  .section {
    padding: 60px 20px;
  }
  #about,
  #booking,
  .join-inner,
  .faq-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .artists-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  .aftercare-sections {
    grid-template-columns: 1fr 1fr;
  }
  .body-parts {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-card.news-featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .join-bg {
    font-size: 80px;
  }
  .sec-title {
    font-size: clamp(32px, 8vw, 56px);
  }
  .hero-title {
    font-size: clamp(52px, 13vw, 96px);
  }
  .faq-cols {
    grid-template-columns: 1fr;
  }
}

/* ── MOBILE NAV (漢堡選單) ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  backdrop-filter: blur(20px);
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  letter-spacing: 4px;
  color: var(--white);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  width: 80%;
  text-align: center;
  transition: color 0.2s;
}
.mobile-menu a:hover {
  color: var(--pearl);
}
.mobile-menu .menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: var(--chrome);
  cursor: pointer;
  background: none;
  border: none;
  font-family: "Space Mono", monospace;
}
.mobile-menu .menu-cta {
  margin-top: 24px;
  font-family: "Space Mono", monospace;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black) !important;
  background: var(--white);
  padding: 14px 36px !important;
  border-bottom: none !important;
  font-size: 11px !important;
}
.mobile-menu .menu-lang {
  display: flex;
  gap: 0;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  overflow: hidden;
}
.mobile-menu .menu-lang button {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  letter-spacing: 3px;
  padding: 14px 32px;
  background: transparent;
  border: none;
  color: var(--chrome);
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.25s;
  min-width: 80px;
}
.mobile-menu .menu-lang button.active {
  background: var(--white);
  color: var(--black);
}
.mobile-menu .menu-lang button:hover:not(.active) {
  color: var(--white);
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  /* IG 作品滑動 — 手機專屬優化 */
  .ig-slide {
    flex: 0 0 200px;
    height: 200px;
  }
  .ig-arrow {
    display: none;
  }
  /* 在 section 內不佔太多垂直空間 */
  .ig-portfolio-section {
    margin-top: 28px;
  }
  .ig-slider {
    gap: 3px;
    padding-bottom: 4px;
  }

  /* Artist cards 手機版緊湊 */
  .artist-card {
    padding: 28px 20px;
  }
  .artist-name {
    font-size: 26px;
  }
  .artist-bio {
    font-size: 11px;
  }

  /* Booking form */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* About stats */
  .stat-box {
    padding: 24px 18px;
  }
  .stat-num {
    font-size: 44px;
  }

  /* Footer */
  footer {
    padding: 56px 20px 32px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* News */
  .news-card {
    padding: 28px 22px;
  }

  /* Aftercare */
  .care-block {
    padding: 24px 20px;
  }
  .care-num {
    font-size: 48px;
  }

  /* Hero logo */
  .logo-img {
    width: 200px;
    height: 200px;
  }
  .logo-wrap {
    width: 260px;
    height: 260px;
  }

  /* section label */
  .sec-label {
    font-size: 9px;
  }

  /* marquee */
  .marquee-strip {
    padding: 0 20px;
  }

  /* Lang switch — 手機版縮小顯示在 nav */
  .lang-switch {
    display: flex;
  }
  .lang-btn {
    font-size: 9px;
    padding: 6px 8px;
    letter-spacing: 1px;
  }
}

/* ── COMPONENT STYLES (moved from repeated inline styles) ── */
.ig-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.mly-slide {
  min-width: 100%;
}
.mly-slide img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.mly-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s;
}
.mly-dot.active {
  background: rgba(184, 200, 255, 0.9);
}
.artist-avatar.has-photo {
  background: none;
  padding: 0;
  overflow: hidden;
}
.artist-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}
.label-hint {
  color: var(--chrome);
  font-size: 10px;
}

/* Booking — date + time choice rows */
.time-choices {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.time-choice {
  display: flex;
  align-items: center;
  gap: 8px;
}
.time-choice .tc-num {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  color: var(--pearl);
  border: 1px solid rgba(184, 200, 255, 0.35);
  border-radius: 50%;
}
/* Re-enable native date picker (base .form-group input sets appearance:none) + dark UI */
.time-choice input[type="date"] {
  -webkit-appearance: auto;
  appearance: auto;
  color-scheme: dark;
  flex: 1 1 0%;
  min-width: 0;
}
.time-choice input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.85;
}
/* Time = separate hour + minute dropdowns (minute in 5-min steps) */
.time-choice select.tc-hour,
.time-choice select.tc-min {
  flex: 0 0 64px;
  color-scheme: dark;
  text-align: center;
  padding-left: 8px;
  padding-right: 8px;
}
.time-choice .tc-colon {
  flex: 0 0 auto;
  color: var(--chrome);
}

/* Booking — uploaded image previews */
.file-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.file-preview:empty {
  display: none;
}
.file-thumb {
  width: 86px;
  position: relative;
}
.file-thumb img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: var(--dim2);
}
.file-thumb-del {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(0, 0, 0, 0.72);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.file-thumb-del:hover {
  background: #e0245e;
  border-color: #e0245e;
}
.file-thumb-meta {
  display: flex;
  flex-direction: column;
  margin-top: 5px;
}
.file-thumb-name {
  font-size: 9px;
  color: var(--text-sm);
  max-width: 86px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.file-thumb-size {
  font-family: "Space Mono", monospace;
  font-size: 8px;
  letter-spacing: 1px;
  color: var(--chrome);
}

/* LINE follow-up tip box (modal) */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(3px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  width: 100%;
  max-width: 440px;
  background: var(--dim2);
  border: 1px solid rgba(184, 200, 255, 0.25);
  border-radius: 12px;
  padding: 34px 30px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  animation: modal-pop 0.28s ease;
}
@keyframes modal-pop {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.modal-icon {
  color: var(--pearl);
  font-size: 26px;
  margin-bottom: 12px;
}
.modal-title {
  font-family: "Space Mono", monospace;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 14px;
}
.modal-text {
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-sm);
  margin-bottom: 26px;
}
.modal-text strong {
  color: var(--pearl);
}
.modal-confirm {
  align-self: center;
  margin-top: 0;
}

/* ── SMALL PHONES ── */
@media (max-width: 560px) {
  /* dense aftercare lists need the full width to stay readable */
  .aftercare-sections {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 420px) {
  /* booking time picker: date keeps row 1; HH : MM wrap to row 2 instead of squashing */
  .time-choice {
    flex-wrap: wrap;
  }
  .time-choice .tc-date {
    flex: 1 1 calc(100% - 32px);
  }
}

/* ── DESKTOP READING SIZE ──
   The base sizes above are shared by mobile (which mostly doesn't override the
   body copy), so we bump readable text ~+2px for desktop only. Mobile (≤900px)
   never matches this query and keeps the compact sizes. Decorative mono labels
   and buttons are intentionally left at their small tracked sizes. */
@media (min-width: 901px) {
  /* Body paragraphs */
  .about-text p,
  .booking-info p,
  .join-text p {
    font-size: 16px;
  }
  /* Hero & modal copy */
  .hero-sub,
  .modal-text {
    font-size: 15px;
  }
  /* Feature / info lists */
  .about-feature,
  .info-list li,
  .join-reqs li {
    font-size: 15px;
  }
  /* Cards, bios & descriptions */
  .artist-bio,
  .care-list li,
  .body-part p,
  .news-desc {
    font-size: 14px;
  }
  .care-warn p {
    font-size: 13px;
  }
  /* FAQ */
  .faq-q {
    font-size: 16px;
  }
  .faq-a {
    font-size: 15px;
  }
  /* Booking form fields */
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 15px;
  }
  /* Artist IG portfolio: header label, handle link & "coming soon" placeholder */
  .ig-portfolio-name,
  .ig-embed-soon {
    font-size: 12px;
  }
  .ig-portfolio-link {
    font-size: 11px;
  }
}
