@font-face {
  font-family: "Atelia";
  src: url("assets/fonts/Atelia.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Artific Regular";
  src: url("assets/fonts/artifictrial-regular.otf") format("opentype");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Artific Black";
  src: url("assets/fonts/artifictrial-black.otf") format("opentype");
  font-style: normal;
  font-display: swap;
}

:root {
  --dark: #1e1e1e;
  --cream: #f6f3ed;
  --lime: #d1ff71;
  --teal: #069093;
  --purple: #9192ff;
  --line: rgba(30, 30, 30, 0.16);
  --radius: 28px;
  --shadow: 0 24px 80px rgba(30, 30, 30, 0.18);
}

.text-bold {
  font-family: "Artific Black", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Artific Regular", Arial, sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.5;
}

h1,
h2,
h3 {
  font-family: "Atelia", Arial, sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 6vw;
  background: rgba(246, 243, 237, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: "Atelia", Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: normal;
  letter-spacing: 0;
  font-synthesis: none;
}

.site-logo {
  height: 50px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a:hover,
.footer a:hover {
  opacity: 0.65;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--dark);
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta {
  padding: 10px 18px;
  background: var(--lime);
  color: var(--dark);
}

.button {
  padding: 14px 22px;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(30, 30, 30, 0.16);
}

.primary {
  background: var(--purple);
  color: var(--cream);
  border-color: var(--cream);
}

.secondary {
  background: var(--teal);
  color: var(--cream);
  border-color: var(--cream);
}

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: center;
  padding: 20px 6vw;
  background: var(--dark);
  color: var(--cream);
}

.powered-by {
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
}

.powered-by img {
  height: 34px;
  width: auto;
}

.hero-content {
  max-width: 900px;
  min-width: 0;
}

.hero-card {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-top: 15px;
  margin-bottom: 24px;
  max-width: 980px;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.2em;
  letter-spacing: 0;
  font-weight: normal;
  font-style: normal;
  font-synthesis: none;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.2em;
  letter-spacing: 0;
  font-weight: normal;
  font-style: normal;
  font-synthesis: none;
}

h3 {
  margin-bottom: 10px;
  font-family: "Artific Black", Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 1.2em;
  letter-spacing: 0;
  font-style: normal;
}

.hero-copy {
  max-width: 680px;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(246, 243, 237, 0.78);
  margin-bottom: 5px;
}

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

.hero-card {
  align-self: end;
  justify-self: end;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border: 2px solid var(--cream);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--dark);
  box-shadow: var(--shadow);
  transform: translate(-60px, -210px) rotate(2deg) scale(0.65);
  transform-origin: bottom right;
  overflow: hidden;
}

.hero-card-image {
  width: calc(100% + 68px);
  height: 360px;
  object-fit: cover;
  margin: -34px -34px 20px;
}

.hero-report {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.hero-report img {
  display: block;
  width: 150%;
  max-width: 800px;
  height: auto;
  object-fit: contain;
  transform: translate(-35px, -20px) rotate(42.5deg);
}

.project-card {
  align-self: start;
  justify-self: end;

  display: flex;
  flex-direction: column;

  width: 100%;
  max-width: 520px;

  padding: 34px;

  border: 2px solid var(--cream);
  border-radius: var(--radius);

  background: var(--cream);
  color: var(--dark);

  box-shadow: var(--shadow);

  transform: rotate(2deg);

  position: relative;
  left: -40px;
  top: 40px;

  overflow: hidden;
}

.project-card-image {
  width: calc(100% + 68px);
  height: 300px;

  object-fit: cover;

  margin: -34px -34px 20px;
}

.project-card h3 {
  margin: 0 0 16px;
}

.project-card p {
  max-width: none;
  margin: 0;

  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(30, 30, 30, 0.78);
}

.card-label,
.theme-card span,
.skill-card span,
.purpose-steps span,
.timeline-list span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
}

.card-label {
  color: var(--purple);
}

.question-title {
  margin: 0 0 16px;
  font-family: "Atelia", Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: normal;
  color: var(--dark);
}

.section {
  padding: 60px 6vw;
  border-top: 1px solid var(--line);
}

.intro {
  position: relative;
  overflow: hidden;
  max-width: none;
  background: var(--lime);
  color: var(--dark);
}

.intro p,
.contact p,
.purpose-copy > p:last-child,
.young-people-intro > p:last-child {
  max-width: 780px;
  font-size: 1.25rem;
  color: rgba(30, 30, 30, 0.72);
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  background: var(--dark);
  color: var(--cream);
}

.split .eyebrow,
.split h2 {
  color: var(--cream);
}

.grid,
.pricing-grid,
.skills-grid,
.activation-grid {
  display: grid;
  gap: 18px;
}

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

.theme-card,
.skill-card,
.price-card,
.timeline-list article,
.activation-grid article,
.purpose-steps article {
  padding: 28px;
  border-radius: 24px;
}

.theme-card {
  min-height: 180px;
  border: 0;
  color: var(--dark);
}

.theme-card p,
.price-card p,
.timeline-list p,
.skill-card p,
.purpose-steps p,
.activation-grid p {
  color: rgba(30, 30, 30, 0.72);
}

.theme-card:nth-child(1),
.theme-card:nth-child(4) {
  background: var(--teal);
  color: var(--cream);
}

.theme-card:nth-child(1) p,
.theme-card:nth-child(4) p {
  color: rgba(246, 243, 237, 0.82);
}

.theme-card:nth-child(2) {
  background: var(--lime);
}

.theme-card:nth-child(3) {
  background: var(--purple);
}

.theme-card span,
.skill-card span,
.purpose-steps span,
.timeline-list span {
  color: currentColor;
  opacity: 0.75;
}

.research-themes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
}

.expandable-theme .theme-more {
  display: none;
}

.expandable-theme .theme-toggle {
  position: absolute;
  right: 28px;
  bottom: 22px;

  appearance: none;
  -webkit-appearance: none;

  border: none;
  padding: 0;
  background: none;

  font-family: inherit;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: currentColor;

  cursor: pointer;
}

.research-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.expandable-theme .theme-preview {
  display: inline;
  margin: 0;
}

.expandable-theme .theme-more {
  display: none;
}

.expandable-theme .theme-more p {
  display: inline;
  margin: 0;
}

.expandable-theme .theme-more[style*="display: block"] {
  display: inline !important;
}

.project-intro, 
.partner-intro,
.impact-intro {
  font-size: 1.25rem;
  line-height: 1.5;
}

/* ========================================
   PURPOSE SECTION
   Split layout with overlapping pills
   ======================================== */

.purpose {
  display: block;
  width: 100%;
  background: var(--cream);
  color: var(--dark);
}

.purpose-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.purpose-intro {
  width: 100%;
  max-width: none;
  margin-bottom: 0;
}

.purpose-intro > p:last-child {
  width: 100%;
  max-width: none;
  font-size: 1.25rem;
  color: rgba(30, 30, 30, 0.72);
}

.purpose-visual {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.purpose-step {
  position: relative;
  width: 86%;
}

.purpose-step-hear,
.purpose-step-act {
  align-self: flex-start;
}

.purpose-step-understand {
  align-self: flex-end;
}

.purpose-pill {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  margin: 0 0 -18px 24px;
  padding: 14px 30px;
  border: 2px solid var(--dark);
  border-radius: 999px;
  font-size: 1.35rem;
  text-align: center;
}

.hear-pill {
  background: var(--lime);
  color: var(--dark);
}

.understand-pill {
  background: var(--teal);
  color: var(--dark);
}

.act-pill {
  background: var(--purple);
  color: var(--dark);
}

.purpose-text-box {
  background: var(--dark);
  color: var(--cream);
  border-radius: 24px;
  padding: 42px 32px 30px;
}

.purpose-text-box p {
  max-width: none;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--cream);
}

.full-width-image {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  margin-top: 60px;
}

.full-width-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* Mobile */

@media (max-width: 900px) {
  .purpose-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .purpose-step {
    width: 100%;
  }

  .purpose-step-understand {
    align-self: flex-start;
  }
}

.young-people {
  background: var(--purple);
  color: var(--dark);
}

.young-people {
  background: var(--purple);
  color: var(--dark);
}

.young-people-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: start;
}

.young-people-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 54px;
  align-items: center;
  width: 100%;
}

.young-people-copy {
  width: 100%;
  max-width: none;
}

.young-people-copy .eyebrow,
.young-people-copy h2,
.young-people-copy > p:last-child {
  width: 100%;
  max-width: none;
}

.young-people-copy > p:last-child {
  margin-bottom: 0;
  font-size: 1.25rem;
  color: rgba(30, 30, 30, 0.72);
}

.young-people-image {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 28px;
}

.skills-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 42px;
}

.skill-card {
  min-height: 250px;
  background: var(--cream);
}

.skill-card:nth-child(2),
.skill-card:nth-child(5) {
  background: var(--lime);
}

.skill-card:nth-child(3) {
  background: var(--teal);
  color: var(--cream);
}

.skill-card:nth-child(3) p {
  color: rgba(246, 243, 237, 0.82);
}

.skills-note,
.pricing-note {
  width: 100%;
  max-width: none;
  margin: 36px 0 0;
  font-size: 1.1rem;
}

.timeline-note {
  width: 100%;
  max-width: none;
  margin: 36px 0 0;
  font-size: 1.1rem;
  color: rgba(246, 243, 237, 0.78);
}

.timeline {
  background: var(--dark);
  color: var(--cream);
}

.timeline .eyebrow,
.timeline h2 {
  color: var(--cream);
}

.timeline-heading {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 42px;
  align-items: end;
}

.timeline-status {
  padding: 22px;
  border: 2px solid var(--lime);
  border-radius: 22px;
  background: rgba(209, 255, 113, 0.08);
}

.timeline-status span {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
}

.timeline-status strong {
  font-family: "Artific Black", Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.35;
}

.timeline-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.timeline-list article {
  min-height: 200px;
  background: var(--cream);
  color: var(--dark);
}

/* AUG / SEPT / OCT */
.timeline-list article:nth-child(1),
.timeline-list article:nth-child(2),
.timeline-list article:nth-child(3) {
  background: var(--teal);
  color: var(--cream);
}

.timeline-list article:nth-child(1) p,
.timeline-list article:nth-child(2) p,
.timeline-list article:nth-child(3) p {
  color: rgba(246, 243, 237, 0.82);
}

/* NOV / JAN / FEB / MARCH */
.timeline-list article:nth-child(4),
.timeline-list article:nth-child(5),
.timeline-list article:nth-child(6),
.timeline-list article:nth-child(7) {
  background: var(--purple);
  color: var(--dark);
}

/* MAY / JUNE / SEPTEMBER */
.timeline-list article:nth-child(8),
.timeline-list article:nth-child(9),
.timeline-list article:nth-child(10) {
  background: var(--lime);
  color: var(--dark);
}


.activation {
  background: var(--lime);
  color: var(--dark);
}

.activation-intro {
  width: 100%;
  max-width: none;
  margin-bottom: 42px;
}

.activation-intro .eyebrow {
  margin-bottom: 16px;
}

.activation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.activation-grid article {
  background: var(--cream);
}

.activation-card {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
}

.activation-card img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.activation-card-copy {
  padding: 28px;
}

.activation-grid article:nth-child(1) {
  background: var(--dark);
  color: var(--cream);
}

.activation-grid article:nth-child(1) .card-label,
.activation-grid article:nth-child(1) h3 {
  color: var(--cream);
}

.activation-grid article:nth-child(1) p {
  color: rgba(246, 243, 237, 0.82);
}

.activation-grid article:nth-child(2) {
  background: var(--teal);
  color: var(--cream);
}

.activation-grid article:nth-child(2) .card-label,
.activation-grid article:nth-child(2) h3 {
  color: var(--cream);
}

.activation-grid article:nth-child(2) p {
  color: rgba(246, 243, 237, 0.82);
}

.activation-grid article:nth-child(3) {
  background: var(--cream);
  color: var(--dark);
}

.activation-grid article:nth-child(3) .card-label,
.activation-grid article:nth-child(3) h3 {
  color: var(--dark);
}

.activation-grid article:nth-child(3) p {
  color: rgba(30, 30, 30, 0.72);
}

.pricing {
  background: var(--cream);
  color: var(--dark);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  align-items: start;
}

.price-card {
  background: var(--dark);
  color: var(--cream);
  border: 0;
  align-self: start;
  height: fit-content;
}

.price-card p,
.price-card li {
  color: rgba(246, 243, 237, 0.82);
}

.price-card.featured {
  background: var(--lime);
  color: var(--dark);
  transform: translateY(-12px);
}

.price-card.featured h3,
.price-card.featured .price,
.price-card.featured p,
.price-card.featured li {
  color: var(--dark);
}

.price {
  margin: 18px 0;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

ul {
  margin: 24px 0 0;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

.pricing-note {
  color: rgba(30, 30, 30, 0.68);
}

.hiya {
  background: var(--purple);
  color: var(--dark);
}

.hiya p {
  width: 100%;
  max-width: none;
  font-size: 1.25rem;
  color: rgba(30, 30, 30, 0.72);
}

.hiya a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.contact {
  text-align: center;
  background: var(--cream);
  color: var(--dark);
}

.contact .eyebrow {
  color: var(--purple);
}

.contact h2 .bridgework {
  color: var(--teal);
}

.contact p {
  margin-left: auto;
  margin-right: auto;
}

.contact-button {
  background: var(--lime);
  color: var(--dark);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 6vw;
  border-top: 1px solid var(--line);
  font-weight: 800;
  background: var(--cream);
  color: var(--dark);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-logo img {
  height: 28px;
  width: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


.purpose-pledge-simple {
  width: 100%;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 2px solid var(--teal);
}

.purpose-pledge-simple span {
  display: block;
  margin-bottom: 14px;

  color: var(--teal);

  font-family: "Artific Black", Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.purpose-pledge-simple p {
  width: 100%;
  max-width: none;
  margin: 0;

  color: var(--dark);

  font-size: 1.2rem;
  line-height: 1.65;
}

/* Mobile navigation */

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 2px solid var(--dark);
  border-radius: 50%;
  background: transparent;
  color: var(--dark);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 18px 6vw 26px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 30px rgba(30, 30, 30, 0.12);
}

.mobile-nav.is-open {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.mobile-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.mobile-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 12px 18px !important;
  border: 2px solid var(--dark) !important;
  border-radius: 999px;
  background: var(--lime);
  color: var(--dark);
  border-bottom: 2px solid var(--dark);
  font-weight: 800 !important;
}



@media (max-width: 1180px) {
  .nav {
    gap: 14px;
    font-size: 0.84rem;
  }

  .skills-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

.timeline-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero,
  .split,
  .purpose,
  .young-people-intro,
  .timeline-heading,
  .activation-intro {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-card {
    transform: none;
  }

 .activation-intro .eyebrow {
  margin-bottom: 16px;
}

  .grid,
  .pricing-grid,
  .purpose-steps,
  .activation-grid {
    grid-template-s: 1fr;
  }

  .skills-grid,
  .timeline-list {
    grid-template-s: repeat(2, minmax(0, 1fr));
  }

   .purpose-s {
    grid-template-s: 1fr;
    gap: 34px;
  }

  .purpose- p {
    max-width: 600px;
  }

  .price-card.featured {
    transform: none;
  }

  .timeline-status {
    max-width: 520px;
  }
}


@media (max-width: 640px) {
  .skills-grid,
  .timeline-list {
    grid-template-s: 1fr;
  }
}

@media (max-width: 560px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    width: 100%;
    padding: 16px 20px;
  }

  .hero,
  .section {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    overflow: hidden;
  }

  .hero-content,
  .hero-copy,
  .hero-actions,
  .hero-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.25rem, 11vw, 2.8rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-actions {
    flex-direction: ;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    white-space: normal;
    text-align: center;
  }

  .footer {
    flex-direction: ;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .nav-cta,
  .menu-toggle span {
    transition: none;
  }
}

.VAT {
  font-style: italic;
  margin-top: 3rem;
  padding-bottom: 10px;
}

.pitch-line2 {
  font-style: bold;
}

.price-column {
  display: flex;
  flex-direction: column;
  align-self: start;
}

.price-column .VAT {
  margin: 12px 0 0;
  font-size: 0.9rem;
}

/* ==========================
   FOUNDING PARTNER SECTION
========================== */

.founding-partner-section {
  background: #1E1E1E;
  color: #fffcf9;
}

.founding-feature {
  position: relative;
  max-width: 1280px;
  margin: 0 auto 140px;
  min-height: 650px;
}

.founding-image {
  width: 75%;
  height: 650px;
  object-fit: cover;
  display: block;
}

.founding-card {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: min(520px, 48%);
  background: #d1ff71;
  color: #1E1E1E;
  padding: 48px;
}

.founding-card h2 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.founding-card p {
  margin-bottom: 20px;
}

.founding-note {
  font-weight: 700;
  margin-bottom: 0;
}

.research-process {
  max-width: 900px;
  margin: 0 auto;
}

.research-process h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  margin-bottom: 48px;
}

.research-methods {
  display: grid;
  gap: 22px;
}

.research-method {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 14px;
}

.research-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-top: 7px;
}

.research-method h3 {
  color: var(--lime);
  margin-bottom: 10px;
}

.research-method p {
  margin: 0;
  max-width: none;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Mobile */

@media (max-width: 900px) {

  .founding-feature {
    min-height: auto;
  }

  .founding-image {
    width: 100%;
    height: 400px;
  }

  .founding-card {
    position: relative;
    width: calc(100% - 24px);
    margin: -60px 0 0 24px;
    right: auto;
    bottom: auto;
    padding: 32px;
  }

  .research-process h1 {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }

}

.footer-bridgework-logo {
  height: 35px;
  width: auto;
  margin-right: 0;
}

.inline-bridgework-logo {
  height: 50px;
  width: auto;
  display: inline-block;
  vertical-align: left;
}

/* ========================================
   PROJECT INTRO
   Two-column intro + evidence feature
   ======================================== */

.project-top {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: clamp(50px, 7vw, 100px);
  align-items: start;
  max-width: 1250px;
  margin: 0 auto;
}

.project-copy {
  max-width: 560px;
}

.project-copy h2 {
  max-width: 540px;
  margin-bottom: 24px;
}

.project-copy .project-intro {
  max-width: 520px;
  margin-bottom: 0;
}


/* RIGHT CARD */

.project-card {
  align-self: start;
  justify-self: end;
  display: flex;
  flex-direction: column;

  width: 100%;
  max-width: 520px;
  padding: 34px;

  border: 2px solid var(--cream);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--dark);
  box-shadow: var(--shadow);

  transform: rotate(2deg);
  overflow: hidden;
}

.project-card-image {
  width: calc(100% + 68px);
  height: 300px;
  object-fit: cover;
  margin: -34px -34px 20px;
}

.project-card h3 {
  margin: 0 0 16px;
}

.project-card p {
  max-width: none;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(30, 30, 30, 0.78);
}

.project-card a {
  color: var(--teal);
  text-decoration: underline;
  font-weight: 700;
}



/* ========================================
   STARTING POINT SECTION
   Three-card layout, no images
   ======================================== */

.starting-point-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 70px;
}

.starting-point-card {
  background: var(--dark);
  color: var(--cream);
  border-radius: 24px;
  padding: 32px;
}

.starting-point-card h3 {
  margin: 0 0 16px;
  color: var(--lime);
  font-weight: 800;
}

.starting-point-card p {
  margin: 0 0 18px;
  color: var(--cream);
  line-height: 1.6;
}

.starting-point-card p:last-child {
  margin-bottom: 0;
}

.starting-point-card a {
  color: var(--lime);
  text-decoration: underline;
  font-weight: 700;
}

.full-width-final {
  grid-template-columns: 1fr;
  width: 100%;
}

.project-copy .starting-point-card {
  margin-top: 40px;
  height: fit-content;
}

/* Mobile */
@media (max-width: 768px) {
  .project-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .project-evidence {
    padding-top: 80px;
  }

  .project-evidence-card {
    margin-right: 0;
  }

  .project-evidence-image {
    width: 150px;
    height: 200px;
    top: -20px;
    right: 20px;
  }

  .starting-point-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .starting-point-card {
    padding: 24px;
  }
}


/* ========================================
   RESEARCH THEMES PLEDGE
   ======================================== */

.research-pledge {
  border-top: 1px solid rgba(246, 243, 237, 0.4);
  padding-top: 28px;
  margin-top: 20px;
}

.research-pledge h3 {
  color: var(--lime);
  margin: 0 0 12px;
}

.research-pledge p {
  color: var(--cream);
  max-width: 900px;
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 1181px) {

  /* Reverse bottom row */
  .timeline-list article:nth-child(6) {
    grid-column: 5;
    grid-row: 2;
  }

  .timeline-list article:nth-child(7) {
    grid-column: 4;
    grid-row: 2;
  }

  .timeline-list article:nth-child(8) {
    grid-column: 3;
    grid-row: 2;
  }

  .timeline-list article:nth-child(9) {
    grid-column: 2;
    grid-row: 2;
  }

  .timeline-list article:nth-child(10) {
    grid-column: 1;
    grid-row: 2;
  }

  .timeline-list article {
    position: relative;
  }

  /* Top row connecting lines */
  .timeline-list article:nth-child(1)::after,
  .timeline-list article:nth-child(2)::after,
  .timeline-list article:nth-child(3)::after,
  .timeline-list article:nth-child(4)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -18px;
    width: 18px;
    height: 2px;
    background: var(--cream);
  }

  /* Bottom row connecting lines */
  .timeline-list article:nth-child(6)::after,
  .timeline-list article:nth-child(7)::after,
  .timeline-list article:nth-child(8)::after,
  .timeline-list article:nth-child(9)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -18px;
    width: 18px;
    height: 2px;
    background: var(--cream);
  }

/* January → February curved connector */
.timeline-list article:nth-child(5)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -28px;
  width: 28px;
  height: calc(100% + 18px);
  border-top: 2px solid var(--cream);
  border-right: 2px solid var(--cream);
  border-bottom: 2px solid var(--cream);
  border-radius: 0 18px 18px 0;
}
}


/* =========================================================
   THE IMPACT
========================================================= */

.impact-section {
  background: #ffffff;
}

.impact-container {
  width: min(1200px, 100%);
  margin: 0 auto;
}


/* 2 X 2 CARD GRID */

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;

  margin-top: 50px;
}


/* CARDS */

.impact-card {
  position: relative;
  overflow: hidden;

  min-height: 280px;
  padding: 36px;

  border-radius: var(--radius);
}


/* CARD COLOURS */

.impact-card--black {
  background: var(--dark);
  color: #ffffff;
}

.impact-card--teal {
  background: var(--teal);
  color: #ffffff;
}


/* LARGE BACKGROUND NUMBER */

.impact-number {
  position: absolute;

  right: 20px;
  top: 50%;

  transform: translateY(-50%);

  font-size: 15rem;
  font-weight: 900;
  line-height: 0.8;

  opacity: 0.12;

  pointer-events: none;
}


/* CARD TEXT */

.impact-card-content {
  position: relative;
  z-index: 2;

  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.impact-card-content h3 {
  margin: 0 0 8px;

  font-size: 2rem;
  line-height: 1;
}

.impact-card-content p {
  margin: 0;

  font-size: 1rem;
  line-height: 1.4;
}

/* =========================================================
   IMPACT CARDS — HOVER
========================================================= */

/* Normal content */
.impact-card .impact-card-content {
  transition: opacity 250ms ease;
}

/* Hover copy */
.impact-card .impact-card-hover {
  position: absolute;
  z-index: 3;

  left: 36px;
  right: 36px;
  bottom: 36px;

  opacity: 0;

  transition: opacity 250ms ease;
}

.impact-card .impact-card-hover p {
  margin: 0;

  font-size: 1.15rem;
  line-height: 1.5;
}

/* On hover: hide header + subheader */
.impact-card:hover .impact-card-content {
  opacity: 0;
}

/* On hover: reveal sentence */
.impact-card:hover .impact-card-hover {
  opacity: 1;
}

/* Branded Font */
.impact-closing {
  color: var(--teal);
  margin: 0;
}

.storytelling-image {
  width: 100px;
  height: auto;
  margin-top: 30px;
  transform: rotate(180deg);
}

/* =========================================================
   MOBILE LAYOUT OVERRIDES
========================================================= */

@media (max-width: 768px) {

  /* --------------------------
     PROJECT
  -------------------------- */

  .project-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .project-card {
    position: static;
    left: auto;
    top: auto;
    justify-self: center;
    margin: 0 auto;
    width: 100%;
    max-width: 520px;
    transform: none;
  }


  /* --------------------------
     RESEARCH THEMES
  -------------------------- */

  .research-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .research-themes-grid {
    grid-template-columns: 1fr;
  }


 /* --------------------------
   PURPOSE
-------------------------- */

.purpose {
  display: flex;
  flex-direction: column;
}

.purpose-layout {
  display: contents;
}

.purpose-intro {
  order: 1;
}

.full-width-image {
  order: 2;
  width: 100%;
  margin: 0 0 36px;
  overflow: hidden;
}

.full-width-image img {
  width: 100%;
  height: auto;
}

.purpose-visual {
  order: 3;
}

.purpose-pledge-simple {
  order: 4;
}

.purpose-step {
  width: 100%;
}


  /* --------------------------
     BUILT WITH YOUNG PEOPLE
  -------------------------- */

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


  /* --------------------------
     TIMELINE
  -------------------------- */

  .timeline-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}


  /* --------------------------
     BEYOND THE REPORT
  -------------------------- */

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


  /* --------------------------
     PRICING
  -------------------------- */

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

  .price-card.featured {
    transform: none;
  }


  /* --------------------------
     RESEARCH IMPACT
  -------------------------- */

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

  .theme-card {
    width: 100%;
  }

  .timeline-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .timeline-list article {
    min-width: 0;
    min-height: auto;
    padding: 18px;
  }

  .timeline-list article h3 {
    font-size: 1.1rem;
  }

  .timeline-list article p {
    font-size: 0.9rem;
    line-height: 1.4;
    overflow-wrap: anywhere;
  }

  .timeline-list article span {
    font-size: 0.68rem;
  }

  .storytelling-image {
  width: 25%;
  height: auto;
  margin-bottom: 10px
}
  
  .menu-toggle {
  display: flex;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 10001;
}

  .mobile-nav {
    position: fixed;
    top: 72px;
    right: 16px;
    z-index: 10000;
    width: min(280px, calc(100vw - 32px));
    padding: 20px;
    background: var(--cream);
    border: 2px solid var(--dark);
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(30, 30, 30, 0.2);
  }
}
  
