/* ============================================================
   Nø Fåuxs Entertainment — nofauxs.com
   Rebuild of the Squarespace 7.1 site as static HTML.
   Type substitute for aktiv-grotesk (Typekit): Inter
   Palette: page bg #DFE0E1 · ink #111 · white nav-over-image
   ============================================================ */

:root {
  --bg: #DFE0E1;
  --ink: #111111;
  --muted: #6b6f72;
  --paper: #ffffff;
  --header-h: 64px;
  --font: "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; }

/* ---------- Header ---------- */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
}
.site-nav a {
  font-size: 15px;
  text-decoration: none;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}
.site-nav a:hover, .site-nav a.active { border-bottom-color: var(--ink); }

.brand {
  flex: 1;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: .2px;
}

.header-socials { display: flex; gap: 16px; align-items: center; }
.header-socials a { display: inline-flex; color: var(--ink); }
.header-socials svg { width: 18px; height: 18px; fill: currentColor; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,18,16,.35), rgba(20,18,16,.65));
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 64px 24px 48px;
  max-width: 720px;
}
.hero-video {
  margin: 0 auto 28px;
  width: 100%;
  max-width: 470px;
  aspect-ratio: 470 / 264;
}
.hero-video iframe { width: 100%; height: 100%; border: 0; }
.hero-tagline { font-size: clamp(17px, 2.4vw, 22px); margin: 0 0 10px; font-weight: 500; }
.hero-sub { font-size: 15px; margin: 0; opacity: .85; }

/* ---------- Sections ---------- */
.section { padding: 84px 24px; }
.section-title {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 600;
  text-align: center;
  margin: 0 0 12px;
}
.section-sub { text-align: center; font-size: 14px; color: var(--muted); margin: 0 0 48px; }

/* ---------- Our Artists ---------- */
.artists {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 40px;
}
.artist { text-align: center; }
.artist-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
}
.artist-photo img { width: 100%; height: 100%; object-fit: cover; }
.artist h3 { font-size: 19px; font-weight: 600; margin: 0 0 10px; }
.artist p { font-size: 14.5px; color: var(--muted); margin: 0 0 10px; max-width: 320px; margin-left: auto; margin-right: auto; }
.artist .links { font-size: 13px; }
.artist .links a { text-decoration: underline; }
.artist .handle { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ---------- Featured releases ---------- */
.featured {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.featured-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.featured-row.reverse { flex-direction: row-reverse; }
.featured-text { font-size: 20px; }
.featured-text a { text-decoration: underline; font-weight: 600; }
.featured-art { width: 220px; box-shadow: 0 12px 30px rgba(0,0,0,.18); }

/* ---------- Projects & Releases ---------- */
.projects-band {
  position: relative;
  padding: 90px 24px 60px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.projects-band-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.projects-band::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(20,18,16,.45);
}
.projects-band > * { position: relative; z-index: 1; }
.projects-band h2 { font-size: clamp(32px, 4.4vw, 46px); margin: 0 0 6px; font-weight: 600; }
.projects-band p { margin: 0; font-size: 13px; opacity: .85; }

.projects-grid {
  max-width: 1200px;
  margin: -1px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--bg);
}
.project-tile {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  display: block;
  border: 1px solid var(--bg);
}
.project-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.project-tile:hover img { transform: scale(1.04); }
.project-tile .tile-label {
  position: absolute;
  left: 20px; bottom: 16px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,.6);
  letter-spacing: .5px;
}

/* ---------- Film & Video ---------- */
.fv-hero {
  padding: 70px 24px 50px;
  text-align: center;
}
.fv-hero-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 18px;
  column-gap: 60px;
}
.fv-hero-grid p {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0;
  font-weight: 700;
}
.fv-hero-grid .muted-word { color: #a9adaf; text-decoration: underline; text-decoration-color: #b9bcbe; }

.fv-banner { position: relative; }
.fv-banner video, .fv-banner img { width: 100%; height: 46vh; min-height: 260px; object-fit: cover; }
.fv-banner-caption {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: clamp(18px, 2.6vw, 26px); font-weight: 500;
  background: rgba(0,0,0,.25);
  text-align: center; padding: 24px;
}

.fv-list {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 80px 24px;
}
.fv-item iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
}
.fv-item h3 { margin: 22px 0 6px; font-size: 20px; }
.fv-item p { margin: 0; font-size: 14.5px; color: var(--muted); }

/* ---------- Project detail pages ---------- */
.project-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.project-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.project-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.55));
}
.project-hero h1 {
  position: relative; z-index: 1;
  color: #fff;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  margin: 0;
  padding: 40px 32px;
}

.project-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 70px 24px;
  text-align: center;
}
.project-body iframe {
  width: 100%;
  max-width: 470px;
  height: 500px;
  border: 0;
  margin: 0 auto 40px;
}
.project-nav {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.project-nav a {
  font-size: 14px;
  text-decoration: underline;
}

/* ---------- Contact ---------- */
.contact-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.contact-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.contact-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.55));
}
.contact-content {
  position: relative; z-index: 1;
  color: #fff;
  padding: 64px 40px;
  max-width: 760px;
}
.contact-content h1 {
  font-size: clamp(40px, 6vw, 64px);
  margin: 0 0 30px;
  font-weight: 700;
}
.contact-content p {
  font-size: clamp(20px, 3vw, 30px);
  margin: 0 0 18px;
  font-weight: 500;
}
.contact-content a { text-decoration: none; }
.contact-content a:hover { text-decoration: underline; }
.contact-fine { font-size: 15px !important; opacity: .8; font-weight: 400 !important; }

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding: 40px 24px;
  font-size: 13px;
  color: var(--muted);
}
.site-footer a { text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .header-inner { flex-wrap: wrap; }
  .nav-toggle { display: block; margin-left: auto; }
  .site-nav {
    flex-basis: 100%;
    order: 3;
    display: none;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; padding-top: 12px; }
  .site-nav li { padding: 10px 0; border-top: 1px solid rgba(0,0,0,.08); }
  .brand { order: 1; }
  .header-socials { order: 2; }

  .artists { grid-template-columns: repeat(2, 1fr); }
  .fv-hero-grid { grid-template-columns: 1fr; row-gap: 30px; text-align: center; }
  .projects-grid { grid-template-columns: 1fr; }
  .featured-row, .featured-row.reverse { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .artists { grid-template-columns: 1fr; }
  .artist-photo { width: 180px; height: 180px; }
  .section { padding: 60px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
