/* ====== Base ====== */
:root {
  --bg: #0b0b0d;
  --bg-soft: #121218;
  --text: #e8e8ea;
  --muted: #b7b7c1;
  --gold: #c9a227;
  --card: #161620;
  --accent: #d4af37;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

/* Containers */
.container { width: min(1120px, 92%); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,11,13,0.85);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #1e1e28;
}
.header-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { width: 40px; height: 40px; }
.logo-text strong {
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px; font-size: 18px;
}
.logo-text span { display: block; font-size: 12px; color: var(--muted); }

.nav { display: flex; gap: 18px; }
.nav a {
  color: var(--text); text-decoration: none; font-weight: 600; font-size: 14px;
  padding: 10px 6px; border-radius: 6px;
}
.nav a:hover { color: var(--gold); }
.menu-toggle { display: none; background: none; border: none; color: var(--text); font-size: 22px; }

/* Hero */
.hero {
  position: relative; min-height: 78vh; display: grid; place-items: center; overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(65%);
}
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(transparent, rgba(0,0,0,0.65)); }
.hero-content { position: relative; text-align: center; padding: 96px 0; }
.hero h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(36px, 6vw, 64px); margin: 0 0 8px;
}
.subtitle { color: var(--muted); font-size: clamp(14px, 2.2vw, 18px); margin-bottom: 24px; }

.btn {
  display: inline-block; padding: 12px 20px; border-radius: 999px; text-decoration: none;
  font-weight: 700; letter-spacing: .3px; cursor: pointer; border: 1px solid transparent;
}
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--accent)); color: #080808; }
.btn-primary:hover { filter: brightness(1.05); }

/* Sections */
.section { padding: 72px 0; }
.section-dark { background: var(--bg-soft); }
.section-title { text-align: center; margin-bottom: 28px; }
.section-title h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 40px); margin: 0 0 6px;
}
.section-title p { color: var(--muted); margin-top: 6px; }
.section-title.light h2, .section-title.light p { color: #fff; }
.divider { width: 72px; height: 3px; background: var(--gold); margin: 12px auto 0; border-radius: 3px; }

/* Grid */
.grid { display: grid; gap: 24px; }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) {
  .grid.two { grid-template-columns: 1fr; }
  .grid.four { grid-template-columns: repeat(2, 1fr); }
  .nav { display: none; }
  .menu-toggle { display: inline-block; }
}
@media (max-width: 520px) {
  .grid.four { grid-template-columns: 1fr; }
}

/* About */
.about-photo img { width: 100%; border-radius: 14px; box-shadow: 0 6px 30px rgba(0,0,0,.35); }

/* Cards */
.cards .card {
  background: var(--card); border: 1px solid #232336; border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
}
.cards .card img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 16px 16px 20px; }
.card-body h3 { margin: 0 0 6px; font-size: 18px; }
.card-body p { color: var(--muted); margin: 0; font-size: 14px; }

/* Videos */
.videos .video-card {
  background: var(--card); padding: 12px; border-radius: 16px; border: 1px solid #232336;
}
.videos video { width: 100%; border-radius: 10px; display: block; }
.videos figcaption { margin-top: 8px; color: var(--muted); font-size: 14px; }

/* Gallery */
.gallery-grid img {
  width: 100%; height: 180px; object-fit: cover; border-radius: 14px; border: 1px solid #232336;
}

/* Contact */
.contact-grid .map-embed iframe {
  width: 100%; height: 280px; border: 0; border-radius: 12px; filter: saturate(.9) contrast(1.05);
}
.contact-form {
  background: var(--card); border: 1px solid #232336; border-radius: 16px; padding: 16px;
}
.contact-form label { display: block; font-weight: 600; margin: 10px 0 6px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 12px; border-radius: 10px; border: 1px solid #2a2a3a; background: #0f0f17; color: var(--text);
}
.contact-form button { margin-top: 12px; }

/* Footer */
.site-footer { background: #08080d; border-top: 1px solid #1d1d28; }
.footer-wrap {
  display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 20px 0;
}
.footer-logo { width: 28px; height: 28px; margin-right: 10px; }
.footer-left { display: flex; align-items: center; gap: 12px; }
.footer-right { display: flex; gap: 16px; }
.footer-right a { color: var(--muted); text-decoration: none; font-size: 14px; }
.footer-right a:hover { color: var(--gold); }
.copyright { padding-bottom: 22px; color: var(--muted); font-size: 13px; text-align: center; }

/* Animations */
.reveal { opacity: 0; transform: translateY(14px); transition: .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
