@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800;900&family=Cormorant+Garamond:wght@300;400;600;700&display=swap');

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

:root {
  --gold: #c9a84c;
  --gold-light: #e8c56a;
  --gold-dim: rgba(201,168,76,0.15);
  --dark: #080808;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --text: #f0ede8;
  --text-muted: rgba(240,237,232,0.5);
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--dark); color: var(--text); overflow-x: hidden; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%; background: rgba(8,8,8,0.9); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { width: 42px; height: 42px; object-fit: contain; border-radius: 50%; border: 2px solid var(--gold); }
.nav-logo span { font-weight: 800; color: var(--gold); font-size: 1rem; letter-spacing: 1px; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a { color: rgba(240,237,232,0.6); text-decoration: none; padding: 8px 16px; border-radius: 8px; font-size: 0.88rem; font-weight: 500; transition: all 0.3s; }
.nav-links a:hover { color: var(--gold); }
.nav-links .back-link { border: 1px solid rgba(201,168,76,0.3); color: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--gold); border-radius: 2px; }

/* HERO */
.vito-hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: flex-end; padding-bottom: 100px; padding-left: 8%;
  overflow: hidden;
}
.vito-hero-bg {
  position: absolute; inset: 0;
  background-image: url('../pictures/Vito3.jpeg');
  background-size: cover; background-position: center;
}
.vito-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.85) 0%, rgba(8,8,8,0.3) 60%, rgba(8,8,8,0.6) 100%);
}
.vito-hero-content { position: relative; z-index: 2; max-width: 680px; }
.luxury-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 5px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 20px;
}
.luxury-label::before, .luxury-label::after { content: ''; display: block; width: 30px; height: 1px; background: var(--gold); }
.vito-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 700; color: #fff;
  line-height: 1.05; margin-bottom: 24px; letter-spacing: -1px;
}
.vito-hero-content h1 span { color: var(--gold); }
.vito-hero-content p { color: rgba(240,237,232,0.7); font-size: 1.05rem; line-height: 1.8; margin-bottom: 40px; max-width: 500px; }
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0a0a; font-weight: 800; font-size: 0.9rem; font-family: 'Outfit', sans-serif;
  padding: 14px 32px; border-radius: 50px; text-decoration: none;
  transition: all 0.3s; box-shadow: 0 8px 32px rgba(201,168,76,0.35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(201,168,76,0.55); }
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff; font-weight: 700; font-size: 0.9rem;
  padding: 14px 28px; border-radius: 50px; text-decoration: none;
  transition: all 0.3s; box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.btn-wa:hover { transform: translateY(-3px); background: #1da851; }
.btn-outline-gold {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--gold); color: var(--gold); font-weight: 600; font-size: 0.9rem;
  padding: 13px 28px; border-radius: 50px; text-decoration: none; transition: all 0.3s;
}
.btn-outline-gold:hover { background: var(--gold-dim); }

/* SCROLL INDICATOR */
.scroll-hint { position: absolute; bottom: 36px; right: 8%; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(201,168,76,0.6); font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; }
.scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollDrop 2s ease infinite; }
@keyframes scrollDrop { 0%,100%{opacity:0;transform:scaleY(0);transform-origin:top} 50%{opacity:1;transform:scaleY(1)} }

/* SPECS STRIP */
.specs-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  background: var(--dark2); border-top: 1px solid rgba(201,168,76,0.12); border-bottom: 1px solid rgba(201,168,76,0.12);
}
.spec-block {
  padding: 36px 28px; border-right: 1px solid rgba(201,168,76,0.08);
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px;
}
.spec-block:last-child { border-right: none; }
.spec-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.spec-desc { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; }

/* ABOUT SECTION */
.about-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  padding: 100px 8%; align-items: center;
}
.about-text .label { font-size: 0.72rem; font-weight: 700; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; }
.about-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 24px; }
.about-text p { color: var(--text-muted); line-height: 1.9; margin-bottom: 16px; font-size: 0.95rem; }
.gold-divider { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin: 28px 0; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.feature-list li { display: flex; align-items: center; gap: 12px; color: var(--text-muted); font-size: 0.9rem; }
.feature-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.about-img { border-radius: 16px; overflow: hidden; position: relative; }
.about-img img { width: 100%; height: 500px; object-fit: cover; }
.about-img::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(201,168,76,0.2); border-radius: 16px; }

/* GALLERY */
.gallery-section { padding: 80px 8%; background: var(--dark2); }
.gallery-section .label { font-size: 0.72rem; font-weight: 700; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; }
.gallery-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700; color: #fff; margin-bottom: 48px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { border-radius: 12px; overflow: hidden; cursor: pointer; position: relative; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after { content: '&#128269;'; position: absolute; inset: 0; background: rgba(0,0,0,0); display: flex; align-items: center; justify-content: center; font-size: 2rem; opacity: 0; transition: all 0.3s; }
.gallery-item:hover::after { background: rgba(0,0,0,0.4); opacity: 1; }

/* VIP CTA */
.vip-cta-section {
  padding: 100px 8%; text-align: center;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 70%);
  border-top: 1px solid rgba(201,168,76,0.1);
}
.vip-cta-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.vip-cta-section p { color: var(--text-muted); margin-bottom: 12px; font-size: 0.95rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.ext-link-note { font-size: 0.8rem; color: var(--gold); letter-spacing: 1px; margin-bottom: 36px; display: block; }
.cta-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer { background: #050505; border-top: 1px solid rgba(201,168,76,0.1); padding: 48px 8% 28px; }
.footer-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; margin-bottom: 32px; }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo img { width: 50px; height: 50px; object-fit: contain; border-radius: 50%; border: 2px solid var(--gold); }
.footer-logo span { font-weight: 800; color: var(--gold); font-size: 1.05rem; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(201,168,76,0.08); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { color: var(--text-muted); font-size: 0.78rem; }

/* FLOATING */
.float-btns { position: fixed; bottom: 28px; right: 24px; z-index: 500; display: flex; flex-direction: column; gap: 14px; }
.float-btn { width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; color: #fff; box-shadow: 0 6px 24px rgba(0,0,0,0.4); transition: transform 0.3s, box-shadow 0.3s; }
.float-btn:hover { transform: scale(1.12) translateY(-3px); }
.float-wa { background: #25d366; }
.float-call { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.float-call svg { stroke: #0a0a0a; }

/* LIGHTBOX */
.lightbox { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.92); backdrop-filter: blur(12px); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 12px; object-fit: contain; }
.lightbox-close { position: fixed; top: 20px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: rgba(201,168,76,0.2); border: 1px solid var(--gold); cursor: pointer; color: var(--gold); font-size: 1.3rem; display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
.lightbox-close:hover { background: var(--gold); color: #000; }

@media(max-width:1024px) {
  .specs-strip { grid-template-columns: repeat(2,1fr); }
  .about-section { grid-template-columns: 1fr; gap: 48px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(8,8,8,0.98); padding: 20px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .vito-hero { padding-bottom: 80px; padding-left: 5%; }
  .about-section { padding: 64px 5%; }
  .gallery-section { padding: 64px 5%; }
  .vip-cta-section { padding: 64px 5%; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-row { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
