@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Noto+Sans+KR:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ========================================
   Design System - Warm Editorial Luxury
   ======================================== */
:root {
  /* Typography */
  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Color Palette - Warm Gold & Ivory */
  --color-bg: #0C0A08;
  --color-bg-warm: #141110;
  --color-bg-card: #1A1614;
  --color-bg-card-hover: #221E1A;
  --color-surface: #F8F3EC;
  --color-gold: #C9A96E;
  --color-gold-light: #D4B97E;
  --color-gold-dark: #A88B52;
  --color-gold-glow: rgba(201, 169, 110, 0.15);
  --color-gold-glow-strong: rgba(201, 169, 110, 0.3);
  --color-text-main: #F5F0E8;
  --color-text-muted: #9C9489;
  --color-text-caption: #6B6560;
  --color-border: rgba(201, 169, 110, 0.12);
  --color-border-hover: rgba(201, 169, 110, 0.3);
  --color-overlay: rgba(12, 10, 8, 0.7);

  /* Spacing */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--color-gold-glow);
  --shadow-gold: 0 4px 20px rgba(201, 169, 110, 0.25);

  /* Transitions */
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.4s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ========================================
   Utilities
   ======================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--color-text-main);
}

.section-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--color-text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.gold-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 1.5rem 0;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Navigation
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s var(--ease-luxury);
}

.nav.scrolled {
  background: rgba(12, 10, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  padding: 0.75rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-icon,
.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--color-border-hover);
  box-shadow: 0 2px 10px rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-bg);
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-text-main);
}

.nav-logo-text span {
  color: var(--color-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.3s var(--ease-luxury);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-gold);
  font-weight: 500;
}

.nav-phone svg {
  width: 16px;
  height: 16px;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-gold);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

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

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 10, 8, 0.88) 0%,
    rgba(12, 10, 8, 0.6) 50%,
    rgba(12, 10, 8, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-inner {
  max-width: 680px;
  animation: fadeInUp 1.2s var(--ease-luxury);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--color-gold-glow);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 2rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-title .gold {
  color: var(--color-gold);
  font-style: italic;
}

.hero-description {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-bg);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s var(--ease-luxury);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4);
  filter: brightness(1.1);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--color-text-main);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--color-border-hover);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s var(--ease-luxury);
}

.btn-secondary:hover {
  background: var(--color-gold-glow);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: float 2.5s ease-in-out infinite;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-caption);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
}

/* ========================================
   Features / Trust Bar
   ======================================== */
.trust-bar {
  padding: 4rem 0;
  background: var(--color-bg-warm);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

.trust-item {
  text-align: center;
  padding: 1.5rem;
}

.trust-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold-glow);
  border-radius: 50%;
  color: var(--color-gold);
}

.trust-icon svg {
  width: 24px;
  height: 24px;
}

.trust-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-text-main);
}

.trust-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ========================================
   Product Showcase
   ======================================== */
.products {
  padding: 6rem 0;
  background: var(--color-bg);
}

.products-header {
  text-align: center;
  margin-bottom: 4rem;
}

.products-header .gold-divider {
  margin: 1.5rem auto;
}

.products-header .section-subtitle {
  margin: 0 auto;
}

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

.product-card {
  position: relative;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--duration) var(--ease-luxury);
}

.product-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-luxury);
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(12, 10, 8, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-image-overlay {
  opacity: 1;
}

.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.75rem;
  background: rgba(12, 10, 8, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.product-info {
  padding: 1.5rem;
}

.product-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text-main);
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-gold);
  transition: gap 0.3s ease;
}

.product-card:hover .product-cta {
  gap: 0.8rem;
}

.product-cta svg {
  width: 14px;
  height: 14px;
}

/* ========================================
   About / Story Section
   ======================================== */
.about {
  padding: 6rem 0;
  background: var(--color-bg-warm);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content {
  padding-right: 2rem;
}

.about-content .section-title {
  margin-bottom: 1.5rem;
}

.about-text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--color-text-caption);
  letter-spacing: 0.05em;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

/* ========================================
   Gold & Silver Price Section
   ======================================== */
.gold-price-section {
  padding: 6rem 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

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

.price-card {
  position: relative;
  padding: 2rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s var(--ease-luxury);
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.price-card-gold::before {
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
}

.price-card-silver::before {
  background: linear-gradient(90deg, #6B7280, #9CA3AF, #D1D5DB);
}

.price-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.price-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.price-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.gold-icon {
  background: var(--color-gold-glow);
  color: var(--color-gold);
}

.silver-icon {
  background: rgba(156, 163, 175, 0.15);
  color: #9CA3AF;
}

.price-metal {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-main);
}

.price-unit {
  font-size: 0.75rem;
  color: var(--color-text-caption);
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
}

.price-value {
  margin-bottom: 0.75rem;
  min-height: 48px;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-text-main);
  letter-spacing: -0.02em;
}

.price-card-gold .price-amount {
  color: var(--color-gold);
}

.price-card-silver .price-amount {
  color: #D1D5DB;
}

.price-per {
  font-size: 1rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.price-loading {
  font-size: 0.9rem;
  color: var(--color-text-caption);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.price-details {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  min-height: 24px;
}

.price-detail-item {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.price-detail-approx {
  font-size: 0.7rem;
  color: var(--color-text-caption);
  padding: 0.2rem 0.5rem;
  background: rgba(201, 169, 110, 0.1);
  border-radius: 100px;
  font-weight: 500;
}

.price-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-gold);
  padding: 0.5rem 1rem;
  background: var(--color-gold-glow);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.price-link:hover {
  background: rgba(201, 169, 110, 0.25);
  gap: 0.6rem;
}

.price-fallback-link {
  font-size: 1rem;
  color: var(--color-gold);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.price-fallback-link:hover {
  color: var(--color-gold-light);
}

.price-disclaimer {
  text-align: center;
  padding: 1.5rem;
  background: var(--color-bg-warm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.price-disclaimer p {
  font-size: 0.8rem;
  color: var(--color-text-caption);
  line-height: 1.6;
}

.price-update-time {
  font-size: 0.75rem;
  color: var(--color-text-caption);
  margin-top: 0.5rem;
  opacity: 0.7;
}

/* ========================================
   CTA Banner
   ======================================== */
.cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--color-bg-warm) 0%, var(--color-bg) 100%);
  border-top: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner .section-title {
  margin-bottom: 1rem;
}

.cta-inner .section-subtitle {
  margin: 0 auto 2.5rem;
}

.cta-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 3rem auto 0;
}

.cta-contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.cta-contact-item:hover {
  border-color: var(--color-border-hover);
  background: var(--color-bg-card-hover);
}

.cta-contact-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold-glow);
  border-radius: 50%;
  color: var(--color-gold);
}

.cta-contact-icon svg {
  width: 20px;
  height: 20px;
}

.cta-contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-caption);
}

.cta-contact-value {
  font-size: 0.95rem;
  color: var(--color-text-main);
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  padding: 3rem 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand-icon,
.footer-brand-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-bg);
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-main);
}

.footer-info {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-caption);
  line-height: 1.8;
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--color-text-caption);
}

/* ========================================
   Map Section
   ======================================== */
.map-section {
  padding: 4rem 0;
  background: var(--color-bg-warm);
}

.map-container {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 16 / 7;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.6) brightness(0.7) contrast(1.1);
  transition: filter 0.4s ease;
}

.map-container:hover iframe {
  filter: grayscale(0.2) brightness(0.85) contrast(1);
}

/* Custom Map Marker */
.map-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.map-marker-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-bg);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(201, 169, 110, 0.3);
  white-space: nowrap;
  animation: markerBounce 2s ease-in-out infinite;
}

.map-marker-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--color-bg);
  color: var(--color-gold);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 0.7rem;
  font-weight: 700;
}

.map-marker-pin {
  width: 2px;
  height: 16px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
}

.map-marker-pulse {
  width: 14px;
  height: 14px;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0.8;
  box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.5);
  animation: markerPulse 2s ease-out infinite;
}

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

@keyframes markerPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.5);
    opacity: 0.8;
  }
  70% {
    box-shadow: 0 0 0 16px rgba(201, 169, 110, 0);
    opacity: 0.4;
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201, 169, 110, 0);
    opacity: 0.8;
  }
}

/* ========================================
   Mobile Nav Menu
   ======================================== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(12, 10, 8, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-text-main);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--color-gold);
}

.mobile-menu-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--color-gold);
  border-radius: 100px;
  color: var(--color-gold);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 1rem;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 3rem;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  /* Nav */
  .nav-links,
  .nav-phone {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 90vh;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-scroll {
    display: none;
  }

  /* Products */
  .products {
    padding: 4rem 0;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-card {
    display: grid;
    grid-template-columns: 140px 1fr;
  }

  .product-image {
    aspect-ratio: 1 / 1;
    height: 100%;
  }

  .product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 1.25rem;
  }

  .product-name {
    font-size: 1.05rem;
  }

  .product-desc {
    font-size: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* About */
  .about {
    padding: 4rem 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-content {
    padding-right: 0;
    order: 2;
  }

  .about-image {
    order: 1;
    aspect-ratio: 16 / 10;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  /* Trust */
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .trust-item {
    padding: 1rem;
  }

  /* CTA */
  .cta-contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cta-contact-item {
    flex-direction: row;
    text-align: left;
    padding: 1.25rem 1.5rem;
  }

  .cta-contact-item > div {
    text-align: left;
  }

  /* Map */
  .map-container {
    aspect-ratio: 16 / 12;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  /* Gold Price */
  .gold-price-section {
    padding: 4rem 0;
  }

  .price-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .price-amount {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    font-size: 0.65rem;
    padding: 0.4rem 1rem;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
  }

  .about-stats {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .product-card {
    grid-template-columns: 120px 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .trust-title {
    font-size: 0.95rem;
  }

  .trust-desc {
    font-size: 0.78rem;
  }
}

/* ========================================
   Blog Section & Modal
   ======================================== */
.blog-section {
  padding: 6rem 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

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

.blog-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s var(--ease-luxury);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.blog-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.75rem;
  background: rgba(12, 10, 8, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-gold);
}

.blog-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  font-size: 0.75rem;
  color: var(--color-text-caption);
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-text-main);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-card-readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-gold);
}

/* Blog Modal */
.blog-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(12, 10, 8, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.blog-modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.blog-modal-content {
  position: relative;
  width: 100%;
  max-width: 760px;
  max-height: 85vh;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow-y: auto;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.blog-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

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

.blog-modal-header {
  margin-bottom: 1.5rem;
}

.blog-modal-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-text-main);
  margin: 0.75rem 0 0.5rem;
  line-height: 1.3;
}

.blog-modal-img-box {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 16 / 9;
}

.blog-modal-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-modal-body {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-modal-content {
    padding: 1.5rem;
  }
}

/* ========================================
   Chatbot Widget Override
   ======================================== */
#documind-widget-root,
#documind-chat-widget {
  position: relative;
  z-index: 999999 !important;
}
