/* Tipografia */
:root{--gold:#c9a646;--dark:#0b0b0b;--light:#faf7f2;--muted:#6d6d6d}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu; color:#222; background:#fff; line-height:1.6}
img{max-width:100%; display:block}
.container{width:min(1120px,92vw); margin:auto}
.small{font-size:.9rem; color:var(--muted)}
.center{text-align:center}

/* Topbar */
.topbar{position:sticky; top:0; z-index:1000; background:#000; border-bottom:1px solid #111}
.topbar .logo{height:54px}
.flex{display:flex; gap:1rem}
.between{justify-content:space-between}
.center{align-items:center}
.menu a{color:#f3f3f3; text-decoration:none; margin:0 .75rem; font-weight:500}
.menu a.btn{margin-left:1rem}
.menu a:hover{color:var(--gold)}

/* Buttons */
.btn{display:inline-block; padding:.7rem 1rem; border-radius:999px; border:1px solid var(--gold); color:var(--gold); text-decoration:none; font-weight:600}
.btn.primary{background:var(--gold); color:#111; border-color:var(--gold)}
.btn.primary:hover{filter:brightness(.95)}
.btn.ghost:hover{background:rgba(201,166,70,.12)}
.btn.large{padding:1rem 1.25rem; font-size:1.05rem}

/* Hero */
.hero{background:linear-gradient(180deg,#0b0b0b 0,#1a1a1a 100%); color:#fff; padding:6rem 0 4rem}
.grid-2{display:grid; grid-template-columns:1.2fr .8fr; gap:2rem}
.hero h1{font-family:'Playfair Display',serif; font-size:clamp(1.8rem,2.7vw,3rem); margin:0 0 .5rem}
.hero .lead{font-size:1.15rem; color:#ddd; margin:.25rem 0}
.logo-hero{max-width:360px; margin-inline:auto; filter:drop-shadow(0 10px 30px rgba(201,166,70,.35))}
.cta{margin-top:1.25rem; display:flex; gap:.75rem; flex-wrap:wrap}

/* Sections */
.section{padding:3.5rem 0}
.section.alt{background:var(--light)}
.section h2{font-family:'Playfair Display',serif; font-size:2rem; margin:.25rem 0 1rem; color:#111}
.subtitle{color:var(--muted); margin-top:-.25rem}

/* Gallery */
.gallery{display:grid; grid-template-columns:repeat(2,1fr); gap:1rem; margin-top:1.25rem}
.gallery.three{grid-template-columns:repeat(3,1fr)}
figure{border-radius:10px; overflow:hidden; background:#fff; box-shadow:0 8px 20px rgba(0,0,0,.06)}
figure img{aspect-ratio:4/3; object-fit:cover}
figcaption{padding:.75rem 1rem; font-size:.95rem; color:#333}

/* Quotes */
.quotes{background:#000; color:#fff; padding:2.5rem 0}
.quotes blockquote{font-family:'Playfair Display',serif; font-size:1.25rem; text-align:center; margin:0 auto 1rem; width:min(900px,92vw); color:#f4f4f4}

/* Video */
.video-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:1.25rem}

/* Map & Contact */
.grid-2{align-items:start}
.map-wrapper{border-radius:12px; overflow:hidden; box-shadow:0 10px 30px rgba(0,0,0,.08)}
.social{list-style:none; padding:0; margin:1rem 0 0; display:flex; gap:.75rem}
.social img{width:38px; height:38px}

/* Footer */
.footer{background:#0e0e0e; color:#cfcfcf; padding:1rem 0}
.footer .backtop{color:#cfcfcf; text-decoration:none}
.footer .backtop:hover{color:var(--gold)}

/* Responsive */
@media (max-width:900px){
  .grid-2{grid-template-columns:1fr}
  .hero{padding:4.5rem 0 2.5rem}
  .gallery.three{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:560px){
  .menu{display:none}
  .gallery,.gallery.three{grid-template-columns:1fr}
}
