/* =========================================
   Pickup_andWebb — Shared Stylesheet
   Palette: Dark Navy / White / Neon Green
   Style: Minimal & Refined
   ========================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0B1929;
  --navy-2:     #0F2237;
  --navy-3:     #132843;
  --green:      #00E676;
  --white:      #F0EFE9;
  --grey:       #7A8A9A;
  --grey-light: #A8B6C2;
  --border:     rgba(255,255,255,0.08);
  --max:        1200px;
  --serif:      'Bebas Neue', sans-serif;
  --sans:       'Inter', sans-serif;
}

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

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
ul { list-style: none; }

a { color: var(--white); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2.25rem, 4vw, 3.75rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.25rem); }
h4 { font-size: 1.375rem; }

p { max-width: 65ch; }

/* --- Layout --- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 7rem 0; border-bottom: 1px solid var(--border); }
section:last-child { border-bottom: none; }
main { padding-top: 72px; }

/* --- Navigation --- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11,25,41,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav-logo a { color: var(--white); }
.nav-logo .accent { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--grey-light);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-links .nav-cta {
  color: var(--navy);
  background: var(--green);
  padding: 0.5rem 1.375rem;
  font-weight: 500;
}
.nav-links .nav-cta:hover { opacity: 0.85; color: var(--navy); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.2s;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--grey-light);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a.nav-cta {
  color: var(--green);
  background: none;
  padding-left: 0;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* --- Hero --- */
.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  padding: 7rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,230,118,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 2rem;
}

.hero h1 { margin-bottom: 1.5rem; }
/* Bebas Neue has no italic — use colour accent instead */
.hero h1 em { font-style: normal; color: var(--green); }

.hero-sub {
  font-size: 1.125rem;
  color: var(--grey-light);
  margin-bottom: 2.5rem;
  max-width: 52ch;
  line-height: 1.65;
}

.hero-values {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-value {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey);
}
.hero-value::before {
  content: '— ';
  color: var(--green);
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.875rem 2.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: var(--sans);
}
.btn-primary { background: var(--green); color: var(--navy); }
.btn-primary:hover { opacity: 0.85; color: var(--navy); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-secondary:hover { border-color: var(--white); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--green);
  padding: 0;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
.btn-ghost::after { content: ' →'; }
.btn-ghost:hover { color: var(--green); opacity: 0.75; }

/* --- Section Labels & Headers --- */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.5rem;
}

.section-header { margin-bottom: 4.5rem; }
.section-header h2 { margin-bottom: 1.25rem; }
.section-header p { color: var(--grey-light); font-size: 1.0625rem; max-width: 58ch; }

/* --- Stats Grid --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 4rem 0;
}
.stat-item {
  background: var(--navy);
  padding: 2.5rem 2rem;
}
.stat-number {
  font-family: var(--serif);
  font-size: 3.5rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.55;
  max-width: 22ch;
}

/* --- Quote Block --- */
.quote-block {
  border-left: 2px solid var(--green);
  padding: 2.5rem 3rem;
  background: var(--navy-2);
  margin: 4rem 0;
}
/* Quotes use Inter italic — more readable than Bebas Neue for long passages */
.quote-text {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.quote-attribution {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.5;
}
.quote-attribution strong { color: var(--white); font-weight: 500; }

/* --- Cards --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--navy-2);
  padding: 2.5rem;
  border: 1px solid var(--border);
  transition: border-color 0.25s;
}
.card:hover { border-color: rgba(0,230,118,0.3); }
.card-number {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--green);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.75rem; font-size: 1.25rem; }
.card p { color: var(--grey); font-size: 0.9375rem; }
.card-tagline {
  font-size: 0.75rem;
  color: var(--green);
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* --- Two Column --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
}

/* --- Impact Grid (Case Study Stats) --- */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}
.impact-item { padding-left: 1.25rem; border-left: 2px solid var(--green); }
.impact-number {
  font-family: var(--serif);
  font-size: 2.25rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.impact-label { font-size: 0.8125rem; color: var(--grey); line-height: 1.45; }

/* --- Comparison Table --- */
.comparison-wrap { overflow-x: auto; margin: 3rem 0; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}
.comparison-table thead th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--navy-3);
  border-bottom: 1px solid var(--border);
}
.comparison-table thead th:first-child { color: var(--green); }
.comparison-table thead th:last-child { color: var(--grey); }
.comparison-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}
.comparison-table td:first-child { color: var(--white); }
.comparison-table td:last-child { color: var(--grey); }
.comparison-table tr:last-child td { border-bottom: none; }

/* --- Team Photo --- */
.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 1.75rem;
  background: var(--navy-3);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.3s;
}
.team-card:hover .team-photo img { filter: grayscale(0%); }

/* --- Journalist Avatar --- */
.journalist-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--navy-3);
  border: 2px solid var(--border);
}
.journalist-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* --- Team Cards --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.team-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.team-card:hover { border-color: rgba(0,230,118,0.25); }
.team-card h3 { margin-bottom: 0.4rem; }
.team-role {
  font-size: 0.75rem;
  color: var(--green);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.team-card > p {
  color: var(--grey);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.skills-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.75rem;
}
.skills-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.skill-tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--border);
  color: var(--grey);
}

/* --- Journalist Grid --- */
.journalist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.journalist-card {
  padding: 2rem;
  border: 1px solid var(--border);
}
.journalist-card h4 { margin-bottom: 0.25rem; }
.journalist-byline {
  font-size: 0.75rem;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.journalist-card p { font-size: 0.9rem; color: var(--grey); }

/* --- Philosophy --- */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
}
.philosophy-item {
  padding: 2.5rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.philosophy-item:nth-child(2n) { border-right: none; }
@media (min-width: 900px) {
  .philosophy-item:nth-child(2n) { border-right: 1px solid var(--border); }
  .philosophy-item:nth-child(3n) { border-right: none; }
}
.phil-num {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.philosophy-item h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.philosophy-item p { font-size: 0.9rem; color: var(--grey); max-width: none; }

/* --- Sectors --- */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.sector-item {
  background: var(--navy);
  padding: 2rem 1.75rem;
  transition: background 0.2s;
}
.sector-item:hover { background: var(--navy-2); }
.sector-name {
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}
.sector-item p { font-size: 0.85rem; color: var(--grey); max-width: none; }

/* --- Process Steps --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.5rem;
  counter-reset: steps;
}
.process-step {
  padding: 2.5rem;
  border: 1px solid var(--border);
  position: relative;
  transition: border-color 0.25s;
}
.process-step:hover { border-color: rgba(0,230,118,0.3); }
.step-num {
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,230,118,0.15);
  margin-bottom: 1.25rem;
}
.process-step h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.process-step p { font-size: 0.9rem; color: var(--grey); max-width: none; line-height: 1.65; }
.step-tagline {
  font-size: 0.75rem;
  color: var(--green);
  letter-spacing: 0.06em;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* --- CTA Band --- */
.cta-band {
  background: var(--navy-2);
  padding: 6rem 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { color: var(--grey-light); margin: 0 auto 2.5rem; }
.cta-band .hero-ctas { justify-content: center; }

/* --- Stat Callout Bar --- */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-bar-item {
  padding: 2.25rem 2.5rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.stat-bar-item:last-child { border-right: none; }
.stat-bar-num {
  font-family: var(--serif);
  font-size: 2.25rem;
  color: var(--green);
  line-height: 1;
}
.stat-bar-text { font-size: 0.875rem; color: var(--grey); max-width: 28ch; }
.stat-source {
  display: block;
  font-size: 0.6875rem;
  color: var(--grey);
  opacity: 0.65;
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
  font-style: italic;
}

/* --- Inline list items (bullet-style) --- */
.check-list { padding: 1rem 0; }
.check-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--grey-light);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.check-list li::before {
  content: '—';
  color: var(--green);
  flex-shrink: 0;
}
.check-list li:last-child { border-bottom: none; }

/* --- Footer --- */
footer {
  padding: 4.5rem 0 3rem;
  background: var(--navy);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.footer-brand .footer-logo {
  font-family: var(--serif);
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}
.footer-brand .footer-logo .accent { color: var(--green); }
.footer-brand p { font-size: 0.875rem; color: var(--grey); max-width: 32ch; }
.footer-nav-group h5 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1.25rem;
}
.footer-nav-group ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav-group a { font-size: 0.9rem; color: var(--grey-light); }
.footer-nav-group a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 2rem;
  font-size: 0.8rem;
  color: var(--grey);
}
.footer-bottom a { color: var(--grey); }
.footer-bottom a:hover { color: var(--white); }

/* --- Utilities --- */
.text-green  { color: var(--green); }
.text-grey   { color: var(--grey); }
.italic      { font-style: italic; }
.serif       { font-family: var(--serif); }
.mt-1  { margin-top: 1rem; }
.mt-2  { margin-top: 2rem; }
.mt-3  { margin-top: 3rem; }
.mb-1  { margin-bottom: 1rem; }
.mb-2  { margin-bottom: 2rem; }
.mb-3  { margin-bottom: 3rem; }

/* --- Responsive --- */
@media (max-width: 768px) {
  section { padding: 4.5rem 0; }
  .hero { padding: 5rem 0; min-height: auto; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-bar { grid-template-columns: 1fr 1fr; }
  .stat-bar-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-bar-item:nth-child(2n) { border-right: none; }
  .quote-block { padding: 2rem; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
}
