@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@900&family=Roboto+Slab:wght@400;500&family=Saira+Condensed:wght@700&display=swap");

:root {
  --bg: #000;
  --surface: #0f0f0f;
  --surface-2: #121212;
  --text: #f7f7f7;
  --muted: #b8b8b8;
  --accent: #ff9416;
  --accent-strong: #ff7a00;
  --border: #1f1f1f;
}

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

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: radial-gradient(1200px 800px at 20% -10%, #1b1b1b, transparent),
              radial-gradient(900px 700px at 90% -20%, #101010, transparent),
              var(--bg);
  font-family: "Roboto Slab", serif;
  line-height: 1.6;
  letter-spacing: 0.01em;
  text-rendering: optimizeLegibility;
}

a { color: var(--accent); }
a:hover { color: var(--accent-strong); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.75);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  height: 52px;
  width: auto;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-uk {
  font-family: "Montserrat", "Saira Condensed", sans-serif;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.brand-pretitle {
  font-family: "Montserrat", "Saira Condensed", sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand-tagline {
  color: var(--muted);
  font-size: 13px;
}
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}
nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
nav a:hover {
  background: var(--surface-2);
  color: var(--accent);
}
.pill {
  border: 1px solid var(--accent);
  color: var(--accent);
}
.pill:hover {
  background: var(--accent);
  color: #000;
}

.hero {
  padding: 96px 0 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  align-items: center;
}
.hero-copy h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(42px, 6vw, 64px);
  letter-spacing: -0.02em;
  margin: 12px 0;
}
.lede {
  color: var(--muted);
  max-width: 600px;
}
.eyebrow {
  font-family: "Saira Condensed", "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-size: 13px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 1px solid transparent;
}
.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #000;
  box-shadow: 0 14px 40px rgba(255, 148, 22, 0.3);
}
.btn.primary:hover { transform: translateY(-2px); }
.btn.ghost {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text);
}
.btn.ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn.small { padding: 9px 12px; font-size: 14px; }
.btn.large { padding: 14px 18px; }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  margin-top: 18px;
}
.hero-visual {
  position: relative;
}
.hero-photo {
  border-radius: 18px;
  min-height: 320px;
  background: linear-gradient(135deg, rgba(255, 148, 22, 0.35), rgba(0, 0, 0, 0.6)),
    url("images/Front page/london-2025-protest.jpg?v=2") center/cover no-repeat;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
.hero-badge {
  position: absolute;
  bottom: -16px;
  left: 16px;
  background: #000;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 10px 14px;
  border-radius: 999px;
  font-family: "Saira Condensed", sans-serif;
  letter-spacing: 0.08em;
}

.section {
  padding: 72px 0;
}
.section.muted {
  background: linear-gradient(180deg, rgba(255, 148, 22, 0.05), rgba(0, 0, 0, 0.08));
}
.section-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  margin: 6px 0 10px;
}
.section-lede {
  color: var(--muted);
  max-width: 720px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  min-height: 160px;
  position: relative;
}
.feature-card h3 {
  font-family: "Saira Condensed", sans-serif;
  font-size: 20px;
  margin: 6px 0;
  letter-spacing: 0.01em;
}
.feature-card p { color: var(--muted); margin: 0; }
.dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 999px;
  position: absolute;
  top: 16px;
  right: 16px;
}

.activity-grid, .chapter-grid, .news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.activity-card, .chapter-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}
.chapter-card, .activity-card {
  display: block;
  color: var(--text);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.chapter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
}
.image-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}
.image-frame.placeholder {
  background: linear-gradient(135deg, rgba(255, 148, 22, 0.15), rgba(255, 148, 22, 0.05));
}
.card-copy {
  padding: 18px;
}
.card-copy h3 {
  font-family: "Saira Condensed", sans-serif;
  font-size: 22px;
  margin: 4px 0 8px;
}
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.card-link {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
}
.card-link:hover { color: var(--accent-strong); }
.card-copy p { color: var(--muted); margin: 0 0 10px; }
.tag {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.inline-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.inline-link:hover { color: var(--accent-strong); }

.news-grid { margin-top: 18px; }
.news-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  display: grid;
  gap: 10px;
}
.news-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #9d9d9d;
  border: 1px solid var(--border);
  border-radius: 10px;
  height: 72px;
  padding: 8px 10px;
}
.news-logo {
  max-height: 32px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
}
.news-source {
  text-transform: uppercase;
  color: var(--accent);
  font-family: "Saira Condensed", sans-serif;
  letter-spacing: 0.12em;
  font-size: 12px;
  margin: 0;
}
.news-card h3 {
  margin: 8px 0 12px;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
}
.news-card a {
  font-weight: 600;
  text-decoration: none;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.person-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}
.avatar {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--accent);
}
.role {
  color: var(--accent);
  margin: 4px 0;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.bio { color: var(--muted); margin: 0; }

.callout {
  background: linear-gradient(135deg, rgba(255, 148, 22, 0.25), rgba(255, 148, 22, 0.05));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.callout-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  background: #050505;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  align-items: center;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
}
.footer-links a:hover { color: var(--accent); }
.footer-brand .brand-mark { width: 68px; height: auto; }

@media (max-width: 720px) {
  nav { display: none; }
  .callout-inner { flex-direction: column; align-items: flex-start; }
}
