/* ============================================
   古典皇家马车文化自媒体与复古生活方式IP - 主样式表
   色彩体系：皇家宫廷金 / 丝绒深红 / 羊皮纸暖黄 / 磨砂象牙白 / 古籍墨黑
   ============================================ */

/* === CSS Variables === */
:root {
  --primary-gold: #C9A96E;
  --secondary-red: #722F37;
  --bg-parchment: #FDF5E6;
  --card-ivory: rgba(253, 245, 230, 0.9);
  --text-ink: #2C2C2C;
  --gold-light: #E8D5A3;
  --gold-dark: #8B6914;
  --red-light: #9B4049;
  --shadow-warm: rgba(201, 169, 110, 0.3);
  --font-serif: 'Playfair Display', 'Noto Serif SC', Georgia, serif;
  --font-body: 'Noto Serif SC', 'Source Han Serif SC', Georgia, serif;
  --font-decorative: 'Cinzel Decorative', 'Playfair Display', serif;
  --max-width: 1400px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-parchment);
  color: var(--text-ink);
  line-height: 1.8;
  overflow-x: hidden;
  position: relative;
}

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

a {
  color: var(--primary-gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-red);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-ink);
  line-height: 1.4;
}

/* === Utility Classes === */
.cf0d59d5f {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.c00e32df0 {
  font-family: var(--font-decorative);
  font-size: 2.5rem;
  text-align: center;
  color: var(--primary-gold);
  margin-bottom: 1rem;
  position: relative;
}

.c00e32df0::after {
  content: '';
  display: block;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
  margin: 1rem auto 0;
}

.ca9be0d49 {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  font-style: italic;
}

.c6eb9d16a {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary-gold), var(--gold-dark));
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 4px 15px var(--shadow-warm);
}

.c6eb9d16a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow-warm);
  color: #fff;
}

.cb02086c1 {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: transparent;
  color: var(--secondary-red);
  font-family: var(--font-serif);
  font-size: 1rem;
  border: 2px solid var(--secondary-red);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.cb02086c1:hover {
  background: var(--secondary-red);
  color: #fff;
}

/* === Header / Navigation === */
.c3d080503 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(253, 245, 230, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-light);
  transition: var(--transition);
}

.c3d080503.scrolled {
  box-shadow: 0 2px 20px var(--shadow-warm);
}

.c8e5a6c7e {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.c8e4d437d img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.c8e4d437d h1 {
  font-family: var(--font-decorative);
  font-size: 1.3rem;
  color: var(--primary-gold);
  white-space: nowrap;
}

.c3cb325c4 ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.c3cb325c4 a {
  font-size: 0.95rem;
  color: var(--text-ink);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.c3cb325c4 a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: var(--transition);
}

.c3cb325c4 a:hover::after,
.c3cb325c4 a.c20dfa487::after {
  width: 100%;
}

.c8f7be1b3 {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.c8f7be1b3 span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary-gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* === Hero Section - Scroll Unfold === */
.ca321d430 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.c4aa4bb91 {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.c57364353 {
  position: absolute;
  inset: 0;
  background: url('../images/hero-carriage.webp') center/cover no-repeat;
  border-radius: 12px;
  opacity: 0;
  transform: scaleX(0);
  animation: scrollUnfold 2s ease-out 0.5s forwards;
}

@keyframes scrollUnfold {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }
  50% {
    transform: scaleX(0.5);
    opacity: 0.7;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.cf8ec22c4 {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 2rem;
  background: rgba(253, 245, 230, 0.85);
  border-radius: 12px;
  border: 2px solid var(--primary-gold);
  opacity: 0;
  animation: fadeInUp 1s ease-out 2s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cf8ec22c4 h2 {
  font-family: var(--font-decorative);
  font-size: 3.5rem;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.cf8ec22c4 .c1404082f {
  font-size: 1.5rem;
  color: var(--text-ink);
  margin-bottom: 2.5rem;
  font-style: italic;
  letter-spacing: 3px;
}

/* === Royal Seal Trust Section === */
.c7803e4d1 {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-parchment), #f5edd8);
}

.c9e347b4e {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.cd85804c3 {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--card-ivory);
  border-radius: 50%;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--primary-gold);
  box-shadow: 0 4px 20px var(--shadow-warm);
  position: relative;
  transition: var(--transition);
}

.cd85804c3::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed var(--primary-gold);
  opacity: 0.5;
}

.cd85804c3:hover {
  transform: rotateY(180deg);
}

.cd85804c3 .cf5373ccb {
  font-family: var(--font-decorative);
  font-size: 2.2rem;
  color: var(--primary-gold);
  font-weight: 700;
}

.cd85804c3 .c5796e06d {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}

.c2c3021d3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--gold-light);
}

.c4d62cc9a {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--card-ivory);
  border: 2px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-decorative);
  font-size: 0.7rem;
  color: var(--primary-gold);
  text-align: center;
  padding: 0.5rem;
  transition: var(--transition);
}

.c4d62cc9a:hover {
  border-color: var(--primary-gold);
  box-shadow: 0 4px 15px var(--shadow-warm);
}

/* === Content Kingdom Section === */
.c2535b361 {
  padding: 6rem 0;
  background: url('../images/timeline-bg.webp') center/cover no-repeat fixed;
}

.c1a1425db {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.cfedd4bd4 {
  background: var(--card-ivory);
  border-radius: 8px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-left: 6px solid var(--secondary-red);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.cfedd4bd4::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: var(--transition);
}

.cfedd4bd4:hover::before {
  border-color: var(--primary-gold);
  box-shadow: inset 0 0 20px var(--shadow-warm);
}

.cfedd4bd4:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.c93587cb0 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cfedd4bd4 h3 {
  font-size: 1.2rem;
  color: var(--primary-gold);
  margin-bottom: 0.8rem;
}

.cfedd4bd4 p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* === Gallery Section === */
.c7d4db3db {
  padding: 6rem 0;
  overflow: hidden;
}

.c5ef47261 {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 2rem 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.c5ef47261::-webkit-scrollbar {
  height: 8px;
}

.c5ef47261::-webkit-scrollbar-track {
  background: var(--gold-light);
  border-radius: 4px;
}

.c5ef47261::-webkit-scrollbar-thumb {
  background: var(--primary-gold);
  border-radius: 4px;
}

.c9408a325 {
  flex: 0 0 350px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.c9408a325:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.c9408a325 img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.c1d4baa79 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
  transform: translateY(100%);
  transition: var(--transition);
}

.c9408a325:hover .c1d4baa79 {
  transform: translateY(0);
}

.c1d4baa79 h4 {
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.c1d4baa79 .c21705e5e {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* === Pain Point Comparison Section === */
.ccc806017 {
  padding: 6rem 0;
}

.c35249a33 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.c15acd0e5 {
  padding: 4rem 3rem;
  background: linear-gradient(135deg, #3a3a3a, #1a1a1a);
  color: #aaa;
}

.c2b59f90b {
  padding: 4rem 3rem;
  background: linear-gradient(135deg, #f5edd8, var(--bg-parchment));
  color: var(--text-ink);
}

.c15acd0e5 h3,
.c2b59f90b h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.c15acd0e5 h3 {
  color: #888;
}

.c2b59f90b h3 {
  color: var(--primary-gold);
}

.cc5b471b4 {
  list-style: none;
}

.cc5b471b4 li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
}

.c2b59f90b .cc5b471b4 li {
  border-bottom-color: var(--gold-light);
}

/* === Video Section === */
.c31d28974 {
  padding: 6rem 0;
  background: linear-gradient(180deg, #1a1a1a, #2c2c2c);
}

.c2781bb12 {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  border: 3px solid var(--primary-gold);
  position: relative;
}

.c2781bb12 video,
.c2781bb12 iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}

.c1e53e6a2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  display: flex;
  align-items: center;
  gap: 1rem;
}

.c1e53e6a2 button {
  background: none;
  border: none;
  color: var(--primary-gold);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.c1e53e6a2 button:hover {
  color: var(--gold-light);
  transform: scale(1.2);
}

/* === Invitation / CTA Section === */
.c1a83f22e {
  padding: 6rem 0;
  background: url('../images/timeline-bg.webp') center/cover no-repeat;
  position: relative;
}

.c077dc07a {
  max-width: 700px;
  margin: 0 auto;
  background: var(--card-ivory);
  border: 3px solid var(--primary-gold);
  border-radius: 12px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 40px var(--shadow-warm);
}

.c077dc07a::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: url('../images/wax-seal.webp') center/cover no-repeat;
  border-radius: 50%;
}

.c077dc07a h3 {
  font-family: var(--font-decorative);
  font-size: 2rem;
  color: var(--primary-gold);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.c077dc07a p {
  font-style: italic;
  color: #666;
  margin-bottom: 2rem;
}

.c1a2656c1 {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.c1a2656c1 input,
.c1a2656c1 select,
.c1a2656c1 textarea {
  padding: 1rem 1.5rem;
  border: 1px solid var(--gold-light);
  border-radius: 6px;
  background: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-ink);
  transition: var(--transition);
}

.c1a2656c1 input:focus,
.c1a2656c1 select:focus,
.c1a2656c1 textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 10px var(--shadow-warm);
}

.c1a2656c1 .cfc4d0e3e {
  padding: 1.2rem;
  background: linear-gradient(135deg, var(--secondary-red), #5a252c);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 2px;
}

.c1a2656c1 .cfc4d0e3e:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(114, 47, 55, 0.4);
}

/* === Timeline Section === */
.c243da19b {
  padding: 6rem 0;
  background: var(--bg-parchment);
}

.c5bc4b839 {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.c5bc4b839::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-gold), var(--secondary-red));
  transform: translateX(-50%);
}

.ce43e7f71 {
  position: relative;
  width: 45%;
  padding: 2rem;
  background: var(--card-ivory);
  border-radius: 8px;
  border: 1px solid var(--gold-light);
  margin-bottom: 3rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.ce43e7f71:nth-child(odd) {
  margin-left: 0;
}

.ce43e7f71:nth-child(even) {
  margin-left: 55%;
}

.ce43e7f71::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  background: var(--primary-gold);
  border-radius: 50%;
  border: 3px solid var(--bg-parchment);
}

.ce43e7f71:nth-child(odd)::before {
  right: -8%;
  transform: translateY(-50%);
}

.ce43e7f71:nth-child(even)::before {
  left: -8%;
  transform: translateY(-50%);
}

.c80969f3d {
  font-family: var(--font-decorative);
  font-size: 1.5rem;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

/* === Footer === */
.c6953eeae {
  background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
  color: #ccc;
  padding: 4rem 0 2rem;
}

.cc18438c5 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.cdf3c59a0 h3 {
  font-family: var(--font-decorative);
  color: var(--primary-gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cdf3c59a0 p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #999;
}

.cfdda0037 h4 {
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.cfdda0037 ul {
  list-style: none;
}

.cfdda0037 li {
  margin-bottom: 0.6rem;
}

.cfdda0037 a {
  color: #999;
  font-size: 0.9rem;
}

.cfdda0037 a:hover {
  color: var(--primary-gold);
}

.c008121b9 {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
}

/* === Carriage Animation (scroll) === */
.cfb7e8de2 {
  position: fixed;
  bottom: 20px;
  left: 0;
  width: 120px;
  height: 60px;
  z-index: 999;
  transition: left 0.1s linear;
  pointer-events: none;
  opacity: 0.7;
}

.cfb7e8de2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* === Form Success Animation === */
.cfe3d25e6 {
  display: none;
  text-align: center;
  padding: 3rem;
  animation: fadeInUp 0.5s ease-out;
}

.cfe3d25e6.c20dfa487 {
  display: block;
}

.cfe3d25e6 .c657f9ad8 {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
}

/* === 404 Page === */
.cb1626cd2 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: url('../images/404-lost-carriage.webp') center/cover no-repeat;
  position: relative;
}

.cb1626cd2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(253, 245, 230, 0.85);
}

.c13c6b234 {
  position: relative;
  z-index: 2;
}

.cb1626cd2 h1 {
  font-family: var(--font-decorative);
  font-size: 8rem;
  color: var(--primary-gold);
  text-shadow: 2px 2px 4px var(--shadow-warm);
}

.cb1626cd2 h2 {
  font-size: 2rem;
  color: var(--secondary-red);
  margin-bottom: 1rem;
}

.cb1626cd2 p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

/* === Thank You Page === */
.cd90077a5 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

/* === Content Calendar === */
.cd43f5618 {
  padding: 6rem 0;
}

.ce53e4cce {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

.c4e56ceb0 {
  padding: 1rem 0.5rem;
  background: var(--card-ivory);
  border: 1px solid var(--gold-light);
  border-radius: 4px;
  text-align: center;
  min-height: 80px;
  font-size: 0.85rem;
  transition: var(--transition);
}

.c4e56ceb0:hover {
  border-color: var(--primary-gold);
  box-shadow: 0 2px 10px var(--shadow-warm);
}

.c4e56ceb0.c88f7f3fa {
  background: linear-gradient(135deg, rgba(201,169,110,0.1), rgba(114,47,55,0.05));
}

.c4e56ceb0 .cec43b6a5 {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.7rem;
  margin-top: 4px;
}

.cec43b6a5.c4c12f196 { background: #1a1a1a; color: #fff; }
.cec43b6a5.cac867ee3 { background: #00a1d6; color: #fff; }
.cec43b6a5.c409d71f9 { background: #fe2c55; color: #fff; }

/* === Booking Section === */
.c581ee7aa {
  padding: 6rem 0;
}

.cf953b723 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.c58e9a6d7 {
  padding: 2.5rem 2rem;
  background: var(--card-ivory);
  border: 2px solid var(--gold-light);
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.c58e9a6d7:hover,
.c58e9a6d7.c20dfa487 {
  border-color: var(--primary-gold);
  box-shadow: 0 8px 25px var(--shadow-warm);
  transform: translateY(-5px);
}

.c58e9a6d7 .c2af35a26 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.c58e9a6d7 h4 {
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

/* === Responsive Design (Mobile First) === */
@media (max-width: 1200px) {
  .c1a1425db {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .cc18438c5 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .c9e347b4e {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .c35249a33 {
    grid-template-columns: 1fr;
  }
  
  .c1a1425db {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cf953b723 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .c8f7be1b3 {
    display: flex;
  }
  
  .c3cb325c4 {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-parchment);
    padding: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  
  .c3cb325c4.c20dfa487 {
    transform: translateY(0);
    opacity: 1;
  }
  
  .c3cb325c4 ul {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cf8ec22c4 h2 {
    font-size: 2rem;
  }
  
  .cf8ec22c4 .c1404082f {
    font-size: 1.1rem;
  }
  
  .c00e32df0 {
    font-size: 1.8rem;
  }
  
  .c9e347b4e {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cd85804c3 {
    width: 150px;
    height: 150px;
  }
  
  .c1a1425db {
    grid-template-columns: 1fr;
  }
  
  .c9408a325 {
    flex: 0 0 280px;
  }
  
  .c35249a33 {
    grid-template-columns: 1fr;
  }
  
  .c077dc07a {
    padding: 3rem 1.5rem;
  }
  
  .cc18438c5 {
    grid-template-columns: 1fr;
  }
  
  .c5bc4b839::before {
    left: 20px;
  }
  
  .ce43e7f71 {
    width: calc(100% - 50px);
    margin-left: 50px !important;
  }
  
  .ce53e4cce {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .cfb7e8de2 {
    display: none;
  }
}

@media (max-width: 480px) {
  .cf0d59d5f {
    padding: 0 1rem;
  }
  
  .cf8ec22c4 {
    padding: 3rem 1rem;
  }
  
  .cf8ec22c4 h2 {
    font-size: 1.6rem;
  }
  
  .c9e347b4e {
    grid-template-columns: 1fr;
  }
  
  .cd85804c3 {
    width: 180px;
    height: 180px;
  }
}

/* === Lazy Loading Placeholder === */
img[data-src] {
  opacity: 0;
  transition: opacity 0.5s ease;
}

img[data-src].loaded {
  opacity: 1;
}

/* === Sound Toggle === */
.ce8c8a81b {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--card-ivory);
  border: 2px solid var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  font-size: 1.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px var(--shadow-warm);
}

.ce8c8a81b:hover {
  transform: scale(1.1);
}

/* === Page Transition === */
.cb5dcb60c {
  position: fixed;
  inset: 0;
  background: var(--bg-parchment);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cb5dcb60c.c20dfa487 {
  opacity: 1;
  pointer-events: all;
}

/* === Museum 3D Container === */
.cb6783515 {
  padding: 6rem 0;
  background: #1a1a1a;
}

.c77136bfa {
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
  border-radius: 12px;
  border: 2px solid var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.c77136bfa img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ce766b5e1 {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
}

.ce766b5e1 button {
  padding: 0.6rem 1.2rem;
  background: rgba(201, 169, 110, 0.9);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition);
}

.ce766b5e1 button:hover {
  background: var(--primary-gold);
}
