:root {
  --bg: #f7f4ee;
  --paper: #fffaf1;
  --ink: #1c2430;
  --muted: #5d6876;
  --line: #e5ddcf;
  --dark: #111827;
  --dark-soft: #1f2937;
  --gold: #d6a84f;
  --gold-dark: #9a6f1c;
  --blue: #345b8c;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

h1, h2, h3 {
  line-height: 1.15;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.6rem);
  letter-spacing: -0.07em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.25rem;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.15rem;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-dark);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-cta {
  background: var(--ink);
  color: white !important;
  padding: 10px 16px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--ink);
}

.hero {
  padding: 98px 0 82px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  right: -220px;
  top: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 168, 79, 0.36), rgba(214, 168, 79, 0));
  z-index: -1;
}

.hero-grid,
.two-col,
.join-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.eyebrow {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

.hero-text {
  max-width: 670px;
  font-size: 1.35rem;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}

.button.primary {
  background: var(--ink);
  color: white;
}

.button.secondary {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.hero-panel,
.card,
.brief-card,
.candidate-box,
.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.hero-panel {
  margin-top: 34px;
}

.hero-panel ul,
.candidate-box ul {
  margin: 0;
  padding-left: 1.2rem;
}

.hero-panel li,
.candidate-box li {
  margin-bottom: 0.85rem;
}

.section {
  padding: 88px 0;
}

.section.muted {
  background: #efe8dc;
}

.section.dark {
  background: var(--dark);
  color: white;
}

.section.dark .eyebrow {
  color: var(--gold);
}

.section.dark p,
.section.dark li {
  color: #d1d5db;
}

.cards {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.mandate-list {
  display: grid;
  gap: 22px;
}

.mandate-list > div {
  border-left: 4px solid var(--gold);
  padding-left: 20px;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 38px;
}

.number {
  display: inline-block;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  margin-bottom: 18px;
}

.timeline {
  margin-top: 36px;
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.timeline-item span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.rules {
  display: grid;
  gap: 14px;
}

.rules div {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}

.rules strong {
  display: block;
  margin-bottom: 4px;
}

.rules span {
  color: var(--muted);
}

.brief-card ol {
  margin: 0;
  padding-left: 1.2rem;
}

.brief-card li {
  margin-bottom: 0.7rem;
}

.join-section {
  background: linear-gradient(135deg, #f7f4ee, #eadcc4);
}

.contact-form {
  display: grid;
  gap: 16px;
  font-family: Arial, Helvetica, sans-serif;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
  color: var(--ink);
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  background: white;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.site-footer {
  background: var(--dark);
  color: white;
  padding: 48px 0;
}

.site-footer p {
  color: #d1d5db;
}

.footer-brand {
  margin-bottom: 14px;
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .join-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards.three,
  .cards.four,
  .strategy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-panel {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 8px 0;
  }

  .nav-cta {
    text-align: center;
  }

  .cards.three,
  .cards.four,
  .strategy-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 70px 0 58px;
  }

  .section {
    padding: 64px 0;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.3rem);
  }
}
