/* -------------------------------------------------- */
/* GUCCI GLOCK — Dark Minimal Theme                   */
/* -------------------------------------------------- */

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #181818;
  --border: #222222;
  --gold: #c9a84c;
  --gold-dim: #8a6f2e;
  --text: #e8e4dc;
  --muted: #6b6560;
  --white: #ffffff;
  --radius: 4px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Space Grotesk",
    system-ui,
    -apple-system,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
}

/* -------------------------------------------------- */
/* HEADER / NAV                                       */
/* -------------------------------------------------- */

#site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.25rem 5%;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--white);
}

.logo span {
  color: var(--gold);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.25rem;
}

nav ul a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav ul a:hover {
  color: var(--text);
}

/* -------------------------------------------------- */
/* HERO                                               */
/* -------------------------------------------------- */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  overflow: hidden;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding-top: 5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero-visual {
  flex: 0 0 420px;
  width: 420px;
  opacity: 0.85;
  position: relative;
}

.reticle-svg {
  width: 100%;
  height: auto;
  display: block;
}

.ring-spin {
  transform-origin: 220px 220px;
  animation: ring-rotate 60s linear infinite;
}

@keyframes ring-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.cta {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: #0a0a0a;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition:
    background 0.2s,
    transform 0.15s;
}

.cta:hover {
  background: #d4b05a;
  transform: translateY(-1px);
}

/* -------------------------------------------------- */
/* SHARED SECTION STYLES                              */
/* -------------------------------------------------- */

.section {
  padding: 6rem 5%;
  border-bottom: 1px solid var(--border);
}

.section-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
}

/* -------------------------------------------------- */
/* CATEGORIES GRID                                    */
/* -------------------------------------------------- */

.categories .grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.card {
  background: var(--bg);
  padding: 2.25rem;
  transition: background 0.2s;
}

.card:hover {
  background: var(--bg-3);
}

.card-icon {
  font-size: 1.4rem;
  color: var(--gold-dim);
  margin-bottom: 1rem;
  line-height: 1;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.card-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.card-link:hover {
  color: #d4b05a;
}

/* -------------------------------------------------- */
/* TOP PICKS                                          */
/* -------------------------------------------------- */

.picks {
  background: var(--bg-2);
}

.picks-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.pick-item {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.pick-item:hover {
  border-color: var(--gold-dim);
}

.pick-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  border-radius: 2px;
  padding: 0.2rem 0.5rem;
  margin-bottom: 0.85rem;
}

.pick-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.pick-item p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* -------------------------------------------------- */
/* GUIDE                                              */
/* -------------------------------------------------- */

.guide-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.guide-text h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.guide-text p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.guide-rules {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 0.5rem;
}

.rule {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.rule-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding-top: 0.15rem;
  flex-shrink: 0;
}

.rule p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* -------------------------------------------------- */
/* FOOTER                                             */
/* -------------------------------------------------- */

footer {
  padding: 3rem 5%;
  background: var(--bg);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-note {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 500px;
}

.footer-copy {
  font-size: 0.75rem;
  color: #3a3530;
}

/* -------------------------------------------------- */
/* RESPONSIVE                                         */
/* -------------------------------------------------- */

@media (max-width: 1000px) {
  .hero-visual {
    flex: 0 0 320px;
    width: 320px;
    opacity: 0.6;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    padding-top: 7rem;
    padding-bottom: 3rem;
    gap: 3rem;
  }

  .hero-visual {
    flex: unset;
    width: 280px;
    opacity: 0.5;
  }

  .categories .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guide-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  nav ul {
    display: none;
  }

  .hero-visual {
    display: none;
  }

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

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


  .hero h1 {
    font-size: 2.75rem;
  }
}
