/* ---- Reset & Variables ---- */
:root {
  --clr-accent: #c9a84c;
  --clr-dark: #1a1a2e;
  --clr-text: #2d2d2d;
  --clr-stone: #f4f4f8;
  --ff-serif: 'Playfair Display', serif;
  --ff-sans: 'Poppins', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--ff-sans); color: var(--clr-text); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }

/* ---- Typography ---- */
h1, h2, h3 { font-family: var(--ff-serif); color: var(--clr-dark); }
.section-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; color: var(--clr-accent); text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-size: 2.5rem; margin-bottom: 20px; }
.section-desc { font-size: 1.1rem; color: #555; max-width: 700px; margin-bottom: 40px; }

/* ---- Navigation (Fixed Layout) ---- */
.navbar { position: fixed; top: 0; width: 100%; background: rgba(255,255,255,0.98); z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); padding: 15px 0; }
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.nav-logo { font-family: var(--ff-serif); font-size: 1.8rem; font-weight: 700; color: var(--clr-dark); letter-spacing: 1px; }
.nav-links { display: flex; list-style: none; align-items: center; gap: 25px; margin: 0; padding: 0; }
.nav-link { font-size: 0.9rem; font-weight: 600; color: var(--clr-dark); transition: color 0.3s; }
.nav-link:hover { color: var(--clr-accent); }
.nav-cta { background: var(--clr-accent); padding: 10px 20px; border-radius: 4px; color: var(--clr-dark) !important; }
.hamburger { display: none; } /* Hide on desktop */

/* ---- Hero ---- */
.hero { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; }
.hero-overlay { position: absolute; inset: 0; background: rgba(26,26,46,0.6); z-index: 0; }
.hero-content { position: relative; z-index: 1; color: white; padding: 0 20px; max-width: 800px; }
.status-badge { display: inline-block; background: var(--clr-accent); color: var(--clr-dark); padding: 6px 18px; border-radius: 30px; font-weight: 700; font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 20px; }
.hero-title { font-size: 4rem; color: white; margin-bottom: 15px; }
.hero-subtitle { font-size: 1.2rem; margin-bottom: 30px; }

/* ---- Grids & Cards ---- */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.stat-card { background: var(--clr-stone); padding: 40px; border-radius: 8px; text-align: center; border-bottom: 3px solid var(--clr-accent); }
.stat-icon { font-size: 2rem; margin-bottom: 10px; }
.stat-value { font-size: 1.5rem; font-weight: 700; color: var(--clr-dark); display: block; }
.stat-label { color: #666; font-size: 0.9rem; }

/* ---- Contact Section ---- */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; background: var(--clr-dark); padding: 50px; border-radius: 12px; }
.contact-form label { display: block; color: white; font-size: 0.85rem; margin-bottom: 5px; }
.contact-form input { width: 100%; padding: 12px; margin-bottom: 20px; border-radius: 4px; border: none; background: rgba(255,255,255,0.1); color: white; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.btn { display: inline-block; padding: 15px 30px; font-family: var(--ff-sans); font-weight: 600; text-transform: uppercase; border: none; cursor: pointer; border-radius: 4px; transition: 0.3s; }
.btn-primary { background: var(--clr-accent); color: var(--clr-dark); }
.btn-primary:hover { background: white; }
.btn-full { width: 100%; }
.contact-info { color: white; }
.contact-info h3 { color: white; margin-bottom: 15px; }
.contact-email { color: var(--clr-accent); font-size: 1.2rem; font-weight: 700; }

/* ---- Footer ---- */
.footer { background: var(--clr-dark); color: white; padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.1); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .nav-links { display: none; } /* Add hamburger JS toggle logic here */
  .hamburger { display: block; background: none; border: none; cursor: pointer; }
  .hamburger span { display: block; width: 25px; height: 3px; background: var(--clr-dark); margin: 5px 0; }
  .hero-title { font-size: 2.5rem; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}