:root {
  --rich-bg: #140f0c;
  --rich-panel: #1f1a16;
  --rich-panel-soft: #2a221d;
  --rich-border: #4a3a2a;
  --rich-gold: #d4af7a;
  --rich-gold-bright: #eacfa5;
  --rich-text: #f3e9dd;
  --rich-subtext: #c8b8a8;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
}
body {
  font-family: "Inter", sans-serif;
  background-color: var(--rich-bg);
  background-image: radial-gradient(
    circle at 50% 0,
    rgba(42, 34, 29, 0.8),
    transparent 70%
  );
  color: var(--rich-text);
}
h1,
h2,
h3,
h4,
h5,
h6,
.font-serif {
  font-family: "Shippori Mincho", serif;
}
.text-gold {
  color: var(--rich-gold);
}
.bg-gold {
  background: linear-gradient(145deg, #1c140e, #2a221d 50%, #1c140e),
    linear-gradient(
      180deg,
      rgba(212, 175, 122, 0.15),
      rgba(212, 175, 122, 0.05)
    );
  color: #1c140e;
}
.border-gold {
  border-color: var(--rich-gold);
}
.cta-badge {
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.1),
    rgba(20, 15, 12, 0.6)
  );
  border: 1px solid rgba(234, 207, 165, 0.4);
  box-shadow: inset 0 1px 4px rgba(255, 255, 255, 0.08),
    0 20px 45px rgba(0, 0, 0, 0.6);
  border-radius: 28px;
  backdrop-filter: blur(12px);
}
.cta-primary {
  background: linear-gradient(135deg, #f7d7a9, #d9a761);
  color: #2a1a0f;
  border-radius: 9999px;
  padding: 0.9rem 2.5rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}
.cta-secondary {
  border: 1px solid rgba(234, 207, 165, 0.4);
  border-radius: 9999px;
  padding: 0.9rem 2.5rem;
}
/* Mobile Bottom Navigation */
.mobile-cta-container {
  position: fixed;
  bottom: 20px;
  left: 16px;
  right: 16px;
  z-index: 100;
  pointer-events: none;
  padding: 0;
}
/* Old Mobile Bar classes removed for cleanup */
.badge-star {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: linear-gradient(
    135deg,
    var(--rich-gold-bright),
    var(--rich-gold)
  );
  color: #2a1a0f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.4);
}
@keyframes spinStar {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.badge-star:hover i {
  animation: spinStar 0.75s linear;
}
@keyframes pulse-shadow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(217, 167, 97, 0.4),
      0 0 30px rgba(217, 167, 97, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(217, 167, 97, 0.6),
      0 0 45px rgba(217, 167, 97, 0.5);
  }
}
.animate-pulse-shadow {
  animation: pulse-shadow 2s infinite;
}
/* Mobile CTA Enhancements */
.mobile-cta-glass {
  pointer-events: auto;
  background: rgba(20, 15, 12, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 122, 0.2);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8);
}
.btn-shine {
  position: relative;
  overflow: hidden;
}
.btn-shine::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(45deg);
  animation: shine 3s infinite;
}
@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  20% {
    transform: translateX(100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}
/* Overrides for Rich Dark Theme */
.bg-gray-900 {
  background-color: var(--rich-bg) !important;
}
.bg-gray-800 {
  background-color: var(--rich-panel) !important;
}
.bg-gray-950 {
  background-color: #0e0a08 !important;
}
.text-gray-200 {
  color: var(--rich-text) !important;
}
.text-gray-300 {
  color: var(--rich-subtext) !important;
}
.text-gray-400 {
  color: #b99f87 !important;
}
.border-gray-700 {
  border-color: var(--rich-border) !important;
}
.text-glow {
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.35),
    0 0 28px rgba(255, 255, 255, 0.25);
}
.hero-title {
  font-size: clamp(26px, 6.5vw, 52px);
}
.hero-subtitle {
  font-size: clamp(16px, 4vw, 24px);
}
.hover-lift {
  transition: transform 0.3s, box-shadow 0.3s;
}
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
/* Swiper */
.swiper-container {
  width: 100%;
  height: auto;
}
.swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 0.8;
}
.swiper-pagination-bullet-active {
  background-color: var(--rich-gold);
}
.swiper-button-next,
.swiper-button-prev {
  color: var(--rich-gold);
  transform: scale(0.8);
}
/* Vertical Writing */
.writing-vertical {
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.2em;
}
/* Parallax */
.bg-parallax {
  background-attachment: fixed;
}
/* Strong Glassmorphism */
.glass-strong {
  background: rgba(20, 15, 12, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 122, 0.3);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}
