/* =============================================
   JAQT — Visuell identitet / Stilguide
   Versjon 1.0
   ============================================= */

/* === FARGEVARIABLER === */
:root {
  --black: #0a0a08;
  --anthracite: #161614;
  --steel: #1e1e1b;
  --gold: #b8922a;
  --gold-light: #d4a83a;
  --gold-dim: #7a5f1a;
  --white: #f0ede6;
  --muted: #8a8880;
  --border: rgba(184,146,42,0.2);

  /* Typografi */
  --font-display: 'Bebas Neue', sans-serif;   /* Overskrifter / display */
  --font-cond: 'Barlow Condensed', sans-serif; /* Labels, nav, caps */
  --font-body: 'Barlow', sans-serif;           /* Brødtekst */
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === NAVIGASJON === */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(10,10,8,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-decoration: none;
}
.logo span { color: var(--white); }
nav ul { list-style: none; display: flex; gap: 2.5rem; }
nav ul a {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
nav ul a:hover { color: var(--gold); }
.nav-cta {
  color: var(--gold) !important;
  border: 1px solid var(--gold-dim);
  padding: 0.45rem 1.2rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover { background: var(--gold); color: var(--black) !important; }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 3rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 40% at 70% 50%, rgba(184,146,42,0.07) 0%, transparent 70%),
    linear-gradient(160deg, #0a0a08 40%, #12110e 100%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: 0.04;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-crosshair {
  position: absolute; right: 12%; top: 50%; transform: translateY(-50%);
  z-index: 1; opacity: 0.12;
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-tag {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-tag::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: normal; color: var(--gold); display: block; }
.hero-sub {
  font-size: 1.05rem; font-weight: 300;
  color: var(--muted); max-width: 460px;
  line-height: 1.7; margin-bottom: 2.5rem;
  letter-spacing: 0.01em;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; }
.btn-primary {
  font-family: var(--font-cond);
  font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--gold); color: var(--black);
  padding: 0.85rem 2rem; border: none; cursor: pointer;
  border-radius: 2px; font-weight: 700; text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-ghost {
  font-family: var(--font-cond);
  font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); border: none; background: none; cursor: pointer;
  padding: 0.85rem 0; text-decoration: none;
  display: flex; align-items: center; gap: 0.5rem;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--white); }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hero-scroll span {
  font-family: var(--font-cond); font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dim);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* === STATS === */
.stats-strip {
  background: var(--anthracite);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 3rem;
  display: flex; align-items: stretch;
}
.stat-item {
  flex: 1; text-align: center; padding: 0 2rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display); font-size: 2.8rem;
  letter-spacing: 0.05em; color: var(--gold);
  line-height: 1; margin-bottom: 0.4rem;
}
.stat-label {
  font-family: var(--font-cond); font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted);
}

/* === SEKSJONER === */
section { padding: 7rem 3rem; }
.section-tag {
  font-family: var(--font-cond); font-size: 0.72rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-tag::before {
  content: ''; display: inline-block;
  width: 24px; height: 1px; background: var(--gold);
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 0.04em; line-height: 1;
  color: var(--white); margin-bottom: 1.5rem;
}
h2 em { font-style: normal; color: var(--gold); }

/* === OM OSS === */
.about { background: var(--anthracite); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.about-text p {
  font-size: 1rem; font-weight: 300;
  color: rgba(240,237,230,0.75);
  margin-bottom: 1.2rem; line-height: 1.8;
}
.about-card {
  background: var(--steel);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 2rem 2rem 2rem 2.5rem; border-radius: 2px;
}
.about-card-title {
  font-family: var(--font-cond); font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.about-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.about-card ul li {
  font-size: 0.95rem; font-weight: 300; color: var(--white);
  display: flex; align-items: flex-start; gap: 0.75rem; line-height: 1.5;
}
.about-card ul li::before { content: '—'; color: var(--gold); flex-shrink: 0; margin-top: 0.05em; }

/* === PRODUKTER === */
.products { background: var(--black); }
.products-inner { max-width: 1100px; margin: 0 auto; }
.products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; }
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: var(--border);
  border: 1px solid var(--border);
}
.product-card {
  background: var(--anthracite); padding: 2.5rem 2rem;
  position: relative; transition: background 0.2s; cursor: default;
}
.product-card:hover { background: var(--steel); }
.product-card.featured { background: var(--steel); }
.product-card.featured::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
}
.product-label {
  font-family: var(--font-cond); font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-dim); margin-bottom: 0.5rem;
}
.product-name {
  font-family: var(--font-cond); font-size: 1.3rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1rem;
}
.product-desc { font-size: 0.9rem; font-weight: 300; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
.product-specs { display: flex; flex-direction: column; gap: 0.5rem; }
.spec-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; padding: 0.4rem 0;
  border-bottom: 1px solid rgba(184,146,42,0.08);
}
.spec-key { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.spec-val { color: var(--white); font-weight: 500; }
.badge-coming {
  display: inline-block; font-family: var(--font-cond);
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  background: rgba(184,146,42,0.12); color: var(--gold);
  border: 1px solid rgba(184,146,42,0.3);
  padding: 0.2rem 0.6rem; border-radius: 2px; margin-bottom: 1rem;
}

/* === TEAM === */
.team { background: var(--anthracite); }
.team-inner { max-width: 1100px; margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.team-card {
  background: var(--steel); border: 1px solid var(--border);
  padding: 2rem 2.5rem; border-radius: 2px;
  display: flex; gap: 1.5rem; align-items: flex-start;
}
.team-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem;
  letter-spacing: 0.05em; color: var(--gold);
  border: 1px solid var(--gold-dim); flex-shrink: 0;
}
.team-name {
  font-family: var(--font-cond); font-size: 1.1rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--white); margin-bottom: 0.2rem;
}
.team-role {
  font-family: var(--font-cond); font-size: 0.72rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem;
}
.team-bio { font-size: 0.9rem; font-weight: 300; color: var(--muted); line-height: 1.7; }

/* === KONTAKT === */
.contact { background: var(--black); text-align: center; }
.contact-inner { max-width: 600px; margin: 0 auto; }
.contact p { font-size: 1rem; font-weight: 300; color: var(--muted); margin-bottom: 3rem; line-height: 1.8; }
.contact-email {
  font-family: var(--font-cond); font-size: 1.3rem;
  letter-spacing: 0.1em; color: var(--gold);
  text-decoration: none; border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 0.15rem; transition: color 0.2s;
}
.contact-email:hover { color: var(--gold-light); }

/* === FOOTER === */
footer {
  background: var(--anthracite); border-top: 1px solid var(--border);
  padding: 2rem 3rem; display: flex; justify-content: space-between; align-items: center;
}
.footer-logo { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.15em; color: var(--gold); }
.footer-copy { font-family: var(--font-cond); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-family: var(--font-cond); font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* === CROSSHAIR SVG === */
.crosshair-svg circle, .crosshair-svg line { stroke: var(--gold); }
