/* ========================================
   Lumina Artist Portfolio - Styles (English Version)
   ======================================== */

/* English Version - Reduced Font Sizes */
/* Since English text is typically longer than Chinese, we reduce base font size */
html {
  font-size: 16px;
  /* Reduced from default 16px for English content */
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  html {
    font-size: 13px;
    /* Slightly smaller on mobile */
  }
}

/* CSS Variables */
:root {
  --color-charcoal: #1a1a1a;
  --color-stone: #f5f5f0;
  --color-gold: #d4af37;
  --color-white: #ffffff;
  --color-gray-100: #f3f3f3;
  --color-gray-200: #e5e5e5;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
  --color-red-900: #7f1d1d;
  --color-red-200: #fecaca;

  --font-serif: "Playfair Display", serif;
  --font-sans: "Lato", sans-serif;
  --font-display: "Cinzel", serif;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-slower: 0.7s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-stone);
  color: var(--color-charcoal);
  min-height: 100vh;
  overflow-x: hidden;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 60px auto;
  padding: 0 1rem;
}

/* ========================================
   Navigation
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-slow);
}

.nav-scrolled {
  backdrop-filter: blur(8px);
}

.nav-logo {
  cursor: pointer;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.nav-menu {
  display: none;
  gap: 2rem;
  align-items: center;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--color-charcoal);
  transition: color var(--transition-normal);
  padding-bottom: 0.25rem;
  border-bottom: 1px solid transparent;
}

.nav-item:hover {
  color: var(--color-gold);
}

.nav-item-active {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

.nav-icon {
  width: 1rem;
  height: 1rem;
}

.nav-mobile {
  display: flex;
  gap: 1rem;
}

.nav-mobile-item {
  padding: 0.5rem;
  border-radius: 9999px;
  color: var(--color-charcoal);
  transition: all var(--transition-normal);
}

.nav-mobile-item svg {
  width: 1.25rem;
  height: 1.25rem;
}

.nav-mobile-item:hover {
  color: var(--color-gold);
}

.nav-mobile-item-active {
  color: var(--color-gold);
}

/* ========================================
   Main & Views
   ======================================== */
.main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.view {
  flex-grow: 1;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  transition: all var(--transition-normal);
}

.btn-icon {
  width: 1rem;
  height: 1rem;
}

.btn-primary {
  padding: 0.75rem 2rem;
  background-color: var(--color-charcoal);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background-color: var(--color-gold);
}

.btn-link {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--color-charcoal);
}

.btn-link:hover {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

.btn-gold {
  padding: 1rem 2rem;
  background-color: var(--color-gold);
  color: var(--color-charcoal);
  border-radius: 9999px;
  font-weight: 700;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-gold:hover {
  background-color: var(--color-white);
  box-shadow: 0 10px 15px rgba(212, 175, 55, 0.2);
}

.btn-outline {
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--color-gray-700);
  border-radius: 9999px;
  color: var(--color-gray-500);
  font-size: 0.75rem;
}

.btn-outline:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn-submit {
  width: 100%;
  padding: 1rem 3rem;
  background-color: var(--color-gold);
  color: var(--color-white);
  font-weight: 700;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-view {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-pc {
  display: none;
}

.hero-mobile {
  display: block;
}

/* Hero Carousel Styles */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-carousel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-carousel-img.active {
  opacity: 1;
}

.hero-beian {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  white-space: nowrap;
}

.hero-beian a {
  font-size: 0.85rem;
  color: rgba(57, 57, 57, 0.76);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.hero-beian a:hover {
  color: rgba(12, 12, 12, 0.9);
}
/* .hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.3),
    var(--color-stone)
  );
} */

/* ========================================
   Gallery Section
   ======================================== */
.gallery-view {
  padding: 3rem 0;
  min-height: 100vh;
  background-color: var(--color-stone);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  text-align: center;
  color: var(--color-charcoal);
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.gallery-item {
  position: relative;
  cursor: pointer;
  animation: fadeInUp 0.5s ease both;
}

.gallery-item:nth-child(1) {
  animation-delay: 0.1s;
}

.gallery-item:nth-child(2) {
  animation-delay: 0.2s;
}

.gallery-item:nth-child(3) {
  animation-delay: 0.3s;
}

.gallery-item:nth-child(4) {
  animation-delay: 0.4s;
}

.gallery-item:nth-child(5) {
  animation-delay: 0.5s;
}

.gallery-item:nth-child(6) {
  animation-delay: 0.6s;
}

.gallery-card {
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-card {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-4px);
}

.gallery-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
}

.gallery-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slower);
  filter: grayscale(20%);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.gallery-info {
  padding: 1rem 0.5rem 0.5rem;
}

.gallery-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
}

.gallery-meta {
  font-size: 0.75rem;
  color: var(--color-gray-500);
}

.gallery-industry {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  color: rgb(255, 147, 31);
  background-color: rgba(255, 147, 31, 0.1);
  border: 1px solid rgba(255, 147, 31, 0.3);
  border-radius: 1rem;
  font-weight: 500;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all var(--transition-normal);
  border-radius: 16px;
  pointer-events: none;
}

.gallery-image-wrapper:hover .gallery-overlay {
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 1;
}

.gallery-icon {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0.75rem 0.85rem;

  border-radius: 9999px;
}

.gallery-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-charcoal);
}

/* Gallery More Link */
.gallery-more {
  margin-top: 3rem;
  text-align: center;
  font-size: 1rem;
  color: var(--color-gray-600);
}

.gallery-more a {
  color: var(--color-gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.gallery-more a:hover {
  border-bottom-color: var(--color-gold);
}

/* ========================================
   Gallery Modal
   ======================================== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  align-items: center;
  justify-content: center;
  background-image: url("../images/background1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 1rem;
}

.modal-active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.5rem;
  color: var(--color-charcoal);
  transition: color var(--transition-normal);
  z-index: 999;
}

.modal-close:hover {
  color: var(--color-gold);
}

.modal-close svg {
  width: 2rem;
  height: 2rem;
}

.modal-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 72rem;
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
  align-items: center;
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 1rem;
  background: rgba(252, 252, 252, 0.232);
}

.modal-image-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image-container {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
}

.modal-image {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  background-color: var(--color-white);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  border-radius: 1rem;
  display: block;
}

.modal-image-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 1rem;
}

.modal-image-container:hover .modal-image-overlay {
  opacity: 1;
}

.modal-overlay-actions {
  display: flex;
  gap: 2rem;
}

.modal-overlay-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.75rem;
  color: var(--color-white);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.modal-overlay-btn:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.modal-overlay-btn svg {
  width: 2rem;
  height: 2rem;
}

.modal-overlay-btn span {
  font-size: 0.875rem;
  font-weight: 500;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.modal-nav:hover {
  background-color: var(--color-white);
  transform: translateY(-50%) scale(1.1);
}

.modal-nav svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-charcoal);
}

.modal-nav-prev {
  left: 0.5rem;
}

.modal-nav-next {
  right: 0.5rem;
}

.modal-dots {
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  padding: 0.5rem;
}

.modal-dot {
  width: 2rem;
  height: 8px;
  border-radius: 2px;
  background-color: rgba(108, 108, 108, 0.216);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1rem;
}

.modal-dot:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.modal-dot.active {
  background-color: var(--color-gold);
  width: 3.5rem;
}

.modal-info {
  width: 100%;
  animation: slideInRight 0.5s ease 0.2s both;
}

.modal-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.modal-year {
  font-size: 1rem;
  color: var(--color-gold);
  font-style: italic;
}

.modal-meta-row {
  display: flex;
  gap: 3rem;
  margin-top: 1.5rem;
}

.modal-detail {
  margin-top: 1.5rem;
}

.modal-meta-row .modal-detail {
  margin-top: 0;
}

.modal-label {
  font-size: 0.875rem;
  color: var(--color-gray-500);
}

.modal-medium {
  font-size: 1rem;
}

.modal-industry {
  font-size: 1rem;
}

.modal-muse {
  margin-top: 2rem;
}

.modal-muse-label {
  font-size: 0.75rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.modal-muse-content {
  font-size: 1rem;
  line-height: 1.625;
  color: var(--color-gray-700);
}

.modal-muse-more {
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  background-color: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-size: 0.875rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.modal-muse-more:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
}

/* ========================================
   Description Modal
   ======================================== */
.desc-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.desc-modal.active {
  display: flex;
}

.desc-modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.desc-modal-content {
  position: relative;
  background-color: var(--color-white);
  max-width: 42rem;
  width: 100%;
  max-height: 80vh;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.desc-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--color-charcoal);
  cursor: pointer;
  transition: color var(--transition-normal);
}

.desc-modal-close:hover {
  color: var(--color-gold);
}

.desc-modal-close svg {
  width: 1.5rem;
  height: 1.5rem;
}

.desc-modal-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-charcoal);
}

.desc-modal-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-gray-700);
  overflow-y: auto;
  padding-right: 0.5rem;
}

.desc-modal-text::-webkit-scrollbar {
  width: 4px;
}

.desc-modal-text::-webkit-scrollbar-track {
  background: var(--color-gray-200);
  border-radius: 2px;
}

.desc-modal-text::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 2px;
}

/* ========================================
   Critique Section
   ======================================== */
.critique-view {
  min-height: 100vh;
  padding: 3rem 0 6rem;
  background-color: var(--color-charcoal);
  color: var(--color-stone);
}

.critique-header {
  text-align: center;
  margin-bottom: 3rem;
}

.critique-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.critique-subtitle {
  color: var(--color-gray-400);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.625;
}

.critique-card {
  background-color: #252525;
  border: 1px solid var(--color-gray-800);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* Upload Area */
.upload-area {
  position: relative;
  border: 2px dashed var(--color-gray-700);
  border-radius: 0.5rem;
  height: 16rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.upload-area:hover {
  border-color: var(--color-gold);
  background-color: rgba(255, 255, 255, 0.05);
}

.file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-placeholder {
  text-align: center;
  pointer-events: none;
}

.upload-icon {
  width: 3rem;
  height: 3rem;
  color: var(--color-gray-500);
  margin-bottom: 1rem;
  transition: color var(--transition-normal);
}

.upload-area:hover .upload-icon {
  color: var(--color-gold);
}

.upload-text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--color-gray-400);
  transition: color var(--transition-normal);
}

.upload-area:hover .upload-text {
  color: var(--color-gray-200);
}

.upload-hint {
  font-size: 0.75rem;
  color: var(--color-gray-600);
  margin-top: 0.5rem;
}

.upload-preview {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 1rem;
}

.upload-preview-active .upload-placeholder {
  display: none;
}

.upload-preview-active .upload-preview {
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-preview-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.upload-remove {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--color-white);
  padding: 0.5rem;
  border-radius: 9999px;
  transition: background-color var(--transition-normal);
}

.upload-remove:hover {
  background-color: rgba(127, 29, 29, 0.8);
}

.upload-remove svg {
  width: 1rem;
  height: 1rem;
}

/* Critique States */
.critique-actions {
  display: none;
  justify-content: center;
  margin-top: 2rem;
}

.critique-actions-active {
  display: flex;
}

.critique-loading {
  display: none;
  text-align: center;
  padding: 3rem 0;
}

.critique-loading-active {
  display: block;
}

.spinner {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  border: 4px solid var(--color-gold);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.critique-loading .loading-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-gold);
  margin-top: 1rem;
  animation: pulse 2s ease infinite;
}

.critique-error {
  display: none;
  background-color: rgba(127, 29, 29, 0.2);
  border: 1px solid var(--color-red-900);
  padding: 1rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-red-200);
  margin-top: 1.5rem;
}

.critique-error-active {
  display: flex;
}

.error-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.critique-result {
  display: none;
  margin-top: 2rem;
  animation: fadeInUp 0.7s ease;
}

.critique-result-active {
  display: block;
}

.result-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right,
      transparent,
      var(--color-gold),
      transparent);
  margin-bottom: 2rem;
  opacity: 0.5;
}

.result-content {
  line-height: 1.75;
}

.result-content h2 {
  font-family: var(--font-serif);
  color: var(--color-gold);
  font-size: 1.5rem;
  margin: 1.5rem 0 0.75rem;
}

.result-content h2:first-child {
  margin-top: 0;
}

.result-content p {
  margin-bottom: 1rem;
  font-weight: 300;
}

.result-content blockquote {
  border-left: 2px solid var(--color-gold);
  padding-left: 1rem;
  margin: 1rem 0;
  font-style: italic;
}

.critique-result .btn-outline {
  margin-top: 3rem;
}

/* ========================================
   Biography Section
   ======================================== */
.bio-view {
  min-height: 100vh;
  padding: 5rem 0;
  background-image: url("../images/backgroud2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.bio-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.bio-image-wrapper {
  width: 100%;
  position: relative;
}

.bio-image-frame {
  position: relative;
  z-index: 10;
  aspect-ratio: 3/4;
}

.bio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.bio-image-border {
  display: none;
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-charcoal);
  z-index: 0;
}

.bio-content {
  width: 100%;
}

.bio-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--color-charcoal);
}

.bio-name {
  font-family: var(--font-script);
  font-size: 1.875rem;
  color: var(--color-gold);
  margin-top: 1rem;
}

.bio-text {
  margin-top: 2rem;
  space-y: 1.5rem;
}

.bio-text p {
  font-size: 1.125rem;
  color: var(--color-gray-700);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.bio-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-gray-200);
}

.bio-stat-title {
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.bio-stat-list {
  list-style: none;
  font-size: 0.875rem;
  color: var(--color-gray-600);
}

.bio-stat-list li {
  margin-bottom: 0.25rem;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--color-gray-200);
  overflow: hidden;
}

.testimonials-heading {
  font-family: var(--font-serif);
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--color-charcoal);
}

.testimonials-row {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 1rem;
}

.testimonials-row:last-child {
  margin-bottom: 0;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}

.track-left {
  animation: scroll-left 35s linear infinite;
}

.track-right {
  animation: scroll-right 35s linear infinite;
}

.testimonials-row:hover .testimonials-track {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.testimonial-card {
  flex-shrink: 0;
  width: 320px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--color-gray-300);
  border-radius: 12px;
  padding: 1.5rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-gray-700);
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-charcoal);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--color-gray-500);
}

/* ========================================
   Contact Section
   ======================================== */
.contact-view {
  min-height: 100vh;
  padding: 5rem 0;
  background-color: var(--color-stone);
  display: flex;
  align-items: center;
}

.contact-wrapper {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-subtitle {
  color: var(--color-gray-600);
  font-weight: 300;
  margin-bottom: 3rem;
}

.contact-form {
  text-align: left;
  space-y: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--color-gray-400);
  padding: 0.5rem 0;
  color: var(--color-charcoal);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition-normal);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-gray-400);
}

.form-input:focus,
.form-textarea:focus {
  border-bottom-color: var(--color-gold);
}

.form-textarea {
  height: 8rem;
  resize: none;
}

.contact-info {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-gray-300);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  color: var(--color-gray-600);
  font-size: 0.875rem;
}

.contact-label {
  display: block;
  color: var(--color-gold);
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  padding: 2rem 0;
  text-align: center;
  font-size: 0.75rem;
}

.footer-beian {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  color: var(--color-gray-500);
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* Utility Classes */
.loading-text {
  font-style: italic;
  color: var(--color-gray-400);
  animation: pulse 2s ease infinite;
}

/* Selection */
::selection {
  background-color: var(--color-gold);
  color: var(--color-white);
}