:root {
  --navy-950: #051426;
  --navy-900: #071b33;
  --navy-800: #0c2b4f;
  --blue-700: #165ba6;
  --green-700: #117447;
  --green-600: #15965a;
  --green-500: #21b46d;
  --lime: #a8cd3a;
  --gold: #f2c94c;
  --red: #d9343a;
  --ink: #142133;
  --muted: #5f6e7d;
  --paper: #ffffff;
  --cloud: #f3f7f5;
  --line: #dce6e1;
  --shadow: 0 24px 70px rgba(3, 22, 40, 0.14);
  --radius-lg: 30px;
  --radius-md: 18px;
  --shell: min(1180px, calc(100% - 40px));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--navy-950);
  background: var(--gold);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.brand-ribbon {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  display: grid;
  grid-template-columns: 1.25fr 0.6fr 0.35fr;
  height: 5px;
}

.brand-ribbon span:nth-child(1) { background: var(--green-500); }
.brand-ribbon span:nth-child(2) { background: var(--gold); }
.brand-ribbon span:nth-child(3) { background: var(--red); }

.site-header {
  position: fixed;
  inset: 5px 0 auto;
  z-index: 110;
  color: #fff;
  background: rgba(5, 20, 38, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand img {
  width: 58px;
  height: 52px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 3px;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 1.05rem;
  letter-spacing: 0.11em;
}

.brand-copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.3vw, 22px);
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.nav-portal {
  min-height: 42px;
  padding: 0 16px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-portal:hover {
  color: var(--navy-950);
  background: var(--gold);
  border-color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 166px 0 66px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 24%, rgba(33, 180, 109, 0.22), transparent 28%),
    radial-gradient(circle at 82% 32%, rgba(22, 91, 166, 0.3), transparent 25%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 54%, #0b3a3d);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 26px 26px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 45%, #000);
  opacity: 0.35;
}

.hero::after {
  position: absolute;
  right: -210px;
  bottom: -280px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(168, 205, 58, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.025), 0 0 0 180px rgba(255, 255, 255, 0.018);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.97fr);
  align-items: center;
  gap: clamp(52px, 7vw, 96px);
}

.eyebrow,
.kicker {
  margin: 0 0 18px;
  color: var(--green-700);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--gold);
}

.hero h1,
.section-heading h2,
.join-copy h2,
.contact-heading h2,
.portal-dialog h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.2rem, 6.4vw, 6.4rem);
}

.hero h1 em {
  color: var(--lime);
  font-style: normal;
}

.hero-lede {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--navy-950);
  background: var(--gold);
  box-shadow: 0 14px 32px rgba(242, 201, 76, 0.16);
}

.button-primary:hover {
  background: #ffda63;
  box-shadow: 0 18px 40px rgba(242, 201, 76, 0.24);
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.34);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 36px 0 0;
  list-style: none;
}

.hero-pillars li {
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 506px;
}

.photo-frame {
  position: absolute;
  inset: 0 0 30px 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px 34px 120px 34px;
  box-shadow: var(--shadow);
}

.photo-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 20, 38, 0.9));
  content: "";
}

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

.photo-caption {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 28px;
  left: 34px;
  display: grid;
}

.photo-caption span {
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.photo-caption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 500;
}

.hero-seal {
  position: absolute;
  top: -35px;
  left: -25px;
  z-index: 4;
  width: 126px;
  height: 126px;
  padding: 7px;
  background: #fff;
  border: 7px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.hero-seal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.province-note {
  position: absolute;
  z-index: 3;
  padding: 9px 14px;
  color: var(--navy-950);
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.province-note-one {
  right: -36px;
  top: 74px;
}

.province-note-two {
  right: 10px;
  bottom: 7px;
  color: #fff;
  background: var(--green-600);
}

.hero-scroll {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-scroll i {
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, var(--lime), transparent);
}

.section {
  padding: 108px 0;
}

.section-intro {
  background: #fff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading h2,
.join-copy h2,
.contact-heading h2 {
  font-size: clamp(2.45rem, 4.7vw, 4.5rem);
}

.section-heading > p:last-child,
.split-heading > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
  align-items: end;
  gap: 64px;
  max-width: none;
}

.split-heading > p {
  margin: 0 0 6px;
}

.purpose-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.purpose-card {
  position: relative;
  min-height: 350px;
  padding: 42px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.purpose-card h3 {
  max-width: 530px;
  margin: 50px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.purpose-card p:last-child {
  max-width: 640px;
  margin-bottom: 0;
  font-size: 1.04rem;
}

.purpose-card-mission {
  color: #fff;
  background:
    radial-gradient(circle at 95% 5%, rgba(168, 205, 58, 0.22), transparent 30%),
    var(--green-700);
}

.purpose-card-mission .kicker {
  color: #d7f089;
}

.purpose-card-mission p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.purpose-card-vision {
  background: var(--cloud);
  border: 1px solid var(--line);
}

.purpose-card-vision p:last-child {
  color: var(--muted);
}

.card-index {
  position: absolute;
  top: 34px;
  right: 38px;
  color: currentColor;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  opacity: 0.6;
}

.values-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.values-row span {
  padding: 9px 15px;
  color: var(--navy-800);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.section-services {
  background: var(--cloud);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #cbd9d2;
  border-bottom: 1px solid #cbd9d2;
}

.service-card {
  position: relative;
  min-height: 340px;
  padding: 34px 28px;
  border-right: 1px solid #cbd9d2;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.service-card:first-child {
  border-left: 1px solid #cbd9d2;
}

.service-card:hover {
  z-index: 2;
  color: #fff;
  background: var(--navy-900);
  transform: translateY(-8px);
}

.service-number {
  margin-bottom: 92px;
  color: var(--green-700);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.service-card:hover .service-number {
  color: var(--lime);
}

.service-card h3 {
  margin: 0 0 16px;
  font-size: 1.32rem;
  line-height: 1.25;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}

.service-line {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--lime), transparent);
  transform: scaleX(0.24);
  transform-origin: left;
  transition: transform 220ms ease;
}

.service-card:hover .service-line {
  transform: scaleX(1);
}

.impact-statement {
  color: #fff;
  background:
    radial-gradient(circle at 15% 50%, rgba(33, 180, 109, 0.18), transparent 25%),
    var(--navy-950);
}

.impact-grid {
  display: grid;
  grid-template-columns: 0.35fr 1.45fr 0.6fr;
  align-items: start;
  gap: 52px;
  padding-top: 76px;
  padding-bottom: 76px;
}

.impact-grid .kicker {
  color: var(--lime);
}

.impact-grid blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  letter-spacing: -0.035em;
  line-height: 1.14;
}

.impact-grid > p:last-child {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.section-organization {
  background: #fff;
}

.organization-panel {
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(33, 180, 109, 0.22), transparent 28%),
    var(--navy-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.organization-tabs {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: rgba(0, 0, 0, 0.14);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.organization-tabs button {
  position: relative;
  width: 100%;
  padding: 22px 18px;
  color: rgba(255, 255, 255, 0.58);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1rem;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.organization-tabs button[aria-selected="true"] {
  color: var(--navy-950);
  background: var(--gold);
  border-radius: 12px;
}

.organization-content {
  display: grid;
  align-items: center;
  padding: 56px clamp(36px, 7vw, 84px);
}

.organization-content [role="tabpanel"] {
  max-width: 720px;
}

.level-mark {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.organization-content h3 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.organization-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.04rem;
}

.org-feature-list,
.region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.org-feature-list span,
.region-list li {
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
}

.section-activity {
  background: var(--cloud);
}

.territory-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(220px, 270px));
  gap: 18px;
}

.territory-card {
  position: relative;
  min-height: 220px;
  padding: 34px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
}

.territory-card-featured {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 500px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(168, 205, 58, 0.25), transparent 24%),
    radial-gradient(circle at 18% 70%, rgba(22, 91, 166, 0.35), transparent 32%),
    var(--navy-900);
  border-color: transparent;
}

.territory-card::before {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(17, 116, 71, 0.18);
  border-radius: 50%;
  content: "";
}

.territory-card-featured::before {
  width: 330px;
  height: 330px;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.025), 0 0 0 120px rgba(255, 255, 255, 0.018);
}

.territory-index {
  position: absolute;
  top: 28px;
  left: 30px;
  color: var(--green-700);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.territory-card-featured .territory-index,
.territory-card-featured .kicker {
  color: var(--lime);
}

.territory-card h3 {
  position: relative;
  max-width: 520px;
  margin: 0 0 15px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.territory-card:not(.territory-card-featured) h3 {
  margin-top: 55px;
  font-size: 2rem;
}

.territory-card p:last-of-type {
  position: relative;
  max-width: 580px;
  margin: 0;
  color: var(--muted);
}

.territory-card-featured p:last-of-type {
  color: rgba(255, 255, 255, 0.7);
}

.network-path {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 520px);
  margin-top: 42px;
}

.network-path::before {
  position: absolute;
  right: 34px;
  bottom: 48px;
  left: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--green-500), var(--gold), var(--lime));
  content: "";
  opacity: 0.55;
}

.network-path i {
  position: relative;
  z-index: 2;
  width: 13px;
  height: 13px;
  background: var(--gold);
  border: 3px solid var(--navy-900);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.calendar-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 32px 36px;
  margin-top: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.calendar-callout .kicker {
  margin-bottom: 8px;
}

.calendar-callout h3 {
  margin: 0;
  font-size: 1.35rem;
}

.calendar-callout p:last-child {
  margin: 5px 0 0;
  color: var(--muted);
}

.button-dark {
  flex: 0 0 auto;
  color: #fff;
  background: var(--navy-900);
}

.section-join {
  color: #fff;
  background:
    radial-gradient(circle at 10% 100%, rgba(168, 205, 58, 0.2), transparent 30%),
    linear-gradient(135deg, #0a603e, #0f7a4b 55%, #0b4e3b);
}

.join-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1.15fr);
  align-items: start;
  gap: clamp(56px, 8vw, 110px);
}

.kicker-light {
  color: #d9f38d;
}

.join-copy h2 {
  color: #fff;
}

.join-copy > p:not(.kicker) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
}

.benefit-list {
  padding: 0;
  margin: 42px 0 0;
  list-style: none;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 750;
}

.benefit-list span {
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 900;
}

.join-form {
  padding: 38px;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 80px rgba(4, 35, 23, 0.25);
}

.form-heading {
  margin-bottom: 28px;
}

.form-heading > span {
  color: var(--green-700);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 5px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 500;
}

.form-heading p,
.form-note {
  color: var(--muted);
}

.form-heading p {
  margin: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-grid label {
  display: grid;
  gap: 7px;
}

.form-grid label > span {
  font-size: 0.78rem;
  font-weight: 850;
}

.form-grid input:not([type="checkbox"]) {
  width: 100%;
  min-height: 48px;
  padding: 10px 13px;
  color: var(--ink);
  background: #f8faf9;
  border: 1px solid #ccd9d3;
  border-radius: 10px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-grid input:not([type="checkbox"]):focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(21, 150, 90, 0.12);
  outline: none;
}

.form-wide {
  grid-column: 1 / -1;
}

.consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  color: var(--muted);
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--green-700);
}

.consent > span {
  font-weight: 500 !important;
}

.button-form {
  width: 100%;
  margin-top: 24px;
  color: #fff;
  background: var(--navy-900);
}

.form-note,
.form-status {
  margin: 12px 0 0;
  font-size: 0.78rem;
  text-align: center;
}

.form-status {
  min-height: 1.3em;
  color: var(--green-700);
  font-weight: 800;
}

.section-contact {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: clamp(50px, 9vw, 120px);
}

.contact-heading p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-links {
  border-top: 1px solid var(--line);
}

.contact-links a {
  display: grid;
  grid-template-columns: 0.65fr 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 24px 6px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding 180ms ease, color 180ms ease;
}

.contact-links a:hover {
  padding-left: 14px;
  color: var(--green-700);
}

.contact-links span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.contact-links strong {
  overflow-wrap: anywhere;
}

.contact-links b {
  font-size: 1.2rem;
}

.site-footer {
  color: #fff;
  background: var(--navy-950);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 54px;
  padding-bottom: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  max-width: 560px;
  gap: 18px;
}

.footer-brand img {
  width: 70px;
  height: 62px;
  padding: 4px;
  background: #fff;
  border-radius: 50%;
  object-fit: contain;
}

.footer-brand strong {
  letter-spacing: 0.12em;
}

.footer-brand p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
}

.footer-domain {
  display: grid;
  text-align: right;
}

.footer-domain span {
  color: var(--lime);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-domain strong {
  font-size: 1.08rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-top: 20px;
  padding-bottom: 20px;
  color: rgba(255, 255, 255, 0.52);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #fff;
  background: #18a85c;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  font-size: 0.75rem;
  font-weight: 950;
  text-decoration: none;
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.portal-dialog {
  width: min(520px, calc(100% - 32px));
  padding: 42px;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-radius: 26px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.portal-dialog::backdrop {
  background: rgba(2, 14, 27, 0.72);
  backdrop-filter: blur(4px);
}

.portal-dialog h2 {
  margin-bottom: 14px;
  font-size: 2.7rem;
}

.portal-dialog > p:not(.kicker) {
  color: var(--muted);
}

.dialog-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--cloud);
  border: 0;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
}

.dialog-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  color: #fff;
  background: var(--green-700);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1080px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 83px;
    right: 0;
    bottom: 0;
    width: min(390px, 90vw);
    padding: 32px;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    background: var(--navy-950);
    box-shadow: -24px 30px 50px rgba(0, 0, 0, 0.3);
    transform: translateX(105%);
    transition: transform 230ms ease;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-portal {
    margin-top: 16px;
  }

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

  .service-card:nth-child(3) {
    border-left: 1px solid #cbd9d2;
  }

  .impact-grid {
    grid-template-columns: 0.35fr 1.3fr;
  }

  .impact-grid > p:last-child {
    grid-column: 2;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 30px, 720px);
  }

  .hero {
    padding-top: 144px;
  }

  .hero-grid,
  .split-heading,
  .join-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 72px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 11vw, 5.5rem);
  }

  .hero-visual {
    min-height: 520px;
  }

  .section {
    padding: 84px 0;
  }

  .split-heading {
    align-items: start;
    gap: 24px;
  }

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

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

  .impact-grid > p:last-child {
    grid-column: auto;
  }

  .organization-panel {
    grid-template-columns: 1fr;
  }

  .organization-tabs {
    flex-direction: row;
    padding: 16px;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .organization-tabs button {
    min-width: 150px;
    border-bottom: 0;
  }

  .join-grid {
    gap: 52px;
  }
}

@media (max-width: 640px) {
  .brand-copy small {
    display: none;
  }

  .brand img {
    width: 52px;
    height: 46px;
  }

  .hero {
    min-height: auto;
    padding: 132px 0 58px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.6rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 410px;
  }

  .photo-frame {
    inset: 0 0 20px 10px;
    border-radius: 24px 24px 80px 24px;
  }

  .hero-seal {
    top: -38px;
    left: -5px;
    width: 98px;
    height: 98px;
  }

  .province-note-one {
    right: -6px;
    top: 56px;
  }

  .hero-scroll {
    display: none;
  }

  .section-heading h2,
  .join-copy h2,
  .contact-heading h2 {
    font-size: clamp(2.35rem, 12vw, 3.45rem);
  }

  .purpose-card {
    min-height: 330px;
    padding: 32px 26px;
  }

  .purpose-card h3 {
    margin-top: 42px;
  }

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

  .service-card,
  .service-card:first-child,
  .service-card:nth-child(3) {
    min-height: 280px;
    border-right: 1px solid #cbd9d2;
    border-left: 1px solid #cbd9d2;
    border-bottom: 1px solid #cbd9d2;
  }

  .service-number {
    margin-bottom: 62px;
  }

  .organization-content {
    padding: 42px 25px;
  }

  .territory-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .territory-card,
  .territory-card-featured {
    grid-row: auto;
    min-height: 320px;
  }

  .calendar-callout {
    align-items: stretch;
    flex-direction: column;
    padding: 26px;
  }

  .join-form {
    padding: 30px 22px;
  }

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

  .form-wide {
    grid-column: auto;
  }

  .contact-links a {
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
  }

  .contact-links span {
    grid-column: 1 / -1;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-domain {
    text-align: left;
  }

  .portal-dialog {
    padding: 34px 24px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
