:root {
  --bg: #0a0a0a;
  --panel: #121212;
  --gold: #f5a623;
  --gold-soft: #ffcf6b;
  --text: #f2f0ec;
  --muted: #a3a099;
  --line: #262320;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 clamp(1rem, 0.95rem + 0.25vw, 1.0625rem)/1.65 "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.1; letter-spacing: -0.01em; margin: 0 0 0.5em; }
h1 { font-size: clamp(2.25rem, 1.4rem + 4vw, 4.5rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.25rem); color: var(--gold-soft); }

a { color: var(--gold-soft); }

img { max-width: 100%; height: auto; display: block; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.skip {
  position: absolute; left: -9999px;
  background: var(--gold); color: #000; padding: 0.75rem 1rem; z-index: 10;
}
.skip:focus { left: 1rem; top: 1rem; }

/* nav */
.nav {
  position: sticky; top: 0; z-index: 5;
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem;
  align-items: center; justify-content: space-between;
  padding: 0.75rem clamp(1rem, 4vw, 3rem);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--text); text-decoration: none;
  font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  font-size: 0.9rem;
}
.brand img { width: 34px; height: auto; }
.nav nav { display: flex; gap: clamp(1rem, 3vw, 2rem); }
.nav nav a {
  color: var(--muted); text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8rem; font-weight: 600;
}
.nav nav a:hover { color: var(--gold); }

/* layout */
main { display: block; }
section {
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
  max-width: 1100px; margin-inline: auto;
}
section + section { border-top: 1px solid var(--line); }
section > h2 {
  text-align: center;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gold);
  font-size: clamp(0.9rem, 0.8rem + 0.4vw, 1.05rem);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.lead { font-size: 1.08em; color: #ddd8d0; }
.center { text-align: center; max-width: 62ch; margin-inline: auto; }
.muted { color: var(--muted); font-size: 0.95em; }

/* hero */
.hero {
  text-align: center;
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(245, 166, 35, 0.16), transparent 70%),
    var(--bg);
  max-width: none;
}
.hero .mark {
  width: clamp(160px, 34vw, 280px);
  margin: 0 auto clamp(1rem, 3vw, 2rem);
  animation: rise 0.7s ease-out both;
}
.hero h1 {
  background: linear-gradient(180deg, #fff 30%, var(--gold) 115%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.tagline { color: var(--muted); font-size: 1.1em; margin-top: 0; }
.tagline strong { color: var(--gold-soft); font-weight: 600; }

@keyframes rise { from { opacity: 0; transform: translateY(14px); } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero .mark { animation: none; }
}

/* buttons */
.social { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.35rem; margin: 0.3rem;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--panel); color: var(--text);
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn svg { width: 20px; height: 20px; fill: currentColor; }
.btn:hover { border-color: var(--gold); color: var(--gold-soft); transform: translateY(-2px); }
.btn.yt:hover { border-color: #ff3d3d; color: #ff6b6b; }
.btn.ig:hover { border-color: #d6249f; color: #f07ad0; }

/* film + music cards */
.work {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.work + .work { margin-top: clamp(1.5rem, 4vw, 2.5rem); }
.work img { border-radius: 8px; width: 100%; }
.badge {
  display: inline-block; margin: 0 0 0.75rem;
  padding: 0.3rem 0.8rem; border-radius: 999px;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.4);
  color: var(--gold); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700;
}
.work dl {
  display: grid; grid-template-columns: auto 1fr;
  gap: 0.4rem 1.25rem; margin: 1.5rem 0 0;
  border-top: 1px solid var(--line); padding-top: 1.25rem;
  font-size: 0.95rem;
}
.work dt { color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.75rem; align-self: center; }
.work dd { margin: 0; }
.work .btn { margin: 1.5rem 0 0; }

@media (max-width: 640px) {
  .work { grid-template-columns: 1fr; text-align: center; }
  .work img { max-width: 260px; margin-inline: auto; }
  .work dl { text-align: left; }
}

/* footer */
footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 1rem;
  text-align: center; color: var(--muted); font-size: 0.9rem;
}
footer p { margin: 0.4rem 0; }
