/* ─── Reset & Base ──────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
  --gold: #E8C547;
  --bg: #0a0a0a;
  --card-bg: #111;
  --border: #1e1e1e;
  --border-light: #1a1a1a;
  --text: #e0e0e0;
  --text-muted: #888;
  --text-dim: #666;
  --text-faint: #444;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  overflow-x: hidden;
}

::selection {
  background: #E8C54744;
  color: #fff;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--gold);
}

/* ─── Gradient Background ──────────────────────────── */
#grid-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 85% -5%, rgba(232, 197, 71, 0.08) 0%, transparent 50%);
}

/* ─── Navigation ───────────────────────────────────── */
#nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.logo {
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  padding-bottom: 4px;
  color: #999;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

.nav-link:hover {
  color: #ccc;
}

.nav-link.active {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
}

/* ─── Main ─────────────────────────────────────────── */
#main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  min-height: calc(100vh - 140px);
  position: relative;
  z-index: 1;
}

.page {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* ─── Animations ───────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 0;
  animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ─── Eyebrow ──────────────────────────────────────── */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}

/* ─── Hero (Home) ──────────────────────────────────── */
.hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.1;
  color: #f5f5f5;
  font-weight: 400;
  margin-bottom: 24px;
}

.accent {
  color: var(--gold);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: #999;
  max-width: 540px;
  margin-bottom: 40px;
  font-weight: 300;
}

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

.btn-primary {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--bg);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(232, 197, 71, 0.25);
}

.btn-secondary {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  background: transparent;
  color: #ccc;
  border: 1px solid #333;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: border-color 0.2s;
}

.btn-secondary:hover {
  border-color: #555;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--border-light);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--serif);
  font-size: 36px;
  color: #f0f0f0;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}

/* ─── Section Headers ──────────────────────────────── */
.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  color: #f5f5f5;
  font-weight: 400;
  margin-bottom: 48px;
}

/* ─── Products ─────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  cursor: default;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s,
              box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
}

.product-name {
  font-family: var(--serif);
  font-size: 22px;
  color: #f0f0f0;
  font-weight: 400;
  margin-bottom: 4px;
}

.product-tagline {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.product-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 20px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 11px;
  padding: 4px 10px;
  background: #1a1a1a;
  border: 1px solid #252525;
  border-radius: 20px;
  color: #777;
  letter-spacing: 0.3px;
  font-weight: 400;
}

/* ─── About ────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
}

.about-lead {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
  color: #ddd;
  margin-bottom: 28px;
}

.about-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 16px;
}

.sidebar-title {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.role-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.role-co {
  font-size: 15px;
  font-weight: 500;
  color: #ccc;
}

.role-title {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 300;
}

/* ─── Contact ──────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}

.contact-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.contact-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-value {
  font-size: 15px;
  color: #bbb;
  font-weight: 400;
}

.contact-note {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid var(--border-light);
}

.contact-note-text {
  font-size: 16px;
  line-height: 1.7;
  color: #777;
  font-weight: 300;
  font-style: italic;
}

/* ─── Footer ───────────────────────────────────────── */
#footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px 40px;
  border-top: 1px solid #141414;
}

.footer-text {
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 1px;
}

/* ─── Responsive ───────────────────────────────────── */
@media (max-width: 768px) {
  #nav {
    padding: 14px 20px;
  }

  .logo {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-link {
    font-size: 11px;
  }

  #main {
    padding: 0 20px;
  }

  .page {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
    margin-top: 48px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .nav-links {
    gap: 14px;
  }

  .logo svg {
    width: 22px;
    height: 22px;
  }
}
