:root {
  /* Dark Industrial Backgrounds - Easy on the eyes */
  --bg-outer: #121312;       /* Deep asphalt for the outer margins */
  --bg-paper: #1B1D1C;       /* Dark slate for the main reading area */
  --text-main: #D4D0C5;      /* Soft, unbleached parchment for text (zero glare) */
  --border-dark: #3A3E3C;    /* Dimmed forged iron */

  /* Thematic Accents - Brightened slightly to pop against the dark background */
  --rivera-rust: #CE5141;    /* Lighter terracotta/brick */
  --motown-brass: #D6AD49;   /* Warm, soulful gold */
  --forest-green: #5B8562;   /* Resilient, glowing green */
  
  /* Contrast text for buttons */
  --accent-text: #F4F1EA; 
}

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

body {
  background-color: var(--bg-outer);
  color: var(--text-main);
  font-family: 'Newsreader', Georgia, serif;
  line-height: 1.6;
  padding: 20px;
}

.newspaper-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--bg-paper);
  padding: 30px 40px;
  border: 1px solid var(--border-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* --- MASTHEAD --- */
.masthead {
  text-align: center;
  padding-bottom: 5px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 8px;
  margin-bottom: 20px;
  color: var(--text-main);
}

.site-title {
  font-family: 'UnifrakturMaguntia', cursive;
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-main);
  margin: 10px 0 5px 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.subtitle {
  font-family: 'Newsreader', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--motown-brass);
}

/* --- ORGANIC DIVIDERS (SVG VINES) --- */
.vine-divider-horizontal {
  height: 20px;
  width: 100%;
  margin: 15px 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='20' viewBox='0 0 80 20'%3E%3Cpath d='M0,10 Q10,20 20,10 T40,10 T60,10 T80,10' fill='none' stroke='%235B8562' stroke-width='1.5'/%3E%3Cpath d='M10,15 Q12,20 16,16 M30,5 Q28,0 24,4 M50,15 Q52,20 56,16 M70,5 Q68,0 64,4' fill='none' stroke='%235B8562' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
  opacity: 0.85;
}

.vine-divider-vertical {
  width: 20px;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='80' viewBox='0 0 20 80'%3E%3Cpath d='M10,0 Q20,10 10,20 T10,40 T10,60 T10,80' fill='none' stroke='%235B8562' stroke-width='1.5'/%3E%3Cpath d='M15,10 Q20,12 16,16 M5,30 Q0,28 4,24 M15,50 Q20,52 16,56 M5,70 Q0,68 4,64' fill='none' stroke='%235B8562' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-y;
  background-position: center;
  opacity: 0.85;
}

/* --- LANDING PAGE LAYOUT --- */
.landing-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.manifesto {
  text-align: center;
  margin-bottom: 40px;
}

.manifesto h2 {
  font-size: 2.5rem;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.2;
}

.manifesto p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--text-main);
}

/* --- THE CO-OP MODEL CALLOUT --- */
.coop-model-box {
  background-color: var(--bg-outer);
  border: 2px dashed var(--motown-brass);
  border-radius: 4px 12px 6px 4px; /* Organic shaping */
  padding: 30px;
  margin-top: 30px;
  text-align: left;
  box-shadow: 4px 4px 0px var(--motown-brass);
}

.coop-model-box h3 {
  color: var(--motown-brass);
  font-size: 1.6rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.coop-model-box p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.coop-model-box p:last-child {
  margin-bottom: 0;
}

/* --- SUBMISSION FORM --- */
.submission-section {
  padding: 20px 0;
}

.submission-section h3 {
  font-size: 2rem;
  color: var(--rivera-rust);
  margin-bottom: 10px;
  text-align: center;
}

.submission-section p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.submission-form {
  background-color: var(--bg-outer);
  padding: 40px;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
}

.form-group {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background-color: var(--bg-paper);
  color: var(--text-main);
  border: 1px solid var(--border-dark);
  padding: 12px;
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--motown-brass);
}

/* --- BUTTONS --- */
.btn-red {
  display: inline-block;
  background-color: var(--rivera-rust);
  color: var(--accent-text);
  padding: 15px 24px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  border: 2px solid var(--rivera-rust);
  transition: all 0.2s;
  width: 100%;
  text-align: center;
  font-size: 1.1rem;
  cursor: pointer;
  margin-top: 10px;
}

.btn-red:hover {
  background-color: transparent;
  color: var(--rivera-rust);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 850px) {
  .site-title { 
    font-size: 3.2rem; 
  }
  .top-bar {
    flex-direction: column;
    gap: 5px;
  }
  .submission-form {
    padding: 20px;
  }
  .coop-model-box {
    padding: 20px;
  }
}