:root {
  --bg: #faf7f2;
  --fg: #1a2e1a;
  --accent: #e8a838;
  --accent-dark: #c88a1e;
  --muted: #6b7a6b;
  --border: #d4cfc4;
  --card-bg: #f2efe8;
  --section-pad: clamp(60px, 10vw, 120px);
  --max-w: 1200px;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Outfit', system-ui, sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(232,168,56,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 100px);
  padding-right: clamp(40px, 5vw, 80px);
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.hero-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-lede {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--muted);
  line-height: 1.75;
  max-width: 460px;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  background: #2a3d2a;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) brightness(0.92);
}

.hero-img-placeholder::after {
  content: 'Studio';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.1em;
}

/* MANIFESTO */
.manifesto {
  background: var(--fg);
  padding: var(--section-pad);
}

.manifesto-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
}

.manifesto-mark {
  padding-top: 8px;
  opacity: 0.9;
}

.manifesto-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 22px;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.manifesto-text p {
  font-size: 1.05rem;
  color: rgba(250,247,242,0.6);
  line-height: 1.8;
  max-width: 600px;
}

/* REVENUE */
.revenue {
  padding: var(--section-pad) clamp(24px, 6vw, 80px);
}

.revenue-header {
  margin-bottom: 56px;
  max-width: 560px;
}

.revenue-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 12px;
}

.revenue-header p {
  font-size: 1.05rem;
  color: var(--muted);
}

.revenue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 2px solid var(--border);
}

.revenue-card {
  background: var(--bg);
  padding: 36px 30px;
  transition: background 0.2s ease;
}

.revenue-card:hover { background: var(--card-bg); }

.revenue-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.revenue-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.revenue-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ROSTER */
.roster {
  background: var(--fg);
  padding: var(--section-pad);
}

.roster-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.roster-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #1a2e1a;
}

.roster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.7) brightness(0.8);
}

.roster-img-placeholder::after {
  content: 'Live';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.1em;
}

.roster-text {
  padding: clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.roster-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}

.roster-text > p {
  font-size: 1rem;
  color: rgba(250,247,242,0.45);
  margin-bottom: 40px;
}

.roster-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.roster-list li {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.roster-list li:first-child { border-top: 1px solid rgba(255,255,255,0.08); }

.roster-list li strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 6px;
}

.roster-list li span {
  font-size: 0.88rem;
  color: rgba(250,247,242,0.5);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: var(--section-pad) clamp(24px, 6vw, 80px);
  background: var(--bg);
}

.closing-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 24px;
}

.closing p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 48px;
}

.closing-rule {
  width: 64px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto;
}

/* FOOTER */
footer {
  background: var(--fg);
  padding: 48px clamp(24px, 6vw, 80px);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--bg);
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.35);
}

.footer-meta {
  font-size: 0.78rem;
  color: rgba(250,247,242,0.25);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.footer-submit-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-submit-link:hover { color: var(--bg); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { height: 340px; order: -1; }
  .hero-inner { padding: 56px clamp(32px, 6vw, 60px) 48px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 28px; }
  .revenue-grid { grid-template-columns: repeat(2, 1fr); }
  .roster-inner { grid-template-columns: 1fr; }
  .roster-image { min-height: 300px; }
}

@media (max-width: 640px) {
  .hero-inner { padding: 48px 24px 40px; }
  .manifesto, .revenue, .closing { padding-left: 24px; padding-right: 24px; }
  .roster { padding-left: 24px; padding-right: 24px; }
  footer { padding-left: 24px; padding-right: 24px; }
  .roster-text { padding: 48px 0; }
  .revenue-grid { grid-template-columns: 1fr; }
  .revenue-card { padding: 28px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
}