:root {
  --navy: #07162f;
  --navy2: #0b2144;
  --ink: #13223b;
  --gold: #f5bd42;
  --gold2: #ffd779;
  --cream: #f7f4ed;
  --white: #fff;
  --line: #dce1e7;
  --muted: #667085;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
.skip {
  position: absolute;
  top: -50px;
  left: 1rem;
  background: #fff;
  padding: 0.7rem 1rem;
  z-index: 100;
}
.skip:focus {
  top: 1rem;
}
a {
  color: inherit;
  text-decoration: none;
}
.nav {
  height: 90px;
  padding: 0 clamp(1.2rem, 5vw, 5.2rem);
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--navy);
  color: #fff;
  position: relative;
  z-index: 20;
  border-bottom: 1px solid #ffffff1a;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 230px;
}
.brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand strong {
  font-family: Manrope;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
}
.brand small {
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  color: #b7c2d7;
}
.brand-mark {
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid #f5bd4266;
  border-radius: 50%;
  display: block;
}
.brand-mark i {
  position: absolute;
  background: var(--gold);
  display: block;
}
.brand-mark i:nth-child(1) {
  width: 20px;
  height: 3px;
  left: 9px;
  top: 18px;
}
.brand-mark i:nth-child(2) {
  width: 3px;
  height: 20px;
  left: 18px;
  top: 9px;
}
.brand-mark i:nth-child(3) {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  left: 15px;
  top: 15px;
}
.nav nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.4rem);
  margin-left: auto;
}
.nav nav a {
  font-size: 0.82rem;
  font-weight: 600;
  color: #cad3e1;
  transition: 0.2s;
}
.nav nav a:hover {
  color: #fff;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.nav-cta,
.nav-join {
  padding: 0.72rem 1.1rem;
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
}
.nav-cta {
  background: var(--gold);
  color: var(--navy);
}
.nav-join {
  border: 1px solid #f5bd4288;
  color: var(--gold);
}
.nav-join:hover {
  background: var(--gold);
  color: var(--navy);
}
.nav-cta span,
.nav-join span,
.button span {
  margin-left: 0.6rem;
}
.menu {
  display: none;
  background: none;
  border: 0;
  color: #fff;
}
.hero {
  min-height: calc(100vh - 90px);
  background: radial-gradient(
    circle at 75% 25%,
    #173d70 0,
    #0b2349 20%,
    var(--navy) 58%
  );
  color: #fff;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  padding: 5rem clamp(1.2rem, 7vw, 8rem);
  position: relative;
  overflow: hidden;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#ffffff08 1px, transparent 1px),
    linear-gradient(90deg, #ffffff08 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(90deg, transparent, black);
}
.hero-copy,
.hero-art {
  position: relative;
  z-index: 2;
}
.eyebrow,
.section-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-weight: 700;
}
.eyebrow {
  color: #d6deeb;
}
.eyebrow span {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 0.6rem;
}
.hero h1,
.statement h2,
.journey h2,
.causes h2,
.join h2,
.identity h2 {
  font-family: Manrope, sans-serif;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.045em;
  margin: 0.85rem 0 1.5rem;
}
.hero h1 {
  font-size: clamp(3rem, 6.4vw, 6.8rem);
}
em {
  font-style: normal;
  color: var(--gold);
}
.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  max-width: 700px;
  color: #cbd5e4;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 2.3rem 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.35rem;
  font-weight: 700;
  font-size: 0.92rem;
  transition: 0.25s;
}
.button:hover {
  transform: translateY(-3px);
}
.gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 12px 30px #0004;
}
.ghost {
  border: 1px solid #ffffff3d;
  color: #fff;
}
.trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: #9eabc0;
  font-size: 0.78rem;
}
.trust span:before {
  content: "✓";
  color: var(--gold);
  margin-right: 0.35rem;
}
.hero-art {
  height: 560px;
  display: grid;
  place-items: center;
}
.orbit {
  position: absolute;
  border: 1px solid #ffffff1c;
  border-radius: 50%;
}
.orbit-one {
  width: 430px;
  height: 430px;
}
.orbit-two {
  width: 300px;
  height: 300px;
  border-color: #f5bd4233;
}
.heart-line svg {
  width: min(380px, 35vw);
  filter: drop-shadow(0 0 30px #f5bd4233);
}
.heart-line path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
}
.heart-line .inner {
  stroke: #fff;
  opacity: 0.45;
  stroke-dasharray: 4 7;
}
.art-card {
  position: absolute;
  padding: 1rem 1.25rem;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 45px #0006;
  min-width: 160px;
}
.art-card b,
.art-card span {
  display: block;
}
.art-card b {
  font-family: Manrope;
}
.art-card span {
  font-size: 0.75rem;
  color: var(--muted);
}
.card-a {
  left: 4%;
  top: 23%;
}
.card-b {
  right: 1%;
  bottom: 19%;
  background: var(--gold);
}
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: #8090a8;
  z-index: 2;
}
.scroll-cue span {
  display: inline-block;
  width: 52px;
  height: 1px;
  background: #8090a8;
  margin-left: 0.7rem;
  vertical-align: middle;
}
.statement,
.causes,
.join,
.identity {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.2rem, 7vw, 8rem);
}
.section-kicker {
  color: #9b6e0c;
  margin: 0 0 2rem;
}
.statement-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8vw;
}
.statement h2,
.causes h2,
.identity h2 {
  font-size: clamp(2.6rem, 5.3vw, 5.6rem);
}
.statement-copy {
  padding-top: 1rem;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 570px;
}
.statement-copy p:first-child {
  color: var(--ink);
  font-weight: 600;
}
.text-link,
.support a {
  display: inline-flex;
  gap: 0.8rem;
  color: #9b6e0c;
  font-weight: 700;
  border-bottom: 1px solid #d6b66b;
  padding-bottom: 0.25rem;
  margin-top: 1rem;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 6rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.pillar {
  min-height: 315px;
  padding: 1.7rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: 0.3s;
}
.pillar:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-6px);
}
.pillar > span {
  font-size: 0.7rem;
  color: #9b6e0c;
}
.pillar .icon {
  font-size: 2rem;
  color: var(--gold);
  margin: 3rem 0 1.5rem;
}
.pillar h3 {
  font-family: Manrope;
  font-size: 1.4rem;
}
.pillar p {
  font-size: 0.92rem;
  color: var(--muted);
}
.pillar:hover p {
  color: #bcc7d8;
}
.journey {
  background: var(--navy);
  color: #fff;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.2rem, 7vw, 8rem);
}
.section-kicker.light {
  color: var(--gold);
}
.journey-head {
  max-width: 850px;
}
.journey h2,
.join h2 {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
}
.journey-head > p:last-child {
  color: #aeb9cc;
  max-width: 580px;
}
.steps {
  margin-top: 5rem;
  border-top: 1px solid #ffffff24;
}
.step {
  display: grid;
  grid-template-columns: 90px 1fr;
  border-bottom: 1px solid #ffffff24;
  padding: 2rem 0;
  transition: 0.25s;
}
.step:hover {
  padding-left: 1rem;
  background: #ffffff06;
}
.step-no {
  font-family: Manrope;
  color: var(--gold);
  font-size: 0.8rem;
}
.step h3 {
  font-family: Manrope;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin: 0 0 0.5rem;
}
.step p {
  color: #aeb9cc;
  margin: 0;
  max-width: 690px;
}
.notice {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding: 1.2rem 1.4rem;
  border: 1px solid #ffffff22;
  background: #ffffff08;
  color: #b9c5d6;
}
.notice span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 700;
  flex: none;
}
.notice p {
  margin: 0;
}
.causes {
  background: var(--cream);
}
.causes-title {
  max-width: 900px;
}
.causes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #d7d3c9;
  border: 1px solid #d7d3c9;
  margin-top: 4rem;
}
.cause {
  background: var(--cream);
  padding: clamp(2rem, 4vw, 4rem);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}
.cause.wide {
  grid-column: span 2;
  background: var(--navy);
  color: #fff;
  min-height: 320px;
}
.cause b {
  color: #ad7b12;
  font-size: 0.75rem;
}
.cause h3 {
  font: 700 clamp(1.6rem, 2.5vw, 2.6rem)/1.2 Manrope;
  margin: 3rem 0 1rem;
  max-width: 760px;
}
.cause p {
  color: var(--muted);
  max-width: 700px;
}
.cause.wide p {
  color: #b5c0d1;
}
.cause > span {
  margin-top: auto;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: #9b6e0c;
}
.join {
  background: #fff;
}
.join-card {
  background: linear-gradient(120deg, #0b2144, var(--navy));
  color: #fff;
  padding: clamp(2rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: end;
  position: relative;
  overflow: hidden;
}
.join-card:after {
  content: "PERB";
  position: absolute;
  right: -1rem;
  top: -5rem;
  font: 800 13rem Manrope;
  color: #ffffff05;
}
.join-card > div {
  position: relative;
  z-index: 1;
}
.join-card p:not(.section-kicker) {
  color: #b5c0d1;
  max-width: 650px;
}
.join-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 220px;
}
.contact-line small,
.contact-line strong {
  display: block;
}
.contact-line small {
  color: #9eabc0;
}
.contact-line strong {
  font-size: 1.35rem;
}
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 1.5rem;
  gap: 1.5rem;
}
.support {
  border: 1px solid var(--line);
  padding: clamp(2rem, 4vw, 4rem);
}
.support .label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: #9b6e0c;
}
.support h3 {
  font: 700 clamp(2rem, 3vw, 3.2rem)/1.2 Manrope;
}
.support h3 small {
  font-size: 1rem;
  color: var(--muted);
}
.support.invert {
  background: var(--gold);
  border-color: var(--gold);
}
.support.invert a {
  color: var(--navy);
  border-color: var(--navy);
}
.identity {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 8vw;
  background: #f7f9fc;
}
.identity-copy > p:last-child {
  max-width: 670px;
  color: var(--muted);
}
.legal {
  margin: 0;
  border-top: 1px solid var(--line);
}
.legal div {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.legal dt {
  color: var(--muted);
}
.legal dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}
.emergency {
  padding: 3rem clamp(1.2rem, 7vw, 8rem);
  background: var(--gold);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.emergency p {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  font-weight: 700;
}
.emergency h2 {
  font: 700 clamp(1.5rem, 2.5vw, 2.5rem) Manrope;
  margin: 0;
}
.emergency-actions {
  display: flex;
  gap: 1rem;
}
.emergency-actions a {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-left: 1px solid #07162f66;
  padding-left: 1.5rem;
}
.emergency-actions b {
  font: 800 2.8rem Manrope;
}
.emergency-actions span {
  font-size: 0.75rem;
  line-height: 1.3;
}
footer {
  background: #050f21;
  color: #fff;
  padding: 5rem clamp(1.2rem, 7vw, 8rem) 2rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 4rem;
  border-bottom: 1px solid #ffffff1a;
}
.footer-top p {
  font: 700 clamp(1.5rem, 2.6vw, 2.7rem)/1.25 Manrope;
  text-align: right;
  margin: 0;
  color: #e7ebf2;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  padding: 4rem 0;
}
.footer-grid h3 {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}
.footer-grid a,
.footer-grid span {
  display: block;
  color: #aeb8c8;
  margin: 0.6rem 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff1a;
  padding-top: 2rem;
  color: #748198;
  font-size: 0.75rem;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1000px) {
  .nav nav {
    display: none;
  }
  .nav-actions {
    margin-left: auto;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 3rem;
  }
  .hero-art {
    height: 370px;
  }
  .heart-line svg {
    width: 280px;
  }
  .orbit-one {
    width: 320px;
    height: 320px;
  }
  .orbit-two {
    width: 230px;
    height: 230px;
  }
  .statement-grid,
  .identity {
    grid-template-columns: 1fr;
  }
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
  .join-card {
    grid-template-columns: 1fr;
  }
  .join-actions {
    align-items: flex-start;
  }
  .emergency {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 680px) {
  .nav {
    height: 74px;
  }
  .brand {
    min-width: 0;
  }
  .brand small {
    display: none;
  }
  .nav-actions {
    margin-left: auto;
  }
  .nav-cta {
    display: none;
  }
  .nav-join {
    padding: 0.55rem 0.8rem;
  }
  .menu {
    display: block;
    margin-left: 0;
  }
  .nav.open nav {
    display: flex;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero {
    min-height: calc(100vh - 74px);
    padding-bottom: 3rem;
  }
  .hero h1 {
    font-size: 3.15rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-art {
    height: 300px;
  }
  .heart-line svg {
    width: 230px;
  }
  .orbit-one {
    width: 270px;
    height: 270px;
  }
  .orbit-two {
    width: 190px;
    height: 190px;
  }
  .art-card {
    min-width: 130px;
    padding: 0.7rem;
  }
  .card-a {
    left: 0;
  }
  .card-b {
    right: 0;
  }
  .scroll-cue {
    display: none;
  }
  .statement,
  .causes,
  .join,
  .identity,
  .journey {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .pillars {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }
  .pillar {
    min-height: 250px;
  }
  .cause.wide {
    grid-column: span 1;
  }
  .causes-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }
  .step {
    grid-template-columns: 50px 1fr;
  }
  .notice {
    align-items: flex-start;
  }
  .join-card {
    padding: 2rem 1.3rem;
  }
  .legal div {
    display: block;
  }
  .legal dd {
    text-align: left;
    margin-top: 0.25rem;
  }
  .emergency-actions {
    width: 100%;
    flex-direction: column;
  }
  .emergency-actions a {
    border-left: 0;
    border-top: 1px solid #07162f55;
    padding: 1rem 0;
  }
  .footer-top {
    display: block;
  }
  .footer-top p {
    text-align: left;
    margin-top: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom span {
    display: block;
    margin: 0.4rem 0;
  }
}
