:root {
    --black: #050505;
    --gold: #d4af37;
    --dark-gray: #111;
    --text: #ddd;
    --serif: 'Cinzel', serif;
    --sans: 'Raleway', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--black); color: var(--text); font-family: var(--sans); }

.nav-luxury { display: flex; justify-content: space-between; align-items: center; padding: 2rem 5%; position: absolute; width: 100%; z-index: 10; }
.logo { font-family: var(--serif); font-size: 2.2rem; color: #fff; }
.links a { color: #fff; text-decoration: none; margin-left: 2rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; transition: 0.3s; }
.links a:hover { color: var(--gold); }

.hero-lux { height: 100vh; background: linear-gradient(rgba(5,5,5,0.4), rgba(5,5,5,0.9)), url('assets/images/hero.jpg') center/cover; display: flex; align-items: center; justify-content: flex-start; padding: 0 10%; }
.lux-box { max-width: 600px; }
.lux-box h2 { font-family: var(--serif); font-size: 4rem; color: var(--gold); line-height: 1.1; margin-bottom: 1.5rem; }
.lux-box p { font-size: 1.2rem; line-height: 1.8; margin-bottom: 2rem; }

.btn-gold { display: inline-block; background: transparent; color: var(--gold); border: 1px solid var(--gold); padding: 1rem 3rem; text-transform: uppercase; letter-spacing: 2px; font-family: var(--serif); font-weight: 800; cursor: pointer; transition: 0.4s; text-decoration: none; }
.btn-gold:hover { background: var(--gold); color: var(--black); }

.text-center { text-align: center; }
.title { font-family: var(--serif); font-size: 3rem; color: #fff; margin-bottom: 4rem; }

.gallery-lux { padding: 8rem 5%; }
.g-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.g-item { position: relative; height: 500px; overflow: hidden; }
.lux-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; filter: grayscale(80%); transition: 0.5s; cursor: pointer; }
.g-item:hover .lux-img { opacity: 1; filter: grayscale(0%); transform: scale(1.05); }
.g-info { position: absolute; bottom: 0; left: 0; width: 100%; padding: 2rem; background: linear-gradient(transparent, rgba(0,0,0,0.9)); color: var(--gold); border-bottom: 3px solid var(--gold); }
.g-info h3 { font-family: var(--serif); font-size: 1.8rem; margin-bottom: 0.5rem; }

.service-banner { padding: 8rem 5%; background: linear-gradient(rgba(5,5,5,0.7), rgba(5,5,5,0.7)), url('assets/images/banner.jpg') center/cover; background-attachment: fixed; text-align: center; border-top: 1px solid #222; border-bottom: 1px solid #222; }
.b-wrap { max-width: 800px; margin: 0 auto; }
.b-wrap h2 { font-family: var(--serif); font-size: 3.5rem; color: var(--gold); margin-bottom: 1.5rem; }

.contact-lux { padding: 8rem 5%; }
.c-container { max-width: 600px; margin: 0 auto; text-align: center; }
.c-container h2 { font-family: var(--serif); font-size: 3rem; color: #fff; margin-bottom: 1rem; }
.f-row { display: flex; gap: 1rem; }
input { padding: 1.2rem; background: transparent; border: none; border-bottom: 1px solid #333; color: #fff; font-family: var(--sans); font-size: 1rem; outline: none; transition: 0.3s; flex: 1; }
input:focus { border-color: var(--gold); box-shadow: 0 10px 10px -10px var(--gold); }

.footer { padding: 6rem 10%; background: #000; border-top: 1px solid #222; }
.f-layout { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.footer h3 { font-family: var(--serif); font-size: 2rem; color: var(--gold); margin-bottom: 0.5rem; }
.footer a { color: #777; text-decoration: none; transition: 0.3s; }
.footer a:hover { color: var(--gold); }

.cookie-banner { position: fixed; bottom: 0; width: 100%; background: #111; border-top: 1px solid var(--gold); color: #ccc; padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; z-index: 1000; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-banner button { background: var(--gold); color: #000; border: none; padding: 10px 20px; font-family: var(--serif); font-weight: bold; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(40px); transition: 0.8s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) { .links { display: none; } .f-row { flex-direction: column; } .hero-lux { padding-top: 5rem; } }
