/* Basic Reset */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; height: auto; }

/* Theme */
:root {
  --bg: #0b0b0b;            /* near-black */
  --surface: #121212;       /* dark surface */
  --text: #f5f5f5;          /* on-dark text */
  --muted: #c8cdd6;         /* muted on dark */
  --primary: #d4af37;       /* gold */
  --primary-600: #b9972f;   /* darker gold */
  --secondary: #ffffff;     /* white */
  --border: #1e1e1e;        /* subtle dark border */
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  background: #0a0a0a;
  position: sticky;
  top: 0; z-index: 20;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); font-weight: 700; font-size: 1.1rem; }
.logo img { height: 36px; width: auto; display: block; }
.site-nav ul { list-style: none; display: flex; gap: 16px; margin: 0; padding: 0; }
.site-nav a { text-decoration: none; color: var(--text); padding: 8px 10px; border-radius: 6px; }
.site-nav a:hover { background: #1a1a1a; color: var(--primary); }
.nav-toggle { display: none; }
.site-nav { position: relative; }

.header-cta { display: flex; gap: 8px; }

/* Buttons */
.btn { display: inline-block; padding: 10px 14px; border-radius: 8px; text-decoration: none; font-weight: 600; transition: background .2s, color .2s, border-color .2s; }
.btn-primary { background: var(--primary); color: #111; }
.btn-primary:hover { background: var(--primary-600); }
.btn-secondary { background: var(--secondary); color: #111; }
.btn-secondary:hover { filter: brightness(0.92); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #111; }

/* Hero */
.hero {
  position: relative;
  padding: 72px 0;
  text-align: center;
  background: #0d0d0d;
  overflow: hidden;
}
.hero.with-bg { background-size: cover; background-position: center; }
.hero.with-bg::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.65)); }
.hero > .container { position: relative; z-index: 1; }
.hero h1 { font-size: clamp(1.6rem, 3.2vw, 2.6rem); margin: 0 0 12px; color: #fff; }
.hero p { color: #e7e7e7; margin: 0 0 18px; }
.hero .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.parallax { background-attachment: fixed; }
@media (max-width: 900px) { .parallax { background-attachment: scroll; } }

/* Sections */
.section { padding: 48px 0; }
.section h2 { margin: 0 0 18px; font-size: 1.6rem; }
.grid { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 18px; }
.card h3 { margin: 0 0 6px; }
.card p { margin: 0; color: var(--muted); }
.card img { width: 100%; height: 160px; object-fit: cover; border-radius: 10px; margin-bottom: 10px; }
.card .icon { width: 56px; height: 56px; color: var(--primary); margin-bottom: 10px; }
.card .icon svg { width: 100%; height: 100%; display: block; }
.card-media { width: 100%; height: 180px; border-radius: 10px; background-size: cover; background-position: center; margin-bottom: 12px; border: 1px solid var(--border); }
.card:hover { transform: translateY(-4px); transition: transform .2s ease, box-shadow .2s ease; box-shadow: 0 10px 24px rgba(0,0,0,0.25); }

/* CTA band */
.cta { background: #101010; text-align: center; padding: 44px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta h2 { margin: 0 0 6px; }
.cta p { margin: 0 0 16px; color: var(--muted); }
.cta .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.site-footer { background: #0a0a0a; border-top: 1px solid var(--border); }
.footer-grid { display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); padding: 28px 0; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: 8px 0; }
.footer-links a { color: var(--text); text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-bottom { padding: 12px 0 24px; color: var(--muted); font-size: 0.95rem; }

/* Utilities */
.actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

.muted { color: var(--muted); }

/* Responsive */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 8px; background: var(--bg); }
  .site-nav ul { display: none; position: absolute; right: 0; top: 48px; background: var(--bg); padding: 12px; border: 1px solid var(--border); border-radius: 12px; flex-direction: column; min-width: 70vw; max-width: 92vw; box-shadow: 0 6px 24px rgba(0,0,0,0.2); }
  .site-nav ul.open { display: flex; }
  .header-inner { flex-wrap: wrap; }
  .header-cta { width: 100%; justify-content: flex-end; }
  .hero { padding: 44px 0; }
  .card .icon { width: 44px; height: 44px; }
}


