:root {
  --black: #070706;
  --panel: rgba(14, 13, 10, 0.92);
  --panel-2: #15130f;
  --gold: #c38a28;
  --gold-bright: #e8b24c;
  --cream: #d8c9ab;
  --muted: #9f9787;
  --line: rgba(195, 138, 40, 0.32);
  --danger: #ef8b62;
  --success: #81c995;
  --shadow: 0 18px 60px rgba(0, 0, 0, .45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
}

a { color: inherit; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 72px);
  background: linear-gradient(to bottom, rgba(6,6,5,.96), rgba(6,6,5,.72));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Black Ops One", Impact, sans-serif;
  letter-spacing: .04em;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: .92rem;
}

nav a:hover { color: var(--gold-bright); }

.hero {
  min-height: 760px;
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
  background-image: url("./assets/psa-city-background.png");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5,5,4,.92) 0%, rgba(5,5,4,.62) 48%, rgba(5,5,4,.25) 100%),
    linear-gradient(0deg, var(--black) 0%, transparent 32%);
}

.hero-content {
  width: min(1180px, calc(100% - 40px));
  padding-top: 72px;
}

.eyebrow {
  color: var(--gold-bright);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
}

h1, h2, h3 {
  font-family: "Black Ops One", Impact, sans-serif;
  font-weight: 400;
  line-height: 1.08;
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  color: #e1d6c1;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0,0,0,.65);
}

h1 span { color: var(--gold-bright); }

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  color: #e1d6c1;
}

h3 {
  font-size: 1.2rem;
  color: var(--gold-bright);
}

.hero-copy {
  max-width: 720px;
  color: #c6bdad;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  padding: 13px 22px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--gold);
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .06em;
  cursor: pointer;
  transition: .18s ease;
}

.button-primary {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #171109;
  box-shadow: 0 8px 24px rgba(195, 138, 40, .18);
}

.button-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }

.button-secondary {
  background: rgba(7, 7, 6, .55);
  color: var(--cream);
}

.button-discord {
  min-height: 40px;
  padding: 9px 16px;
  gap: 9px;
  background: #5865f2;
  border-color: #5865f2;
  color: #fff;
  font-size: .82rem;
}

.button-discord:hover { filter: brightness(1.08); transform: translateY(-1px); }

.discord-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 8vw, 110px);
}

.prose {
  color: var(--muted);
  font-size: 1.08rem;
}

.request-section {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(36px, 7vw, 90px);
  background:
    linear-gradient(135deg, rgba(195,138,40,.07), transparent 44%),
    var(--panel-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.request-copy p { color: var(--muted); }

.notice {
  margin-top: 28px;
  padding: 18px;
  color: #c9bfad;
  background: rgba(195, 138, 40, .08);
  border-left: 3px solid var(--gold);
}

.cleanup-form {
  padding: clamp(22px, 4vw, 42px);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: block;
  margin-bottom: 18px;
}

label > span {
  display: block;
  margin-bottom: 8px;
  color: #cfc3ae;
  font-weight: 700;
  font-size: .9rem;
}

input, select, textarea {
  width: 100%;
  padding: 13px 14px;
  color: #eee4d2;
  background: #0b0b09;
  border: 1px solid #3b3325;
  border-radius: 3px;
  font: inherit;
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(195, 138, 40, .12);
}

textarea { resize: vertical; }

.check-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-row input {
  width: auto;
  margin-top: 5px;
  accent-color: var(--gold);
}

.check-row span {
  margin: 0;
  font-weight: 500;
  color: var(--muted);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.submit-button {
  width: 100%;
  border: 0;
  font: inherit;
}

.form-status {
  min-height: 1.5em;
  margin-bottom: 0;
  font-weight: 700;
}

.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }

.charter-section { text-align: center; }

.charter-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: left;
}

.charter-grid article {
  padding: 24px;
  background: #0e0d0a;
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow);
}

.charter-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

footer p { margin: 2px 0 0; }

@media (max-width: 850px) {
  nav { display: none; }
  .split, .request-section { grid-template-columns: 1fr; }
  .charter-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 680px; }
}

@media (max-width: 560px) {
  .brand span { display: none; }
  .button-discord span { display: none; }
  .field-grid, .charter-grid { grid-template-columns: 1fr; }
  h1 { font-size: 3.25rem; }
  .section { padding-top: 72px; padding-bottom: 72px; }
}
