:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #141414;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222;
  --gold: #d4a843;
  --gold-light: #e8c96a;
  --gold-dark: #b8922e;
  --text-primary: #f0f0f0;
  --text-secondary: #a0a0a0;
  --text-muted: #666;
  --accent-red: #c0392b;
  --border: #2a2a2a;
  --max-width: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
}

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }

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

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: var(--gold);
  white-space: nowrap; flex-shrink: 0;
}

.nav-logo span { font-size: 12px; color: var(--text-secondary); display: block; font-family: 'Poppins', sans-serif; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; }

.nav-links { list-style: none; display: flex; gap: 20px; align-items: center; }
.nav-links a { color: var(--text-secondary); font-size: 13px; font-weight: 500; letter-spacing: 0.3px; text-transform: uppercase; transition: color 0.3s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); transition: 0.3s; }

.mobile-nav {
  position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
  background: var(--bg-secondary); z-index: 200; padding: 80px 32px 32px;
  display: flex; flex-direction: column; gap: 24px;
  transition: right 0.3s ease;
}
.mobile-nav.open { right: 0; }
.mobile-nav a { color: var(--text-primary); font-size: 18px; font-weight: 500; }
.mobile-nav .close-btn { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--text-primary); font-size: 32px; cursor: pointer; }

/* Hero */
.hero {
  position: relative; min-height: 85vh; display: flex; align-items: center;
  justify-content: center; text-align: center;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.4) 40%, rgba(10,10,10,0.8) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 120px 24px 60px; max-width: 800px; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 64px); font-weight: 700;
  color: var(--gold); margin-bottom: 16px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}
.hero p { font-size: clamp(16px, 2vw, 20px); color: var(--text-secondary); margin-bottom: 32px; }

.hero-inner { min-height: 50vh; }
.hero-inner .hero-content { padding-top: 100px; }

.btn-primary {
  display: inline-block; padding: 14px 36px;
  background: var(--gold); color: var(--bg-primary);
  font-weight: 600; font-size: 14px; letter-spacing: 1px; text-transform: uppercase;
  border: none; border-radius: 4px; cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); color: var(--bg-primary); transform: translateY(-2px); }

.btn-outline {
  display: inline-block; padding: 12px 32px;
  border: 2px solid var(--gold); color: var(--gold);
  font-weight: 600; font-size: 14px; letter-spacing: 1px; text-transform: uppercase;
  border-radius: 4px; transition: all 0.3s;
}
.btn-outline:hover { background: var(--gold); color: var(--bg-primary); }

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-secondary); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px); color: var(--gold);
  margin-bottom: 12px;
}
.section-subtitle { color: var(--text-secondary); font-size: 16px; margin-bottom: 48px; }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }

.card {
  background: var(--bg-card); border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); transition: transform 0.3s, border-color 0.3s;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold-dark); }
.card-img { height: 200px; overflow: hidden; background: var(--bg-secondary); }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 24px; }
.card-body h3 { font-size: 20px; margin-bottom: 8px; color: var(--text-primary); }
.card-body p { color: var(--text-secondary); font-size: 14px; margin-bottom: 12px; }
.card-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.card-tag {
  display: inline-block; padding: 4px 12px;
  background: rgba(212,168,67,0.1); color: var(--gold);
  font-size: 12px; border-radius: 20px; font-weight: 500;
}

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 32px; }
.feature-item { text-align: center; padding: 32px 20px; }
.feature-icon { font-size: 40px; margin-bottom: 16px; }
.feature-item h3 { font-size: 18px; margin-bottom: 8px; }
.feature-item p { color: var(--text-secondary); font-size: 14px; }

/* Table */
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--border); }
.info-table th { color: var(--gold); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.info-table td { color: var(--text-secondary); font-size: 15px; }
.info-table tr:hover td { color: var(--text-primary); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.gallery-item {
  border-radius: 8px; overflow: hidden; cursor: pointer;
  aspect-ratio: 16/10; background: var(--bg-card);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display: block; font-size: 14px; color: var(--text-secondary); margin-bottom: 6px; font-weight: 500; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 12px 16px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 6px;
  color: var(--text-primary); font-family: inherit; font-size: 15px;
  transition: border-color 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none; border-color: var(--gold);
}
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--gold); margin-bottom: 24px; }
.contact-detail { display: flex; gap: 12px; margin-bottom: 20px; }
.contact-detail .icon { font-size: 20px; flex-shrink: 0; }
.contact-detail p { color: var(--text-secondary); }
.contact-detail strong { color: var(--text-primary); display: block; margin-bottom: 4px; }

.map-container { margin-top: 32px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
.map-container iframe { width: 100%; height: 300px; border: 0; filter: invert(0.9) hue-rotate(180deg); }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.price-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  padding: 32px 24px; text-align: center; transition: border-color 0.3s;
}
.price-card:hover { border-color: var(--gold); }
.price-card.featured { border-color: var(--gold); position: relative; }
.price-card.featured::before {
  content: 'Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--bg-primary); padding: 4px 16px;
  font-size: 12px; font-weight: 600; border-radius: 20px; text-transform: uppercase;
}
.price-card h3 { font-size: 18px; margin-bottom: 8px; }
.price-card .price { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--gold); margin-bottom: 4px; }
.price-card .price-note { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.price-card ul { list-style: none; text-align: left; }
.price-card ul li { padding: 8px 0; color: var(--text-secondary); font-size: 14px; border-bottom: 1px solid var(--border); }
.price-card ul li:last-child { border: none; }

/* Timeline */
.timeline { max-width: 700px; margin: 0 auto; }
.timeline-item { display: flex; gap: 24px; margin-bottom: 32px; }
.timeline-marker { flex-shrink: 0; width: 48px; height: 48px; background: rgba(212,168,67,0.1); border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--gold); font-size: 14px; }
.timeline-content h3 { font-size: 18px; margin-bottom: 4px; }
.timeline-content p { color: var(--text-secondary); font-size: 14px; }

/* Footer */
.site-footer {
  background: var(--bg-secondary); border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--gold); margin-bottom: 12px; }
.footer-brand p { color: var(--text-secondary); font-size: 14px; }
.footer-col h4 { color: var(--text-primary); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: var(--text-muted); font-size: 13px; }

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
}
