:root {
  --bg: #0a0a0a;
  --surface: #121212;
  --text: #f5f5f5;
  --muted: #a8a8a8;
  --gold: #d8bd7e;
  --border: rgba(255, 255, 255, 0.12);
  --metal: linear-gradient(120deg, #ffffff, #d8bd7e, #b9c0c8, #ffffff);
  --glow: 0 0 0 1px rgba(216, 189, 126, 0.25), 0 18px 60px -20px rgba(216, 189, 126, 0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { background: var(--bg); color: var(--text); font-family: "Poppins", sans-serif; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, .brand-name { font-family: "Playfair Display", serif; font-weight: 500; }

.container { width: min(1200px, 92%); margin: 0 auto; }
.section { padding: 96px 0; }
.section.alt { background: rgba(255, 255, 255, 0.02); }
.center { text-align: center; }
.muted { color: var(--muted); line-height: 1.9; font-size: 0.95rem; margin-top: 14px; }
.small { font-size: 0.82rem; }
.gold { color: var(--gold); }
.eyebrow { font-size: 0.7rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--muted); }
.hairline, .divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(216,189,126,0.6), transparent); margin: 26px 0; }
.divider { width: 140px; margin: 26px auto; }
.head { text-align: center; margin-bottom: 56px; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-top: 18px; }

.metal-text {
  background-image: var(--metal); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shine 6s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }

/* NAV */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 50; padding: 20px 0; transition: 0.4s; }
.nav.scrolled { padding: 12px 0; background: rgba(10,10,10,0.88); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); }
.brand-name { letter-spacing: 0.28em; font-size: 1.15rem; }
.menu { display: flex; align-items: center; gap: 34px; }
.menu a:not(.btn-gold) { position: relative; font-size: 0.82rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted); transition: 0.3s; }
.menu a:not(.btn-gold)::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0; background-image: var(--metal); transition: 0.35s; }
.menu a:not(.btn-gold):hover { color: var(--text); }
.menu a:not(.btn-gold):hover::after { width: 100%; }
.burger { display: none; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); background: none; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.burger span { width: 16px; height: 1px; background: var(--text); }

.btn-gold, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 34px; border-radius: 999px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: 0.4s;
}
.btn-gold { background-image: var(--metal); background-size: 200% auto; color: #0a0a0a; border: none; }
.btn-gold:hover { background-position: right center; box-shadow: var(--glow); transform: translateY(-2px); }
.btn-outline { border: 1px solid rgba(216,189,126,0.55); color: var(--gold); }
.btn-outline:hover { background: rgba(216,189,126,0.12); box-shadow: var(--glow); }
.full { width: 100%; }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; text-align: center; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 115%; object-fit: cover; opacity: 0.35; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, #0a0a0a, rgba(10,10,10,0.7), #0a0a0a); }
.hero-content { position: relative; padding-top: 110px; }
.hero h1 { font-size: clamp(2.6rem, 9vw, 6.5rem); letter-spacing: 0.06em; line-height: 1.05; margin-top: 24px; }
.hero-sub { display: block; font-family: "Poppins", sans-serif; font-size: clamp(0.8rem, 2vw, 1.1rem); letter-spacing: 0.42em; color: var(--muted); margin-top: 14px; }
.typing { font-family: "Playfair Display", serif; font-size: clamp(1.3rem, 4vw, 2.1rem); }
.caret { color: var(--gold); animation: blink 1s step-end infinite; }
@keyframes blink { 0%,49% { opacity: 1; } 50%,100% { opacity: 0; } }
.lead { max-width: 640px; margin: 24px auto 0; color: var(--muted); line-height: 1.9; font-size: 0.95rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 40px; }
.rating { margin-top: 40px; color: var(--muted); font-size: 0.9rem; }
.stars { color: var(--gold); letter-spacing: 3px; }

/* LAYOUT */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.grid-2.gap { gap: 24px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 36px; }
.stats .card { text-align: center; padding: 22px 10px; }
.stats strong { font-family: "Playfair Display", serif; font-size: 1.7rem; display: block; }
.stats span { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }

.card {
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--border); border-radius: 4px; padding: 32px;
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s; backdrop-filter: blur(10px);
}
.card:hover { transform: translateY(-6px); border-color: rgba(216,189,126,0.45); box-shadow: var(--glow); }
.card h3 { font-size: 1.5rem; margin-top: 20px; }
.icon { width: 54px; height: 54px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.2rem; }
.card .link { display: inline-block; margin-top: 22px; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.info > div + div { margin-top: 20px; }

/* GALLERY */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery img { height: 300px; width: 100%; object-fit: cover; }
.zoom { overflow: hidden; border-radius: 4px; }
.zoom img { transition: transform 0.9s cubic-bezier(0.2,0.8,0.2,1); }
.zoom:hover img { transform: scale(1.09); }

/* FORM */
.form label { display: block; margin-top: 18px; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.form input, .form select, .form textarea {
  width: 100%; margin-top: 8px; padding: 13px 16px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.16); background: rgba(0,0,0,0.4); color: var(--text);
  font-family: inherit; font-size: 0.9rem; outline: none; transition: 0.3s;
}
.form input:focus, .form select:focus, .form textarea:focus { border-color: rgba(216,189,126,0.6); box-shadow: 0 0 0 2px rgba(216,189,126,0.2); }
.form .btn-gold { margin-top: 26px; }
.map { margin-top: 24px; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.map iframe { display: block; filter: grayscale(1); transition: filter 0.6s; border: 0; }
.map iframe:hover { filter: grayscale(0); }

/* FOOTER */
.footer { border-top: 1px solid var(--border); background: rgba(255,255,255,0.02); padding: 56px 0; }
.footer-logo { margin: 0 auto; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); }
.footer .brand-name { margin-top: 18px; font-size: 1.3rem; letter-spacing: 0.3em; }
.socials { display: flex; justify-content: center; gap: 14px; margin-top: 26px; }
.socials a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; letter-spacing: 0.1em; color: var(--gold); transition: 0.35s; }
.socials a:hover { border-color: rgba(216,189,126,0.6); box-shadow: var(--glow); }

.fab { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 56px; height: 56px; border-radius: 50%; background-image: var(--metal); color: #0a0a0a; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; box-shadow: 0 10px 40px -10px rgba(216,189,126,0.8); transition: transform 0.3s; }
.fab:hover { transform: scale(1.1); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity 0.9s cubic-bezier(0.2,0.8,0.2,1), transform 0.9s cubic-bezier(0.2,0.8,0.2,1); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .grid-2, .grid-3, .gallery { grid-template-columns: 1fr 1fr; }
  .grid-2 { gap: 32px; }
}
@media (max-width: 700px) {
  .section { padding: 68px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery img { height: 210px; }
  .burger { display: flex; }
  .menu { display: none; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: flex-start; gap: 18px; padding: 24px 5%; background: rgba(10,10,10,0.97); border-top: 1px solid var(--border); }
  .menu.open { display: flex; }
}
