:root {
  --bg: #0e0d0b;
  --bg-2: #16140f;
  --card: #1a1813;
  --text: #f5efe0;
  --muted: #a8a193;
  --gold: #d4a84a;
  --gold-soft: #e6c878;
  --gold-deep: #b8862a;
  --brown: #3b2c1d;
  --border: rgba(212, 168, 74, 0.18);
  --border-strong: rgba(212, 168, 74, 0.4);
  --gradient-gold: linear-gradient(135deg, #e6c878, #b8862a);
  --shadow-gold: 0 10px 40px -10px rgba(212, 168, 74, 0.4);
  --shadow-luxe: 0 25px 60px -20px rgba(0, 0, 0, 0.7);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  background-image:
    radial-gradient(ellipse 800px 600px at 10% 0%, rgba(212, 168, 74, 0.07), transparent 60%),
    radial-gradient(ellipse 600px 500px at 90% 100%, rgba(59, 44, 29, 0.3), transparent 60%);
  background-attachment: fixed;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.01em; font-weight: 400; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
.gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.gold { color: var(--gold); }
.italic { font-style: italic; }
.center { text-align: center; }

/* GLASS */
.glass { background: rgba(26, 24, 19, 0.5); backdrop-filter: blur(16px); border: 1px solid var(--border); }
.glass-strong { background: rgba(14, 13, 11, 0.78); backdrop-filter: blur(20px); border: 1px solid var(--border); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 2rem; border-radius: 999px; font-weight: 500;
  font-size: 0.95rem; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.2s, background 0.2s, color 0.2s;
  font-family: var(--font-sans);
}
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.85rem; }
.btn-gold { background: var(--gradient-gold); color: #1a1410; box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: scale(1.03); }
.btn-outline { background: rgba(14,13,11,0.6); color: var(--gold); border-color: var(--border-strong); backdrop-filter: blur(20px); }
.btn-outline:hover { background: rgba(212, 168, 74, 0.1); }
.btn-ghost { background: rgba(26,24,19,0.7); color: var(--text); border-color: var(--border); backdrop-filter: blur(20px); padding: 0.75rem 1.5rem; font-size: 0.875rem; }
.btn-ghost:hover { border-color: var(--border-strong); }
.w-full { width: 100%; justify-content: center; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  background: rgba(14, 13, 11, 0.78); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; height: 80px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gradient-gold); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  color: #1a1410; box-shadow: var(--shadow-gold);
}
.brand-name { font-family: var(--font-display); font-size: 1.15rem; }
.brand-sub { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.875rem; color: var(--muted); position: relative; transition: color 0.2s; }
.nav-links a:not(.btn):hover { color: var(--gold); }
.nav-links a:not(.btn)::after {
  content: ''; position: absolute; bottom: -4px; left: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.3s;
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-toggle { display: none; background: none; border: none; color: var(--gold); font-size: 1.5rem; cursor: pointer; }

@media (max-width: 860px) {
  .nav-links { display: none; position: absolute; top: 80px; left: 0; right: 0; flex-direction: column; gap: 1rem; padding: 1.5rem; background: rgba(14,13,11,0.95); border-top: 1px solid var(--border); align-items: flex-start; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}

/* HERO */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; padding-top: 80px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--bg) 0%, rgba(14,13,11,0.85) 40%, rgba(14,13,11,0.4) 100%),
    linear-gradient(to top, var(--bg) 0%, transparent 50%, rgba(14,13,11,0.6) 100%);
}
.hero-grid { position: relative; padding: 5rem 1.5rem; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem; border-radius: 999px;
  background: rgba(26,24,19,0.5); backdrop-filter: blur(16px); border: 1px solid var(--border);
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem); font-weight: 300; line-height: 1.05; margin-bottom: 1.5rem;
}
.hero-title .italic { font-weight: 500; }
.hero-sub { font-size: clamp(1rem, 1.5vw, 1.2rem); color: var(--muted); max-width: 36rem; margin-bottom: 2.5rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.stats { margin-top: 3.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 28rem; }
.stat-num { font-family: var(--font-display); font-size: 1.875rem; }
.stat-lbl { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* SECTIONS */
.section { padding: 6rem 0; position: relative; }
@media (min-width: 768px) { .section { padding: 8rem 0; } }
.section-head { margin-bottom: 3.5rem; }
.eyebrow { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 1rem; }
.section h2 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); font-weight: 300; line-height: 1.1; max-width: 50rem; }

/* ABOUT */
.about-grid { display: grid; gap: 3rem; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-grid p { font-size: 1.0625rem; color: var(--muted); }
.chip-grid { margin-top: 3.5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 768px) { .chip-grid { grid-template-columns: repeat(4, 1fr); } }
.chip {
  text-align: center; padding: 1rem 1.25rem; font-size: 0.875rem;
  background: rgba(26,24,19,0.5); backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: 1rem; transition: border-color 0.2s;
}
.chip:hover { border-color: var(--border-strong); }

/* FILTERS */
.filters { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 3rem; }
.filter-btn {
  padding: 0.5rem 1.25rem; border-radius: 999px; font-size: 0.875rem;
  border: 1px solid var(--border); background: transparent; color: var(--muted);
  cursor: pointer; transition: all 0.2s; font-family: var(--font-sans);
}
.filter-btn:hover { color: var(--gold); border-color: var(--border-strong); }
.filter-btn.active { background: var(--gradient-gold); color: #1a1410; border-color: transparent; box-shadow: var(--shadow-gold); }

/* PRODUCTS */
.product-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 600px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
.product {
  background: rgba(26,24,19,0.5); backdrop-filter: blur(16px); border: 1px solid var(--border);
  border-radius: 1rem; overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.product:hover { border-color: var(--border-strong); box-shadow: var(--shadow-luxe); transform: translateY(-4px); }
.product-img { aspect-ratio: 1; overflow: hidden; background: rgba(14,13,11,0.4); }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.product:hover .product-img img { transform: scale(1.1); }
.product-body { padding: 1.5rem; }
.product-body h3 { font-size: 1.25rem; font-weight: 500; margin-bottom: 0.5rem; }
.product-price { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 1rem; }
.product-price .price { font-family: var(--font-display); font-size: 1.5rem; }
.product-price .meta { font-size: 0.75rem; color: var(--muted); }
.product-spec { font-size: 0.875rem; margin-bottom: 0.4rem; display: flex; gap: 0.5rem; }
.product-spec dt { color: var(--muted); min-width: 80px; }
.product .btn { margin-top: 1.25rem; padding: 0.65rem 1.25rem; font-size: 0.875rem; width: 100%; justify-content: center; background: transparent; border-color: var(--border-strong); color: var(--gold); }
.product .btn:hover { background: var(--gold); color: #1a1410; }

/* GALLERY */
.masonry { columns: 2; column-gap: 1rem; }
@media (min-width: 768px) { .masonry { columns: 3; } }
.masonry-item {
  break-inside: avoid; margin-bottom: 1rem; border-radius: 1rem; overflow: hidden;
  background: rgba(26,24,19,0.5); border: 1px solid var(--border);
}
.masonry-item img { width: 100%; transition: transform 0.7s; }
.masonry-item:hover img { transform: scale(1.05); }

/* FEATURES */
.features { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 600px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features { grid-template-columns: repeat(3, 1fr); } }
.feature {
  background: rgba(26,24,19,0.5); backdrop-filter: blur(16px); border: 1px solid var(--border);
  border-radius: 1rem; padding: 1.75rem; transition: border-color 0.2s;
}
.feature:hover { border-color: var(--border-strong); }
.feature-ico {
  width: 48px; height: 48px; border-radius: 0.75rem;
  background: var(--gradient-gold); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 1.25rem; color: #1a1410; box-shadow: var(--shadow-gold);
}
.feature h3 { font-size: 1.25rem; font-weight: 500; margin-bottom: 0.5rem; }
.feature p { color: var(--muted); font-size: 0.9rem; }

/* TESTIMONIALS */
.testimonials { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }
.testi {
  background: rgba(26,24,19,0.5); backdrop-filter: blur(16px); border: 1px solid var(--border);
  border-radius: 1rem; padding: 2rem; position: relative;
}
.testi-quote { position: absolute; top: 1.25rem; right: 1.25rem; font-size: 2.5rem; color: var(--gold); opacity: 0.25; font-family: var(--font-display); line-height: 1; }
.stars { color: var(--gold); margin-bottom: 1rem; letter-spacing: 2px; }
.testi p { color: var(--muted); margin-bottom: 1.5rem; }
.testi-by { border-top: 1px solid var(--border); padding-top: 1rem; }
.testi-name { font-weight: 500; }
.testi-role { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-row { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-ico {
  width: 48px; height: 48px; border-radius: 0.75rem; flex-shrink: 0;
  background: rgba(26,24,19,0.5); backdrop-filter: blur(16px); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem;
}
.contact-lbl { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); margin-bottom: 0.25rem; }
.contact-val { display: block; }
a.contact-val:hover { color: var(--gold); }
.map { margin-top: 2rem; border-radius: 1rem; overflow: hidden; border: 1px solid var(--border); }
.map iframe { width: 100%; height: 280px; border: 0; filter: grayscale(0.4) contrast(1.05); }

/* FORM */
.quote-form {
  background: rgba(26,24,19,0.5); backdrop-filter: blur(16px); border: 1px solid var(--border);
  border-radius: 1.5rem; padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem;
}
.quote-form label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); }
.quote-form input, .quote-form textarea {
  width: 100%; margin-top: 0.5rem; padding: 0.75rem 1rem;
  background: rgba(0,0,0,0.25); border: 1px solid var(--border); border-radius: 0.75rem;
  color: var(--text); font-family: var(--font-sans); font-size: 0.9rem; resize: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.quote-form input:focus, .quote-form textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212, 168, 74, 0.15);
}
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 500px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

/* FOOTER */
.footer { border-top: 1px solid var(--border); background: rgba(14,13,11,0.6); margin-top: 5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 1.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-text { color: var(--muted); font-size: 0.875rem; margin-top: 1.25rem; line-height: 1.7; }
.footer-title { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 1.25rem; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer ul a { font-size: 0.875rem; color: var(--muted); transition: color 0.2s; }
.footer ul a:hover { color: var(--gold); }
.socials { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%; font-size: 0.7rem;
  background: rgba(26,24,19,0.5); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
  transition: all 0.2s;
}
.socials a:hover { background: var(--gradient-gold); color: #1a1410; }
.footer-bar {
  border-top: 1px solid var(--border); padding: 1.5rem; font-size: 0.75rem; color: var(--muted);
  display: flex; flex-direction: column; gap: 0.75rem; justify-content: space-between;
}
@media (min-width: 768px) { .footer-bar { flex-direction: row; } }

/* FLOATING WHATSAPP */
.fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: white; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-luxe); transition: transform 0.2s;
}
.fab:hover { transform: scale(1.1); }
.fab-ping {
  position: absolute; inset: 0; border-radius: 50%; background: #25d366;
  opacity: 0.4; animation: ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping {
  0% { transform: scale(1); opacity: 0.5; }
  75%, 100% { transform: scale(1.7); opacity: 0; }
}

/* MODAL */
.modal {
  position: fixed; inset: 0; z-index: 60; display: none;
  align-items: center; justify-content: center; padding: 1rem;
  background: rgba(14,13,11,0.8); backdrop-filter: blur(6px);
}
.modal.open { display: flex; animation: fade 0.25s ease-out; }
.modal-card {
  background: rgba(14,13,11,0.95); border: 1px solid var(--border-strong);
  border-radius: 1.5rem; padding: 2rem; max-width: 32rem; width: 100%;
  position: relative; box-shadow: var(--shadow-luxe);
  animation: pop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-x { position: absolute; top: 1rem; right: 1rem; background: none; border: none; color: var(--muted); cursor: pointer; font-size: 1.1rem; }
.modal-x:hover { color: var(--gold); }
.modal-title { font-size: 1.625rem; margin-bottom: 0.25rem; }
.modal-sub { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.5rem; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop { from { opacity: 0; transform: translateY(20px) scale(0.95); } to { opacity: 1; transform: none; } }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
.reveal.visible { opacity: 1; transform: none; }
