
/* ── BASE ── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html,body { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.7;
  color: #1a1a18;
  background: #f8f5f0;
  scroll-behavior: smooth;
}

a { color: inherit; }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; }

p { max-width: 700px; }

img { display: block; width: 100%; }


/* ── LAYOUT ── */

.container {
  width: 100%;
  border-bottom: 1px solid #e0dbd2;
  padding: 0 2rem;
}

.container > * {
  margin: 0 auto;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 0;
}

.cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.cols.wide {
  grid-template-columns: 3fr 2fr;
}

.cols.thirds {
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}


/* ── NAV ── */

nav .logos { display: block; }
.brand {
    font-family: 'Plus Jakarta Sans', sans-serif; 
    font-size: clamp(1.5rem, 4vw, 7vw); text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    display: block;
    text-align: center;
}
.powered-by {
    font-size: 15px;
    text-align: center;
    margin-top: -5px;
}

  
    .navlinks {
        display: flex;
        gap: 2rem;
        margin-top: 100px;
        background: inherit;
        list-style: none;
    }
    .navlinks.inner { padding: 0; padding-top: 15px; padding-bottom: 15px; }
  
  .navlinks a {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: #888;
  }
  
  .navlinks a:hover { color: #1a1a18; border-bottom: 2px solid #c4663a; }
  

@media (min-width: 640px) {
    .brand { font-size: clamp(1.5rem, 9vw, 8vw); position: absolute; top: -30px; left: -30px; 
    line-height: 100px; }
    .powered-by { position: absolute; top: 25px; right: 50px; font-size: 15px; 
        background-size: 30px; background-repeat: no-repeat; background-position: right center; padding-right: 40px; }
}



/* ── HERO ── */

.cols2 {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.copy {
  padding: 5rem 4rem 5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

p {
  color: #666;
  margin-bottom: 2rem;
}

.photo {
  background: #c8c4be;
  filter: grayscale(100%);
  overflow: hidden;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ── SECTION HEADER ── */

.section {
  padding: 5rem 0 3rem;
}

.label {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: black;
  margin-bottom: 0.75rem;
}

h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}



/* ── CARDS (grid) ── */

.cards {
  padding-bottom: 5rem;
}

.card {
  text-decoration: none;
  color: inherit;
  display: block;
  border-top: 2px solid #e0dbd2;
  padding-top: 1.5rem;
  font-size: 80%;
}

.tag {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c4663a;
  margin-bottom: 0.5rem;
}

h3 {

  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}




a.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1a1a18;
  border-bottom: 2px solid #c4663a;
  padding-bottom: 0.1rem;
}


/* ── TOPIC LIST / LINK GRID (standardised blocks) ── */

.topics {
  padding-bottom: 5rem;
  columns: 2;
  column-gap: 2rem;
}

.topics a {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  text-decoration: none;
  color: #1a1a18;
  padding: 0.6rem 0;
  border-bottom: 1px solid #e0dbd2;
  break-inside: avoid;
}

.topics a:hover { color: #c4663a; text-decoration: underline; }

.topics a::before {
  content: '→';
  color: #c4663a;
  flex-shrink: 0;
  font-size: 0.8rem;
}


/* ── FOOTER ── */

footer {
  width: 100%;
  padding: 0 2rem;
}

footer .inner {
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 80%;
}


.crisis {
    padding: 30px;
    color:white !important;
}
.crisis .label { color: white !important;}
/* ── RESPONSIVE ── */

@media (max-width: 860px) {

  .hero .inner,
  .cols,
  .cols.wide,
  .cols.thirds,
  .crisis .inner {
    grid-template-columns: 1fr;
  }

  .hero .copy { padding: 3rem 0; }
  .hero .photo { min-height: 260px; }

  .topics { columns: 1; }

  .support {
    grid-template-columns: 1fr 1fr;
  }

  .crisis .lines {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 540px) {
  .navlinks { display: none; }
  .support { grid-template-columns: 1fr; }
  .crisis .lines { grid-template-columns: 1fr 1fr; }
}
