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

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --dark: #0d0d0d;
  --dark2: #1a1a1a;
  --dark3: #242424;
  --white: #ffffff;
  --off-white: #f5f0e8;
  --text-muted: #999;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img, video { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 8px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.logo { font-family: var(--font-serif); font-size: 1.6rem; letter-spacing: 2px; }
.logo-ace { color: var(--gold); }
.logo-group { color: var(--white); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.btn-nav {
  background: var(--gold); color: var(--dark) !important; font-weight: 600 !important;
  padding: 8px 20px; border-radius: 4px; transition: background 0.2s !important;
}
.btn-nav:hover { background: var(--gold-light) !important; }
.hamburger { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* HERO */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; border-radius: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center; color: var(--white);
  padding: 0 20px; max-width: 900px;
}
.hero-tag {
  display: inline-block; background: var(--gold); color: var(--dark);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 1px;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 20px; text-transform: uppercase;
}
.hero-content h1 {
  font-family: var(--font-serif); font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.15; margin-bottom: 16px;
}
.hero-content h1 span { color: var(--gold); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.hero-prices { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.price-card {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,0.4); border-radius: 12px;
  padding: 20px 32px; text-align: center; min-width: 200px;
}
.price-card.pre { border-color: var(--gold); background: rgba(201,168,76,0.15); }
.price-card span { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.7); margin-bottom: 6px; }
.price-card strong { display: block; font-family: var(--font-serif); font-size: 1.8rem; color: var(--gold); }
.price-card.pre strong { font-size: 2rem; }
.price-card small { font-size: 1rem; }
.price-card em { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.6); font-style: normal; margin-top: 4px; }
.btn-hero {
  display: inline-block; background: var(--gold); color: var(--dark);
  font-weight: 700; font-size: 1rem; padding: 16px 40px; border-radius: 6px;
  transition: background 0.2s, transform 0.2s; letter-spacing: 0.5px;
}
.btn-hero:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ANNOUNCEMENT BAR */
.announcement-bar {
  background: var(--dark); color: var(--gold);
  text-align: center; padding: 14px 20px; font-size: 0.88rem;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.announcement-bar a { color: var(--gold-light); text-decoration: underline; }

/* SECTIONS */
.section { padding: 90px 0; }
.section-dark { background: var(--dark2); }
.section-gold { background: linear-gradient(135deg, var(--dark) 0%, #1c1500 100%); }
.section-tag {
  display: inline-block; color: var(--gold); font-size: 0.78rem;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-tag.light { color: var(--gold-light); }
h2 {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2; margin-bottom: 16px; color: var(--dark);
}
h2.light { color: var(--white); }
.section-gold h2 { color: var(--white); }
.section-sub { color: #555; max-width: 640px; margin-bottom: 48px; font-size: 1rem; }
.section-sub.light { color: rgba(255,255,255,0.7); }

/* HIGHLIGHTS */
.highlights-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.highlight-card {
  background: var(--off-white); border-radius: 12px; padding: 32px 28px;
  border: 1px solid #e8e0d0; transition: transform 0.2s, box-shadow 0.2s;
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.h-icon { font-size: 2rem; margin-bottom: 14px; }
.highlight-card h3 { font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 8px; color: var(--dark); }
.highlight-card p { color: #666; font-size: 0.9rem; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; max-width: 800px; margin: 0 auto 24px; }
.pricing-card {
  background: var(--dark3); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 40px 36px; text-align: center; color: var(--white); position: relative;
}
.pricing-card.featured { border-color: var(--gold); background: linear-gradient(145deg, #1a1500, #2a2000); }
.badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--dark); font-size: 0.75rem; font-weight: 700;
  padding: 5px 16px; border-radius: 20px; white-space: nowrap;
}
.pricing-card h3 { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 16px; color: var(--gold); }
.price-big { font-family: var(--font-serif); font-size: 2.8rem; color: var(--white); margin-bottom: 6px; }
.price-big span { font-size: 1.2rem; color: var(--text-muted); }
.pricing-card > p { color: var(--text-muted); font-size: 0.82rem; margin-bottom: 24px; }
.pricing-card ul { list-style: none; text-align: left; margin-bottom: 32px; }
.pricing-card ul li { padding: 6px 0; font-size: 0.9rem; color: rgba(255,255,255,0.8); border-bottom: 1px solid rgba(255,255,255,0.06); }
.btn-price {
  display: block; background: var(--gold); color: var(--dark);
  font-weight: 700; padding: 14px; border-radius: 6px; transition: background 0.2s;
}
.btn-price:hover { background: var(--gold-light); }
.btn-price.outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn-price.outline:hover { background: var(--gold); color: var(--dark); }
.pricing-note { text-align: center; color: rgba(255,255,255,0.4); font-size: 0.78rem; max-width: 600px; margin: 0 auto; }

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 16px;
}
.gallery-item { overflow: hidden; border-radius: 10px; background: #111; }
.gallery-item.wide { grid-column: span 3; }
.gallery-item img, .gallery-item video { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; transition: transform 0.3s; }
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.03); }

/* STATS */
.stats-row { display: flex; gap: 0; flex-wrap: wrap; justify-content: center; margin-top: 40px; }
.stat {
  flex: 1; min-width: 160px; text-align: center; padding: 32px 20px;
  border-right: 1px solid rgba(201,168,76,0.2);
}
.stat:last-child { border-right: none; }
.stat strong { display: block; font-family: var(--font-serif); font-size: 2.8rem; color: var(--gold); }
.stat span { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* CONTACT */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-info h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 28px; }
.info-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.info-item span { font-size: 1.4rem; margin-top: 2px; }
.info-item strong { display: block; font-size: 0.85rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.info-item p, .info-item a { color: #444; font-size: 0.95rem; }
.btn-whatsapp {
  display: inline-block; background: #25D366; color: var(--white);
  font-weight: 600; padding: 14px 28px; border-radius: 6px; margin-top: 8px;
  transition: background 0.2s;
}
.btn-whatsapp:hover { background: #1ebe5d; }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid #ddd; border-radius: 6px;
  font-family: var(--font-sans); font-size: 0.95rem; background: var(--off-white);
  transition: border-color 0.2s; outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold); background: var(--white); }
.btn-submit {
  background: var(--gold); color: var(--dark); font-weight: 700; font-size: 1rem;
  padding: 16px; border: none; border-radius: 6px; cursor: pointer;
  transition: background 0.2s; font-family: var(--font-sans);
}
.btn-submit:hover { background: var(--gold-light); }
.form-note { font-size: 0.78rem; color: #888; text-align: center; }
.form-success { background: #e8f5e9; color: #2e7d32; padding: 14px; border-radius: 6px; text-align: center; font-weight: 500; }

/* FOOTER */
footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { margin-bottom: 12px; }
footer p { font-size: 0.88rem; line-height: 1.7; }
footer h4 { color: var(--gold); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul a, footer a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color 0.2s; }
footer a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 24px; text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
.disclaimer { font-size: 0.72rem !important; color: rgba(255,255,255,0.25) !important; max-width: 800px; margin: 0 auto !important; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .navbar { padding: 14px 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--dark); padding: 20px; gap: 16px; }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.wide { grid-column: span 2; }
}

@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .hero-prices { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.2); }
  .footer-inner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
}
