@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&family=Oswald:wght@500;700&display=swap');

:root { color-scheme: dark; --bg: #08080d; --panel: #111119; --ink: #f5f2ed; --muted: #aaa6b3; --hot: #ff3d77; --line: #272631; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 16px/1.6 Inter, system-ui, sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
.site-header, .site-footer { width: min(1180px, calc(100% - 40px)); margin: auto; display: flex; align-items: center; justify-content: space-between; }
.site-header { min-height: 76px; position: relative; z-index: 10; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.brand-mark { display: grid; place-items: center; width: 34px; aspect-ratio: 1; border: 1px solid var(--hot); color: var(--hot); transform: rotate(-4deg); }
.site-nav { display: flex; gap: 26px; color: var(--muted); font-size: .88rem; text-transform: uppercase; letter-spacing: .1em; }
.site-nav a:hover, .site-nav a:focus-visible { color: white; }
.nav-toggle { display: none; border: 1px solid var(--line); background: transparent; color: white; padding: 8px 12px; }
.hero, .profile { width: min(1180px, calc(100% - 40px)); min-height: calc(100vh - 76px); margin: auto; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: clamp(30px, 6vw, 90px); padding: 44px 0 80px; }
.hero-art, .profile-art { position: relative; background: radial-gradient(circle at 50% 40%, #2d172e, #101018 68%); overflow: hidden; border: 1px solid var(--line); }
.hero-art::after, .profile-art::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 80px #08080d; pointer-events: none; }
.eyebrow { color: var(--hot); text-transform: uppercase; letter-spacing: .22em; font-size: .74rem; font-weight: 800; }
h1, h2, h3 { margin: 0; font-family: Oswald, Impact, sans-serif; text-transform: uppercase; line-height: .94; }
.hero h1 { font-size: clamp(4.2rem, 10vw, 9rem); letter-spacing: -.055em; }
.hero h1 span { color: transparent; -webkit-text-stroke: 1px var(--ink); }
.intro { max-width: 510px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.35rem); }
.button { display: inline-block; margin-top: 14px; padding: 13px 21px; background: var(--hot); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; }
.band-section { padding: 100px max(20px, calc((100% - 1180px) / 2)); background: #0c0c12; }
.section-heading { margin-bottom: 36px; }
.section-heading h2 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
.member-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.member-card { background: var(--panel); border: 1px solid var(--line); transition: transform .2s ease, border-color .2s ease; overflow: hidden; }
.member-card:hover { transform: translateY(-7px); border-color: var(--accent); }
.member-card img { aspect-ratio: 4 / 5; object-fit: cover; }
.card-copy { padding: 22px; }
.card-copy h3 { color: var(--accent); font-size: 2rem; }
.card-copy p { margin: 4px 0 18px; color: var(--muted); }
.card-copy span, .text-link { font-size: .78rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.profile { grid-template-columns: 1fr 1fr; }
.profile-art { border-color: color-mix(in srgb, var(--accent) 65%, var(--line)); }
.profile-copy .eyebrow { color: var(--accent); }
.profile h1 { font-size: clamp(5rem, 13vw, 10rem); color: var(--accent); }
.tagline { margin: 18px 0 8px; font-size: 1.5rem; font-weight: 800; }
.profile-copy > p:not(.eyebrow):not(.tagline) { max-width: 520px; color: var(--muted); }
.text-link { display: inline-block; margin-top: 24px; border-bottom: 1px solid var(--accent); }
.site-footer { min-height: 100px; border-top: 1px solid var(--line); color: var(--muted); font-size: .8rem; }
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; top: 65px; right: 0; flex-direction: column; gap: 0; width: 190px; padding: 10px; background: var(--panel); border: 1px solid var(--line); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 9px; }
  .hero, .profile { grid-template-columns: 1fr; padding-top: 20px; }
  .hero-copy { order: -1; }
  .member-grid { grid-template-columns: 1fr; }
  .site-footer { align-items: flex-start; flex-direction: column; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .member-card { transition: none; } }

