* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --gray-dark: #1a1a1a;
  --gray-light: #2a2a2a;
  --accent: #d4af37;
  --accent-light: #e5c158;
  --accent-dark: #b8941f;
  --glow: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.1);
  --text-secondary: rgba(255, 255, 255, 0.6);
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-weight: 300;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

/* 自定义滚动条 */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--rose);
}

/* 自定义光标 */
.cursor {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(212, 196, 184, 0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), width 0.4s, height 0.4s, border-color 0.3s;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.cursor.active {
  opacity: 1;
}

.cursor.hover {
  width: 50px;
  height: 50px;
  border-width: 1.5px;
  background: rgba(212, 196, 184, 0.08);
  border-color: rgba(212, 196, 184, 0.7);
}

/* 导航栏 */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 50px 80px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(30px);
  padding: 30px 80px;
  border-bottom-color: var(--border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
}

.logo {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 4px;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  font-style: normal;
  color: var(--white);
}

.logo-subtitle {
  font-size: 8px;
  letter-spacing: 12px;
  opacity: 0.4;
  margin-top: 6px;
  font-weight: 300;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 50px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  font-weight: 300;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.7;
  padding: 5px 0;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover::before {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: var(--black);
  padding: 100px 40px;
  flex-direction: column;
  gap: 30px;
  transition: right 0.3s ease;
  z-index: 999;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Hero 区域 */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
  padding: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.grid-background {
  display: none;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(80px, 80px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1400px;
  padding: 0 80px;
  margin: 0 auto;
  animation: fadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title-wrapper {
  margin-bottom: 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 0;
  animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.title-decoration {
  width: 60px;
  height: 1px;
  background: var(--white);
  opacity: 0.2;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.title-decoration:hover {
  width: 100px;
  opacity: 0.3;
}

.title-decoration.bottom {
  margin-top: 20px;
  margin-bottom: 0;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(72px, 11vw, 140px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 12px;
  margin: 0;
  text-transform: uppercase;
  font-style: normal;
  color: var(--white);
  position: relative;
  text-align: center;
  padding: 0;
  opacity: 0.4;
  animation: titleFade 3s ease-in-out infinite;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
  transition: opacity 0.6s ease;
}

@keyframes titleFade {
  0%, 100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-title:hover {
  opacity: 0.6;
}

.title-main {
  display: block;
  position: relative;
  color: var(--white);
  letter-spacing: 14px;
  font-weight: 300;
  line-height: 0.95;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(0.5px);
  text-transform: uppercase;
}

.title-subtitle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  opacity: 0.3;
  font-weight: 300;
  transition: opacity 0.4s ease;
}

.title-subtitle-wrapper:hover {
  opacity: 0.5;
}

.title-subtitle {
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 300;
  letter-spacing: 3px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-style: normal;
  opacity: 0.4;
  transition: opacity 0.4s ease;
}

.title-subtitle:hover {
  opacity: 0.8;
}

.title-divider {
  font-size: 10px;
  opacity: 0.3;
  font-weight: 300;
}

.hero-cta {
  margin-top: 100px;
}

.cta-button {
  display: inline-block;
  position: relative;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  overflow: visible;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  opacity: 0.7;
}

.cta-button:hover {
  opacity: 1;
  letter-spacing: 4px;
}

.cta-button span {
  position: relative;
  display: inline-block;
}

.cta-button span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover span::after {
  width: 100%;
}

.cta-button .button-line {
  display: none;
}

.cta-button:hover::before {
  left: 0;
}

.cta-button:hover::after {
  width: 300px;
  height: 300px;
}

.hero-scroll {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.scroll-indicator span {
  font-size: 10px;
  letter-spacing: 4px;
  opacity: 0.6;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--white);
  opacity: 0.6;
}

.hero-numbers {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 100px;
  z-index: 2;
}

.number-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
}

.number-item::before {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent 0%, rgba(212, 196, 184, 0.3) 50%, transparent 100%);
  transform: translateY(-50%);
}

.number-item .number {
  font-size: 56px;
  font-weight: 300;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
  letter-spacing: -1px;
  opacity: 0.7;
}

.number-item .label {
  font-size: 9px;
  letter-spacing: 6px;
  opacity: 0.4;
  margin-top: 8px;
  text-transform: uppercase;
  font-weight: 300;
}

/* 关于我们 */
.about {
  min-height: 100vh;
  padding: 180px 80px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top, rgba(232, 213, 208, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.about::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(212, 196, 184, 0.15) 50%, transparent 100%);
  pointer-events: none;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
  font-size: 10px;
  letter-spacing: 6px;
  opacity: 0.4;
  text-transform: uppercase;
  font-weight: 300;
}

.label-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  opacity: 0.6;
}

.about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 300;
  line-height: 0.95;
  margin-bottom: 100px;
  letter-spacing: -2px;
  font-style: normal;
  color: var(--white);
}

.title-word {
  display: block;
}

.about-text {
  margin-bottom: 80px;
}

.about-text p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 35px;
  opacity: 0.7;
  font-weight: 300;
  letter-spacing: 0.5px;
  max-width: 600px;
  font-family: 'Montserrat', sans-serif;
}

.about-stats {
  display: flex;
  gap: 80px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 15px;
  letter-spacing: -1px;
  opacity: 0.9;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 5px;
  opacity: 0.4;
  text-transform: uppercase;
  font-weight: 300;
}

.about-image {
  position: relative;
  height: 600px;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--gray-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.03) 50%,
    transparent 70%
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.placeholder-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.placeholder-content span {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 8px;
  opacity: 0.3;
}

.placeholder-lines {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.placeholder-lines .line {
  width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* 系列作品 */
.collections {
  min-height: 100vh;
  padding: 180px 80px;
  background: var(--black);
  position: relative;
}

.collections::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(212, 196, 184, 0.15) 50%, transparent 100%);
  pointer-events: none;
}

.collections-container {
  max-width: 1400px;
  margin: 0 auto;
}

.collections-header {
  margin-bottom: 100px;
}

.collections-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 300;
  line-height: 0.95;
  margin-top: 40px;
  letter-spacing: -2px;
  font-style: normal;
  color: var(--white);
}

.collections-title span {
  display: block;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.collection-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-item:hover {
  transform: translateY(-12px);
}

.collection-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

.collection-item:hover::before {
  opacity: 1;
}

.collection-image {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--gray-dark);
}

.placeholder-number {
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  font-weight: 300;
  opacity: 0.1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.placeholder-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  z-index: 2;
  transition: opacity 0.3s ease;
}

.collection-item:hover .placeholder-overlay {
  opacity: 0.8;
}

.collection-info {
  padding: 30px 0;
  position: relative;
  z-index: 4;
}

.collection-year {
  font-size: 12px;
  letter-spacing: 3px;
  opacity: 0.6;
  margin-bottom: 15px;
}

.collection-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 0px;
  text-transform: none;
  font-style: normal;
  color: var(--white);
}

.collection-description {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.collection-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.collection-item:hover .collection-link {
  opacity: 1;
}

.link-arrow {
  transition: transform 0.3s ease;
}

.collection-item:hover .link-arrow {
  transform: translateX(10px);
}

/* 联系我们 */
.contact {
  min-height: 100vh;
  padding: 180px 80px;
  background: var(--black);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(212, 196, 184, 0.15) 50%, transparent 100%);
  pointer-events: none;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
}

.contact-header {
  margin-bottom: 100px;
}

.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 300;
  line-height: 0.95;
  margin-top: 40px;
  letter-spacing: -2px;
  font-style: normal;
  color: var(--white);
}

.contact-title span {
  display: block;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-label {
  font-size: 12px;
  letter-spacing: 3px;
  opacity: 0.6;
  text-transform: uppercase;
}

.info-value {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 2px;
  opacity: 0.8;
}

.info-value.link {
  text-decoration: none;
  color: var(--white);
  position: relative;
  display: inline-block;
  transition: opacity 0.3s ease;
}

.info-value.link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.info-value.link:hover::after {
  width: 100%;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-link {
  font-size: 18px;
  text-decoration: none;
  color: var(--white);
  opacity: 0.8;
  transition: opacity 0.3s ease;
  position: relative;
  display: inline-block;
}

.social-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.social-link:hover {
  opacity: 1;
}

.social-link:hover::after {
  width: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(212, 196, 184, 0.2);
  padding: 18px 0;
  color: var(--white);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-weight: 300;
  letter-spacing: 1px;
}

.form-input::placeholder {
  color: rgba(212, 196, 184, 0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 11px;
}

.form-input:focus {
  outline: none;
  border-bottom-color: var(--accent);
  padding-left: 10px;
}

.form-textarea {
  resize: none;
  min-height: 150px;
}

.submit-button {
  margin-top: 30px;
  padding: 18px 50px;
  border: 1px solid rgba(212, 196, 184, 0.3);
  background: transparent;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  align-self: flex-start;
  font-weight: 300;
}

.submit-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.submit-button:hover {
  color: var(--black);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 196, 184, 0.2);
}

.submit-button:hover::before {
  left: 0;
}

/* 页脚 */
.footer {
  background: var(--black);
  padding: 120px 60px 60px;
  border-top: 1px solid rgba(212, 196, 184, 0.1);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 196, 184, 0.2) 50%, transparent 100%);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 100px;
  margin-bottom: 80px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-style: normal;
  color: var(--white);
}

.footer-tagline {
  font-size: 14px;
  opacity: 0.6;
  letter-spacing: 2px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-title {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 15px;
  font-weight: 300;
}

.footer-column a {
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  opacity: 0.6;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 300;
  letter-spacing: 1px;
}

.social-link-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  opacity: 0.6;
  transition: all 0.3s ease;
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.social-link-item:hover {
  opacity: 1;
  transform: translateX(3px);
}

.social-icon {
  width: 16px;
  height: 16px;
  opacity: 0.5;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.social-link-item:hover .social-icon {
  opacity: 1;
  transform: scale(1.1);
}

.footer-column a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.footer-column a:not(.social-link-item):hover {
  opacity: 1;
  padding-left: 5px;
}

.footer-column a:not(.social-link-item):hover::after {
  width: 100%;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 196, 184, 0.15) 50%, transparent 100%);
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  opacity: 0.4;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 300;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .about-container,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-image {
    height: 400px;
  }

  .collections-grid {
    grid-template-columns: 1fr;
  }

  .collection-image {
    height: 400px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 25px 30px;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero {
    padding: 0 20px;
    min-height: 90vh;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-title-wrapper {
    margin-bottom: 60px;
    gap: 20px;
  }

  .hero-title {
    font-size: clamp(56px, 18vw, 90px);
    letter-spacing: -1px;
    opacity: 0.3;
  }

  .title-main {
    letter-spacing: 0px;
    filter: blur(0.3px);
  }

  .title-subtitle-wrapper {
    margin-top: 15px;
    gap: 10px;
    opacity: 0.25;
  }

  .title-subtitle {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .title-decoration {
    width: 40px;
    margin-bottom: 15px;
    opacity: 0.15;
  }

  .hero-numbers {
    display: none;
  }

  .hero-scroll {
    bottom: 30px;
  }

  .scroll-indicator span {
    font-size: 8px;
  }

  .scroll-line {
    height: 30px;
  }

  .cta-button {
    padding: 16px 45px;
    font-size: 10px;
  }

  .about,
  .collections,
  .contact {
    padding: 120px 30px;
  }

  .about-stats {
    flex-direction: column;
    gap: 40px;
  }

  .stat-number {
    font-size: 48px;
  }

  .collection-image {
    height: 300px;
  }

  .collection-name {
    font-size: 28px;
  }

  .contact-info {
    gap: 40px;
  }

  .info-value {
    font-size: 20px;
  }

  .footer {
    padding: 80px 30px 30px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-copyright {
    flex-direction: column;
    gap: 10px;
  }
}

