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

:root {
  --dark: #0f0f11;
  --dark-2: #17171a;
  --gold: #c9a24b;
  --gold-light: #e0c37a;
  --text: #e8e8e8;
  --text-muted: #a0a0a0;
  --white: #ffffff;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 15px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a1a1a;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(201,162,75,0.35); }

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold-light);
  background: transparent;
}

.btn-outline:hover { background: var(--gold); color: #1a1a1a; }

.btn-small { padding: 10px 22px; font-size: 14px; }

/* HEADER */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(15,15,17,0.92);
  backdrop-filter: blur(8px);
  z-index: 1000;
  border-bottom: 1px solid rgba(201,162,75,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.logo span { color: var(--gold); }

.nav ul { display: flex; gap: 32px; }
.nav a { font-size: 15px; font-weight: 500; transition: color 0.3s; }
.nav a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(201,162,75,0.12), transparent 60%), linear-gradient(160deg, #0f0f11 0%, #1c1c20 100%);
  padding-top: 90px;
  position: relative;
}

.hero-text { max-width: 620px; }

.hero-text h1 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-text h1 span { color: var(--gold); }

.hero-text p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* STATS */
.stats { background: var(--dark-2); padding: 50px 0; border-top: 1px solid rgba(201,162,75,0.1); border-bottom: 1px solid rgba(201,162,75,0.1); }
.stats-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; text-align: center; }
.stat h3 { font-size: 36px; color: var(--gold); margin-bottom: 6px; }
.stat p { color: var(--text-muted); font-size: 14px; }

/* SECTION */
.section { padding: 100px 0; }
.section.alt { background: var(--dark-2); }

.section-title {
  font-size: 38px;
  text-align: center;
  margin-bottom: 12px;
}

.section-title.left { text-align: left; }

.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 50px;
  font-size: 16px;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: var(--dark-2);
  border: 1px solid rgba(201,162,75,0.15);
  border-radius: 10px;
  padding: 36px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover { transform: translateY(-6px); border-color: var(--gold); }

.card-icon { font-size: 36px; margin-bottom: 16px; }

.card h3 { font-size: 20px; margin-bottom: 12px; }
.card p { color: var(--text-muted); font-size: 15px; }

/* ABOUT */
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-text p { color: var(--text-muted); margin-bottom: 24px; }

.about-list { margin-bottom: 30px; }
.about-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.about-list li::before {
  content: '✓';
  color: var(--gold);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.about-image {
  width: 100%;
  height: 380px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2a2a2e, #1a1a1c);
  border: 1px solid rgba(201,162,75,0.2);
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  height: 220px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2b2b2f, #17171a);
  border: 1px solid rgba(201,162,75,0.15);
  transition: transform 0.3s ease;
}

.gallery-item:hover { transform: scale(1.03); }

/* TESTIMONIALS */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial {
  background: var(--dark);
  border: 1px solid rgba(201,162,75,0.15);
  padding: 30px;
  border-radius: 10px;
}

.testimonial p { font-style: italic; color: var(--text); margin-bottom: 16px; }
.testimonial span { color: var(--gold); font-weight: 600; font-size: 14px; }

/* CONTACT */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info p { color: var(--text-muted); margin-bottom: 24px; }

.contact-list li { margin-bottom: 14px; color: var(--text); }
.contact-list li strong { color: var(--gold); }
.contact-list a { color: var(--text); }

.socials { display: flex; gap: 14px; margin-top: 20px; flex-wrap: wrap; }
.socials a {
  border: 1px solid var(--gold);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--gold-light);
  transition: all 0.3s ease;
}
.socials a:hover { background: var(--gold); color: #1a1a1a; }

.contact-form {
  background: var(--dark-2);
  border: 1px solid rgba(201,162,75,0.15);
  border-radius: 10px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form h3 { margin-bottom: 8px; }

.form-row { display: flex; gap: 16px; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-note { color: var(--gold-light); font-size: 14px; min-height: 20px; }

/* FOOTER */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(201,162,75,0.15);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 40px;
}

.footer-col h4 { margin-bottom: 16px; }
.footer-col h4 span { color: var(--gold); }
.footer-col p, .footer-col li { color: var(--text-muted); margin-bottom: 10px; font-size: 14px; }
.footer-col ul a:hover { color: var(--gold); }
.footer-col .socials a { border: none; padding: 0; margin-right: 12px; color: var(--text-muted); }
.footer-col .socials a:hover { color: var(--gold); background: transparent; }

.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted);
  font-size: 13px;
}

.footer-bottom a { color: var(--gold-light); }

/* POLICY PAGE */
.policy-page { padding-top: 140px; max-width: 900px; margin: 0 auto; }
.policy-page h2 { margin-top: 30px; margin-bottom: 10px; font-size: 22px; }
.policy-page p { color: var(--text-muted); margin-bottom: 12px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { position: fixed; top: 74px; left: 0; right: 0; background: var(--dark-2); flex-direction: column; padding: 20px; transform: translateY(-150%); transition: transform 0.3s ease; }
  .nav.open { transform: translateY(0); }
  .nav ul { flex-direction: column; gap: 20px; }
  .nav-toggle { display: flex; }
  .header-inner .btn-small { display: none; }
  .hero-text h1 { font-size: 36px; }
  .cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .stats-inner { justify-content: center; text-align: center; }
}