/* ==========================================================================
   Marcelo Quinonez — marceloquinonez.com
   Light & cinematic · one continuous dark canvas · no boxes, no sections
   Typeface: Jost (single family, used thin and wide)
   ========================================================================== */

:root {
  --bg: #0c0e12;            /* one canvas, everywhere */
  --text: #edeff2;
  --muted: #8b929b;
  --faint: #5c636d;

  --accent: #6f93b8;        /* steel blue, used sparingly */
  --orange: #c2561f;        /* burnt orange, music side */
  --orange-soft: #d8702f;

  --font: "Jost", "Helvetica Neue", Arial, sans-serif;
  --max: 1100px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  /* faint cinematic depth — no hard edges */
  background-image:
    radial-gradient(1200px 800px at 75% -5%, rgba(111, 147, 184, 0.08), transparent 60%),
    radial-gradient(1000px 700px at 10% 105%, rgba(194, 86, 31, 0.06), transparent 60%);
  background-attachment: fixed;
}

img, video, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Accessible, crawlable text for screen readers & parsers — visually hidden */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ---------- Type ---------- */

h1, h2, h3 { font-weight: 300; line-height: 1.1; }

.eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 26px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-weight: 200;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.section-lede {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.02rem;
}

/* ---------- Nav (transparent, weightless) ---------- */

.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; }

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; gap: 12px; }

.nav-logo .logo-img { height: 30px; width: auto; opacity: 0.92; }

/* hide the wordmark text — let the mark + nav speak */
.nav-logo span,
.nav-logo { font-size: 0.78rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); }

.nav-links { display: flex; gap: 34px; align-items: center; list-style: none; }

.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
}

.nav-links a:hover, .nav-links a.active { color: var(--text); }

@media (max-width: 720px) {
  .nav-inner { padding: 18px 20px; }
  .nav-logo { font-size: 0; gap: 0; }        /* hide wordmark text, keep the logo mark */
  .nav-logo .logo-img { height: 26px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 0.66rem; letter-spacing: 0.16em; }
  .nav-links li.hide-mobile { display: none; }
}

/* ---------- Links / buttons (understated) ---------- */

.btn {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

.btn:hover { color: var(--text); border-color: currentColor; }

.btn-primary { color: var(--text); border-color: rgba(255,255,255,0.25); }
.btn-primary:hover { border-color: var(--text); }

.contact-actions { display: flex; gap: 38px; justify-content: center; flex-wrap: wrap; }

/* ---------- Section rhythm (space, not bands) ---------- */

section { padding: 150px 0; text-align: center; }

.hero-landing, .page-hero { text-align: center; }

/* all legacy section tints collapse to the single canvas */
.light, .light-alt, .dark, .dark-alt { background: transparent; }

/* ---------- Landing ---------- */

.hero-landing {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 80px;
}

.hero-name {
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  font-weight: 200;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 88px;
}

.hero-role {
  font-size: clamp(0.72rem, 1.3vw, 0.86rem);
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 90px;
}

.hero-role .sep { color: var(--faint); padding: 0 6px; }

/* two words, no boxes */
.portals {
  display: flex;
  justify-content: center;
  gap: clamp(40px, 10vw, 120px);
  margin-bottom: 110px;
}

.portal { display: block; }

.portal h2 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 200;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s, letter-spacing 0.3s;
}

.portal:hover h2 { letter-spacing: 0.2em; }
.portal-sound:hover h2 { color: var(--accent); }
.portal-music:hover h2 { color: var(--orange-soft); }

.portal .portal-go {
  display: block;
  margin-top: 16px;
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--faint);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s, transform 0.3s;
}

.portal:hover .portal-go { opacity: 1; transform: translateY(0); }

.credit-strip { margin-top: auto; }

.credit-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ---------- Interior hero ---------- */

.page-hero { padding: 220px 0 60px; }

.page-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 200;
  letter-spacing: 0.06em;
  margin: 0 auto 36px;
  max-width: 900px;
}

.page-hero .lede {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ---------- Media / reels (frameless) ---------- */

.reel-featured { max-width: 940px; margin: 0 auto 26px; }

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
  transition: background 0.3s;
}

.video-frame:hover { background: rgba(255, 255, 255, 0.045); }

.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.ph-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 20px;
}

.ph-content .ph-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.ph-content .ph-title {
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}

.ph-content .ph-note { display: none; }  /* keep placeholders quiet & cinematic */

.reel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 940px;
  margin: 40px auto 0;
}

@media (max-width: 820px) { .reel-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .reel-grid { grid-template-columns: 1fr; } }

.reel-card .video-frame { margin-bottom: 14px; }

.reel-card h3 {
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Credits as a quiet list ---------- */

.titles-grid {
  display: flex;
  flex-direction: column;
  max-width: 620px;
  margin: 44px auto 0;
}

.title-card { padding: 22px 0; border-top: 1px solid rgba(255, 255, 255, 0.07); }
.title-card:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.07); }

.title-art { display: none; }

.title-info { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; text-align: left; }

.title-info h3 { font-size: 1.1rem; font-weight: 300; letter-spacing: 0.03em; }

.title-info .role { display: none; }

.title-info p { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); }

@media (max-width: 480px) {
  .title-info { flex-direction: column; gap: 4px; }
}

.credits-note {
  max-width: 560px;
  margin: 40px auto 0;
  font-size: 0.92rem;
  font-style: italic;
  color: var(--faint);
}

/* ---------- About (minimal, centered) ---------- */

.about-photo {
  width: 130px; aspect-ratio: 1/1;
  border-radius: 50%;
  margin: 0 auto 34px;
  background: rgba(255, 255, 255, 0.04);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--faint);
  overflow: hidden;
}

.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 40% 20%; transform: scale(1.12); }

.about-line { color: var(--muted); font-size: 1.05rem; letter-spacing: 0.02em; }

.about-line strong { color: var(--text); font-weight: 400; }

.badge-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 26px;
  margin-top: 30px;
  font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--faint);
}

.badge { white-space: nowrap; }

/* ---------- Music ---------- */

.stream-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 34px;
  margin-top: 10px;
}

.stream-link {
  font-size: 0.74rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

.stream-link:hover { color: var(--text); border-color: var(--orange-soft); }

.embed-stack { display: grid; gap: 26px; max-width: 820px; margin: 50px auto 0; }

.spotify-embed { max-width: 820px; margin: 0 auto 44px; }
.spotify-embed iframe { width: 100%; border-radius: 12px; }

.embed-ph {
  padding: 46px 28px;
  text-align: center;
  color: var(--faint);
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  background: rgba(255, 255, 255, 0.025);
}

.embed-ph strong { display: block; color: var(--muted); font-weight: 400; margin-bottom: 6px; }

/* ---------- Contact ---------- */

.contact h2 { font-size: clamp(1.8rem, 4.5vw, 3rem); font-weight: 200; letter-spacing: 0.04em; margin-bottom: 30px; }

.contact .contact-actions .btn { font-size: 0.82rem; }

/* ---------- Footer ---------- */

footer { padding: 70px 0 90px; text-align: center; }

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
}

.footer-links { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }

.footer-links a { transition: color 0.25s; }
.footer-links a:hover { color: var(--text); }

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