/* ===== Primacy portfolio — game-matched dark / gold theme ===== */
:root {
  --bg-deep:   #15091f;
  --bg-mid:    #2a0e3a;
  --bg-warm:   #3a1530;
  --ink:       #f3e9d8;
  --ink-dim:   #b9a9c4;
  --gold:      #f2c14e;
  --gold-soft: #ffd87a;
  --gold-deep: #c98a2b;
  --panel:     rgba(20, 10, 30, 0.55);
  --panel-line: rgba(242, 193, 78, 0.22);
  --radius: 14px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg-deep);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Swirling game-like background */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1200px 700px at 20% -10%, rgba(120, 40, 160, 0.55), transparent 60%),
    radial-gradient(1000px 800px at 90% 10%, rgba(150, 30, 80, 0.45), transparent 55%),
    radial-gradient(900px 900px at 50% 110%, rgba(60, 20, 110, 0.5), transparent 60%),
    linear-gradient(160deg, var(--bg-deep), var(--bg-mid) 55%, var(--bg-warm));
  background-attachment: fixed;
}

a { color: var(--gold-soft); text-decoration: none; }
a:hover { color: #fff; }

h2, h3 { font-family: "Cinzel", serif; letter-spacing: 0.02em; }

.section-title {
  font-family: "Cinzel", serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  text-align: center;
  margin: 0 0 2rem;
  color: var(--gold);
  text-shadow: 0 2px 24px rgba(242, 193, 78, 0.25);
}

/* ===== NAV ===== */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.4rem 1.5rem;
}
.nav__brand {
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.nav__cta { font-size: 0.95rem; color: var(--ink-dim); }
.nav__cta:hover { color: var(--gold-soft); }

/* ===== HERO ===== */
.hero { position: relative; padding-bottom: 3rem; }
.hero__inner {
  max-width: 860px;
  margin: 2.5rem auto 2.5rem;
  padding: 0 1.5rem;
  text-align: center;
}
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.78rem;
  color: var(--gold-deep);
  margin: 0 0 1rem;
}
.hero__title {
  font-family: "Cinzel", serif;
  font-weight: 900;
  font-size: clamp(3.2rem, 12vw, 7.5rem);
  margin: 0;
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-shadow:
    0 0 1px var(--gold-deep),
    0 4px 0 var(--gold-deep),
    0 8px 40px rgba(242, 193, 78, 0.4);
}
.hero__tag {
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  margin: 1.4rem auto 0.6rem;
  max-width: 36ch;
  color: var(--ink);
}
.hero__tag em { color: var(--gold-soft); font-style: normal; }
.hero__lede {
  color: var(--ink-dim);
  max-width: 56ch;
  margin: 0.8rem auto 0;
}
.hero__actions {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
}
.btn--primary {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  color: #2a160a;
  box-shadow: 0 6px 24px rgba(242, 193, 78, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); color: #2a160a; box-shadow: 0 10px 30px rgba(242, 193, 78, 0.5); }
.btn--ghost { border-color: var(--panel-line); color: var(--ink); background: var(--panel); }
.btn--ghost:hover { border-color: var(--gold); color: #fff; transform: translateY(-2px); }

.hero__shot {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hero__shot img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--panel-line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  display: block;
}

/* ===== FEATURES ===== */
.features {
  max-width: var(--maxw);
  margin: 4.5rem auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.feature {
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: var(--radius);
  padding: 1.6rem;
  backdrop-filter: blur(6px);
}
.feature h3 { margin: 0 0 0.5rem; color: var(--gold-soft); font-size: 1.15rem; }
.feature p { margin: 0; color: var(--ink-dim); font-size: 0.96rem; }
.feature strong { color: var(--ink); }

/* ===== SHOWCASE ===== */
.showcase, .gallery, .about { max-width: var(--maxw); margin: 5.5rem auto; padding: 0 1.5rem; }
.showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.vidcard {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--panel-line);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  background: #000;
}
.vidcard video { width: 100%; height: auto; display: block; }
.vidcard figcaption,
.shot figcaption {
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  color: var(--ink-dim);
  background: var(--panel);
  font-family: "Cinzel", serif;
}

/* ===== GALLERY ===== */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.shot {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--panel-line);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  background: #0c0512;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}
.shot:hover { transform: translateY(-4px); box-shadow: 0 22px 55px rgba(0, 0, 0, 0.6); }
.shot img { width: 100%; height: auto; display: block; }

/* ===== ABOUT ===== */
.about { max-width: 760px; text-align: center; }
.about p { color: var(--ink-dim); font-size: 1.05rem; }
.about strong { color: var(--ink); }
.about__meta {
  margin-top: 1.4rem;
  font-size: 0.9rem;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--panel-line);
  margin-top: 4rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var(--ink-dim);
  font-size: 0.88rem;
}
.footer__copy { margin-top: 0.4rem; color: var(--gold-deep); }

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .features { grid-template-columns: 1fr; }
  .showcase__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
