/* Back to Dust Studios — Indie Artist Studio */
:root {
  --bg: #141418;
  --bg-alt: #1b1b22;
  --bg-card: #1e1e26;
  --accent: #4D80FF;          /* MAXCHEX electric blue */
  --accent-dim: #2a4a99;
  --accent-2: #E8B547;        /* studio amber — separates studio brand from product brand */
  --text: #e6e9f2;
  --text-dim: #8a8fa3;
  --text-faint: #5a5f73;
  --border: rgba(77, 128, 255, 0.22);
  --border-soft: rgba(232, 181, 71, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Share Tech Mono', Menlo, Consolas, monospace;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(77, 128, 255, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(232, 181, 71, 0.06), transparent 60%),
    linear-gradient(180deg, #0f0f13 0%, #141418 50%, #0f0f13 100%);
  background-attachment: fixed;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
a:hover {
  color: #9fb8ff;
  text-shadow: 0 0 8px rgba(77, 128, 255, 0.6);
}

img { display: block; max-width: 100%; height: auto; }

/* NAV */
.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(15, 15, 19, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-nav .brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-weight: bold;
  letter-spacing: 0.18em;
  font-size: 1rem;
  text-transform: uppercase;
}

/* HERO LOGO — centered below nav */
.hero-logo {
  max-width: min(420px, 80vw);
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
  border-radius: 12px;
  filter: drop-shadow(0 0 20px rgba(77, 128, 255, 0.45));
  position: relative;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.75rem;
}

.site-nav ul a {
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-dim);
}

.site-nav ul a:hover { color: var(--accent); }

/* HERO */
.hero {
  min-height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem 6rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(77, 128, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 128, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent 80%);
  pointer-events: none;
}

.hero-eyebrow {
  color: var(--accent);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.hero h1 {
  font-size: clamp(2.4rem, 7vw, 5.25rem);
  letter-spacing: 0.08em;
  line-height: 1.1;
  color: var(--text);
  text-shadow: 0 0 30px rgba(77, 128, 255, 0.45), 0 0 70px rgba(77, 128, 255, 0.15);
  margin-bottom: 1.5rem;
  position: relative;
  max-width: 18ch;
}

.hero h1 .accent { color: var(--accent); }

.hero p.lede {
  max-width: 60ch;
  color: var(--text-dim);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.8;
  position: relative;
}

.hero-cta-row {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

.btn {
  display: inline-block;
  padding: 0.95rem 2rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.85rem;
  background: rgba(77, 128, 255, 0.06);
  transition: all 0.25s ease;
  font-family: inherit;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 24px rgba(77, 128, 255, 0.55);
}

.btn.ghost {
  border-color: var(--text-faint);
  color: var(--text-dim);
  background: transparent;
}

.btn.ghost:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
  box-shadow: 0 0 18px rgba(232, 181, 71, 0.35);
  background: transparent;
}

/* SECTIONS */
section {
  padding: 6rem 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
}

.section-head {
  margin-bottom: 3rem;
  max-width: 820px;
}

.section-head .kicker {
  color: var(--accent-2);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.85rem;
  display: block;
}

.section-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-head p {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* FEATURED WORK — MAXCHEX BIG TILE */
.featured-tile {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 3rem;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(77, 128, 255, 0.06), rgba(27, 27, 34, 0.6)),
    var(--bg-card);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.featured-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(77, 128, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 128, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: 0.7;
}

.featured-tile:hover {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(77, 128, 255, 0.18);
}

.featured-tile .copy { position: relative; }

.featured-tile .tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-2);
  border: 1px solid var(--border-soft);
  padding: 0.35rem 0.75rem;
  margin-bottom: 1.25rem;
}

.featured-tile h3 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: 0.12em;
  color: var(--text);
  text-shadow: 0 0 24px rgba(77, 128, 255, 0.4);
  margin-bottom: 0.5rem;
}

.featured-tile .subtitle {
  color: var(--accent);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.featured-tile p {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
  max-width: 48ch;
}

.featured-tile .meta {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.featured-tile .meta span::before {
  content: "› ";
  color: var(--accent);
}

.featured-tile .art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-tile .art img {
  max-width: 360px;
  width: 100%;
  filter: drop-shadow(0 0 50px rgba(77, 128, 255, 0.45));
}

/* ABOUT */
.about {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.about .about-mark {
  border: 1px solid var(--border);
  padding: 0;
  background: rgba(27, 27, 34, 0.5);
  overflow: hidden;
  border-radius: 4px;
}

.about .about-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about .about-mark .label {
  color: var(--text-faint);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.about-body p {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-body p strong { color: var(--text); font-weight: normal; }

.about-body .signature {
  margin-top: 2rem;
  color: var(--accent-2);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

/* ORIGINAL CONTENT GRID */
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

a.content-card { color: inherit; text-decoration: none; }

.content-card {
  border: 1px solid var(--border);
  background: rgba(27, 27, 34, 0.55);
  padding: 2rem 1.75rem;
  transition: all 0.25s ease;
  position: relative;
  display: block;
}

.content-card:hover {
  border-color: var(--accent-2);
  box-shadow: 0 0 24px rgba(232, 181, 71, 0.18);
  transform: translateY(-3px);
}

.content-card .num {
  color: var(--accent-2);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  margin-bottom: 1rem;
  display: block;
}

.content-card h3 {
  color: var(--text);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.content-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* MANIFESTO STRIP */
.manifesto {
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 1.5rem;
  background: rgba(20, 20, 24, 0.4);
}

.manifesto p {
  font-size: clamp(1.2rem, 2.6vw, 1.75rem);
  color: var(--text);
  max-width: 30ch;
  margin: 0 auto;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.manifesto p .accent { color: var(--accent); }

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(15, 15, 19, 0.85);
  padding: 3.5rem 1.5rem 2rem;
  text-align: center;
}

.site-footer .footer-logo {
  max-width: 110px;
  margin: 0 auto 1.25rem;
  opacity: 0.85;
}

.site-footer .footer-tag {
  color: var(--text-dim);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.site-footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.site-footer .footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.site-footer .footer-links a:hover { color: var(--accent); }

.site-footer .copyright {
  color: var(--text-faint);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
}

/* CONTENT PAGE (about.html standalone, if needed) */
.content-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.content-page h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 22px rgba(77, 128, 255, 0.4);
}

.content-page .updated {
  color: var(--text-faint);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.content-page h2 {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 2.5rem 0 1rem;
  border-left: 3px solid var(--accent);
  padding-left: 0.85rem;
}

.content-page p {
  color: var(--text-dim);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .featured-tile {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.75rem;
    gap: 2rem;
    text-align: left;
  }
  .featured-tile .art { order: -1; }
  .about { grid-template-columns: 1fr; gap: 2.5rem; }
  .content-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .site-nav { padding: 1rem 1.25rem; flex-wrap: wrap; gap: 0.85rem; }
  .site-nav ul { gap: 1.1rem; }
  section { padding: 4rem 1.25rem; }
  .hero { padding: 3rem 1rem 4rem; }
  .content-grid { grid-template-columns: 1fr; }
  .featured-tile { padding: 2rem 1.25rem; }
  .featured-tile .meta { gap: 0.75rem; }
}
