/* Base styles */
:root {
  --brand: #0c6d5f;
  --brand-dark: #0a5b50;
  --accent: #f4b400;
  --bg: #f7f7f5;
  --text: #1f2937;
  --muted: #6b7280;
  --card: #ffffff;
  --link: #0c6d5f;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid #e5e7eb; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 10px 0; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { border-radius: 8px; object-fit: cover; }
.logo-text { display: flex; flex-direction: column; }
.logo-title { font-weight: 800; letter-spacing: 0.5px; color: var(--brand); }
.logo-sub { font-size: 12px; color: var(--muted); margin-top: -2px; }

.site-nav ul { list-style: none; display: flex; gap: 14px; margin: 0; padding: 0; }
.site-nav a { display: inline-block; padding: 8px 12px; text-decoration: none; color: var(--text); border-radius: 8px; font-weight: 600; }
.site-nav a:hover { background: #f1f5f9; }
.site-nav a.active { color: #fff; background: var(--brand); }

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.65); }
.hero-inner { position: relative; padding: 96px 0; color: #fff; }
.hero h1 { font-size: 42px; margin: 0 0 10px; }
.hero p { font-size: 18px; margin: 0 0 20px; max-width: 720px; }

.btn { display: inline-block; padding: 10px 16px; border-radius: 10px; text-decoration: none; font-weight: 700; }
.btn-primary { background: var(--accent); color: #1f2937; }
.btn-primary:hover { background: #e0a200; }

/* Content */
.content { padding: 40px 0 60px; }
.intro h2 { font-size: 28px; margin-top: 0; }
.intro p { margin: 0 0 14px; }

.highlights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-top: 28px; }
.card { background: var(--card); border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit; transition: transform .12s ease, box-shadow .12s ease; }
.card img { width: 100%; height: 160px; object-fit: cover; display: block; }
.card h3 { font-size: 18px; padding: 12px; margin: 0; }
.card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }

/* Footer */
.site-footer { background: #0a0f14; color: #cbd5e1; margin-top: 40px; }
.footer-inner { padding: 24px 0; text-align: center; }
.site-footer .small { color: #94a3b8; font-size: 12px; margin: 6px 0 0; }

/* Utilities */
img { max-width: 100%; height: auto; }

@media (max-width: 640px) {
  .hero-inner { padding: 72px 0; }
  .hero h1 { font-size: 32px; }
}


