/* ETLEB theme styles. No remote fonts or stock-image dependencies. */

:root {
  --font-geist-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-geist-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --navy: #0b2347;
  --navy-deep: #061832;
  --navy-soft: #173862;
  --orange: #ff8200;
  --orange-dark: #d96f00;
  --white: #ffffff;
  --paper: #f6f5f1;
  --paper-warm: #eeece6;
  --ink: #14243a;
  --muted: #627087;
  --line: #dce2e8;
  --success: #197a57;
  --shadow: 0 24px 60px rgba(8, 31, 65, 0.12);
}

body.admin-bar .main-header {
  top: 32px;
}

.etleb-page-main {
  min-height: 58vh;
  padding: 88px 0 110px;
  background: var(--paper);
}

.etleb-page-card {
  padding: clamp(28px, 5vw, 72px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.etleb-page-card h1 {
  max-width: 820px;
  margin: 0 0 32px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.etleb-page-content {
  max-width: 860px;
  color: #334760;
  font-size: 17px;
  line-height: 1.75;
}

.etleb-page-content h2,
.etleb-page-content h3 {
  margin-top: 2em;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.etleb-page-content a {
  color: var(--orange-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.etleb-page-content img {
  height: auto;
  border-radius: 10px;
}

.etleb-not-found {
  text-align: center;
}

@media (max-width: 782px) {
  body.admin-bar .main-header {
    top: 46px;
  }
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  transform: translateY(-150%);
}

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

.site-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.utility-bar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.83);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.utility-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-inner p,
.utility-actions {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.utility-actions a:hover,
.utility-actions a:focus-visible {
  color: var(--white);
}

.status-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 130, 0, 0.14);
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(11, 35, 71, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--navy);
}

.brand img {
  width: 60px;
  height: 30px;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand small {
  margin-top: 4px;
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #263d5c;
  font-size: 14px;
  font-weight: 650;
}

.nav-links > a:not(.nav-login):not(.nav-donate) {
  position: relative;
  padding: 29px 0;
}

.nav-links > a:not(.nav-login):not(.nav-donate)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links > a:hover::after,
.nav-links > a:focus-visible::after {
  transform: scaleX(1);
}

.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 6px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(11, 35, 71, 0.16);
}

.nav-login:hover,
.nav-login:focus-visible {
  background: var(--navy-soft);
}

.nav-login span {
  color: var(--orange);
}

.nav-donate {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border-radius: 6px;
  background: var(--orange);
  color: var(--navy-deep);
  box-shadow: 0 8px 22px rgba(217, 111, 0, .18);
}

.nav-donate:hover,
.nav-donate:focus-visible {
  background: #ff951f;
}

.nav-donate span {
  font-size: 12px;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 12%, rgba(255, 130, 0, 0.11), transparent 26%),
    linear-gradient(116deg, #ffffff 0%, #ffffff 57%, #f0f3f6 57%, #f0f3f6 100%);
}

.hero::before {
  content: "";
  position: absolute;
  left: calc(50% + 60px);
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(11, 35, 71, 0.08);
}

.hero-grid {
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
  padding-top: 72px;
  padding-bottom: 80px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 30px;
  height: 2px;
  background: currentColor;
}

.eyebrow.light {
  color: #ffae5c;
}

.hero h1,
.section-intro h2,
.professional-copy h2,
.contact-card h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(54px, 6.1vw, 84px);
}

.hero h1 em {
  color: var(--orange);
  font-weight: 400;
}

.hero-lede {
  max-width: 610px;
  margin: 28px 0 0;
  color: #51627a;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions,
.professional-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 22px;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 780;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  background: var(--orange);
  color: var(--navy-deep);
  box-shadow: 0 14px 30px rgba(217, 111, 0, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ff951f;
}

.button-text {
  padding-right: 2px;
  background: transparent;
  color: var(--navy);
}

.button-text span,
.button-primary span {
  font-size: 18px;
}

.hero-assurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-assurance div {
  display: grid;
  gap: 5px;
}

.hero-assurance strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.hero-assurance span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.hero-art {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mark-card {
  position: relative;
  z-index: 3;
  isolation: isolate;
  width: min(470px, 90%);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px 62px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.hero-mark-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -20px 8px;
  border: 3px solid var(--orange);
  border-radius: 50%;
  transform: rotate(-4deg);
}

.hero-mark-card::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 52px;
  width: 10px;
  height: 10px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(255, 130, 0, 0.18);
}

.hero-mark-card img {
  width: 285px;
  margin: 30px 0 24px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.18));
}

.card-kicker {
  color: #f8c48f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-mark-card p {
  max-width: 300px;
  margin: 0;
  color: #d8e1ed;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.55;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(11, 35, 71, 0.11);
  border-radius: 50%;
}

.orbit-one {
  width: 560px;
  height: 350px;
  transform: rotate(7deg);
}

.orbit-two {
  width: 650px;
  height: 430px;
  transform: rotate(-5deg);
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(11, 35, 71, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(8, 31, 65, 0.09);
  font-size: 11px;
  font-weight: 700;
}

.floating-note span {
  color: var(--orange-dark);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.note-one {
  top: 92px;
  left: -8px;
}

.note-two {
  right: -18px;
  bottom: 82px;
}

.credentials-section {
  position: relative;
  z-index: 5;
  overflow: hidden;
  padding: 52px 0;
  background: var(--navy-deep);
  color: var(--white);
}

.credentials-section::after {
  content: "";
  position: absolute;
  top: -160px;
  right: -100px;
  width: 420px;
  height: 300px;
  border: 1px solid rgba(255, 130, 0, 0.22);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.credentials-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(230px, 0.78fr) minmax(0, 1.7fr);
  align-items: center;
  gap: 54px;
}

.credentials-intro h2 {
  margin: 12px 0 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.credentials-intro > p:not(.eyebrow) {
  margin: 0;
  color: #b7c4d4;
  font-size: 13px;
  line-height: 1.65;
}

.credentials-intro > a {
  display: inline-flex;
  gap: 9px;
  margin-top: 18px;
  color: #f7b66f;
  font-size: 11px;
  font-weight: 800;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.credential-card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.055);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.credential-card:hover,
.credential-card:focus-visible {
  border-color: rgba(255, 130, 0, 0.7);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-3px);
}

.credential-mark {
  width: 54px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 130, 0, 0.68);
  border-radius: 50%;
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.credential-card small,
.credential-card strong,
.credential-card b {
  display: block;
}

.credentials-page-grid {
  margin-top: 42px;
}

.credentials-page-grid .credential-card {
  background: var(--navy-deep);
  color: var(--white);
}

.credential-card small {
  margin-top: 22px;
  color: #8fa3bb;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.credential-card strong {
  min-height: 39px;
  margin-top: 5px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
}

.credential-card b {
  margin-top: 14px;
  color: #f7b66f;
  font-size: 8px;
}

.credential-page-main,
.credential-archive-main {
  padding: 78px 0 96px;
  background: linear-gradient(180deg, #f4f7fa 0, #fff 420px);
}

.credential-page-header,
.credential-archive-header {
  max-width: 780px;
}

.credential-page-header h1,
.credential-archive-header h1 {
  margin: 15px 0 20px;
  color: var(--navy) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6vw, 74px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
}

.credential-page-header > p:last-child,
.credential-archive-header > p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.current-credential-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 58px;
  align-items: center;
  margin-top: 54px;
  overflow: hidden;
  padding: clamp(34px, 5vw, 62px);
  border-radius: 14px;
  background: var(--navy-deep);
  color: var(--white);
  box-shadow: 0 28px 70px rgba(8, 31, 65, 0.15);
}

.current-credential-feature::after {
  content: "";
  position: absolute;
  right: -105px;
  bottom: -130px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255, 130, 0, 0.22);
  border-radius: 50%;
}

.current-credential-copy,
.current-credential-seal {
  position: relative;
  z-index: 1;
}

.current-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #d8e3ed;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.current-label span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 130, 0, .16);
}

.credential-authority {
  margin: 29px 0 8px;
  color: #f7b66f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}

.current-credential-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.credential-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0;
}

.credential-meta div {
  padding-left: 15px;
  border-left: 2px solid rgba(255, 130, 0, .7);
}

.credential-meta dt {
  color: #8fa3bb;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.credential-meta dd {
  margin: 7px 0 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 750;
}

.current-credential-seal {
  width: 220px;
  height: 220px;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(255, 130, 0, .7);
  border-radius: 50%;
  box-shadow: inset 0 0 0 13px var(--navy-deep), inset 0 0 0 14px rgba(255, 255, 255, .14);
  text-align: center;
}

.current-credential-seal span {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  letter-spacing: .08em;
}

.current-credential-seal small {
  margin-top: 9px;
  color: #c7d3df;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.current-credential-grid {
  margin-top: 76px;
}

.credential-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 36px;
}

.credential-section-heading h2,
.credential-archive-callout h2,
.archive-section-heading h2 {
  margin: 12px 0 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.03em;
}

.credential-section-heading > p {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

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

.credential-archive-callout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 34px;
  margin-top: 72px;
  padding: 36px 40px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
}

.credential-archive-callout h2 {
  color: var(--white);
}

.credential-archive-callout p:last-child {
  margin: 12px 0 0;
  color: #b8c5d5;
  font-size: 13px;
}

.credential-archive-callout .button {
  flex: 0 0 auto;
}

.archive-back-link {
  display: inline-flex;
  gap: 9px;
  margin-bottom: 34px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 800;
}

.archive-groups {
  display: grid;
  gap: 26px;
  margin-top: 54px;
}

.archive-section {
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid #dbe2ea;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(8, 31, 65, .055);
}

.archive-section-heading {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 21px;
  align-items: start;
}

.archive-authority {
  width: 68px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 130, 0, .52);
  border-radius: 50%;
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}

.archive-section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 2.6vw, 36px);
}

.archive-section-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.archive-document-list {
  display: grid;
  gap: 9px;
  margin-top: 28px;
}

.archive-document {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 92px;
  padding: 16px 18px;
  border: 1px solid #e1e7ed;
  border-radius: 8px;
  background: #f9fafc;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.archive-document:hover,
.archive-document:focus-visible {
  border-color: rgba(255, 130, 0, .7);
  background: #fffaf5;
  transform: translateX(3px);
}

.archive-document-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: var(--navy);
  color: var(--white);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .08em;
}

.archive-document-copy {
  display: grid;
}

.archive-document-copy strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}

.archive-document-copy small,
.archive-document-copy em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
}

.archive-document-copy em {
  color: #728299;
  font-weight: 750;
}

.archive-document-action {
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 850;
}

.archive-verification-note {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 15px;
  align-items: start;
  margin-top: 28px;
  padding: 20px 23px;
  border-radius: 8px;
  background: #edf2f6;
}

.archive-verification-note > div {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.archive-verification-note p {
  margin: 0;
  color: #52627a;
  font-size: 12px;
  line-height: 1.65;
}

.archive-verification-note strong,
.archive-verification-note a {
  color: var(--navy);
}

@media (max-width: 820px) {
  .current-credential-feature {
    grid-template-columns: 1fr;
  }

  .current-credential-seal {
    display: none;
  }

  .credential-section-heading,
  .credential-archive-callout {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .credential-page-main,
  .credential-archive-main {
    padding: 54px 0 72px;
  }

  .credential-meta,
  .current-credential-grid .credentials-page-grid {
    grid-template-columns: 1fr;
  }

  .credential-archive-callout {
    padding: 28px 25px;
  }

  .archive-section-heading {
    grid-template-columns: 1fr;
  }

  .archive-document {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 13px;
    padding: 14px;
  }

  .archive-document-icon {
    width: 40px;
    height: 40px;
  }

  .archive-document-action {
    grid-column: 2;
  }
}

.pathways-section {
  position: relative;
  padding: 105px 0 110px;
  background: var(--navy);
  color: var(--white);
}

.pathways-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 9%;
  width: 26%;
  height: 4px;
  background: var(--orange);
}

.section-intro h2,
.professional-copy h2,
.contact-card h2 {
  font-size: clamp(40px, 4.6vw, 60px);
  line-height: 1.04;
}

.section-intro > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.section-intro.centered {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.section-intro.centered .eyebrow {
  justify-content: center;
}

.pathways-section .section-intro h2,
.pathways-section .section-intro > p:not(.eyebrow),
.professional-copy h2,
.contact-card h2 {
  color: var(--white);
}

.pathways-section .section-intro > p:not(.eyebrow) {
  color: #b8c5d5;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 58px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.pathway-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  background: var(--navy-deep);
  transition: background 180ms ease, transform 180ms ease;
}

.pathway-card.featured,
.pathway-card:hover,
.pathway-card:focus-visible {
  background: var(--orange);
  color: var(--navy-deep);
}

.pathway-number {
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.featured .pathway-number,
.pathway-card:hover .pathway-number,
.pathway-card:focus-visible .pathway-number {
  color: rgba(6, 24, 50, 0.6);
}

.pathway-symbol {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 38px 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--orange);
  font-size: 25px;
}

.featured .pathway-symbol,
.pathway-card:hover .pathway-symbol,
.pathway-card:focus-visible .pathway-symbol {
  border-color: rgba(6, 24, 50, 0.22);
  color: var(--navy);
}

.pathway-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
}

.pathway-card p {
  margin: 14px 0 28px;
  color: #b8c5d5;
  font-size: 14px;
  line-height: 1.65;
}

.featured p,
.pathway-card:hover p,
.pathway-card:focus-visible p {
  color: rgba(6, 24, 50, 0.76);
}

.pathway-card b {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
}

.featured b,
.pathway-card:hover b,
.pathway-card:focus-visible b {
  border-color: rgba(6, 24, 50, 0.18);
}

.donation-section,
.about-section,
.team-section,
.faq-section {
  padding: 120px 0;
}

.donation-section,
.team-section {
  background: var(--paper);
}

.donation-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.large-copy {
  font-size: 18px !important;
  line-height: 1.75 !important;
}

.donation-section .button {
  margin-top: 34px;
}

.donation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.donation-section .donation-actions .button {
  margin-top: 0;
}

.process-panel {
  position: relative;
  padding: 44px 46px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.process-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 46px;
  width: 74px;
  height: 4px;
  background: var(--orange);
}

.panel-label {
  margin: 0 0 30px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding-bottom: 28px;
}

.process-list li::before {
  content: "";
  position: absolute;
  top: 39px;
  bottom: 4px;
  left: 19px;
  width: 1px;
  background: var(--line);
}

.process-list li:last-child {
  padding-bottom: 0;
}

.process-list li:last-child::before {
  display: none;
}

.process-list li > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff1e2;
  color: var(--orange-dark);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 800;
}

.process-list strong {
  display: block;
  margin-top: 2px;
  color: var(--navy);
  font-size: 15px;
}

.process-list p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.process-footnote {
  margin: 32px 0 0;
  padding: 18px;
  border-left: 3px solid var(--orange);
  background: var(--paper);
  color: #42536c;
  font-size: 12px;
  line-height: 1.55;
}

.financial-donation-page {
  background: var(--paper);
}

.financial-donation-hero {
  position: relative;
  overflow: hidden;
  padding: 98px 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 130, 0, .18), transparent 28%),
    var(--navy-deep);
  color: var(--white);
}

.financial-donation-hero::after {
  content: "GIVE";
  position: absolute;
  right: -20px;
  bottom: -60px;
  color: rgba(255, 255, 255, .028);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 220px;
  font-weight: 700;
  letter-spacing: -.07em;
}

.financial-donation-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .6fr);
  align-items: end;
  gap: 80px;
}

.financial-donation-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .96;
}

.financial-donation-hero-grid > div > p:last-child {
  max-width: 680px;
  margin: 26px 0 0;
  color: #c7d2df;
  font-size: 18px;
  line-height: 1.7;
}

.financial-donation-assurance {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
  background: rgba(255, 255, 255, .07);
}

.financial-donation-assurance > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--navy-deep);
  font-size: 18px;
}

.financial-donation-assurance p,
.financial-donation-assurance strong,
.financial-donation-assurance small {
  display: block;
  margin: 0;
}

.financial-donation-assurance strong {
  font-size: 13px;
}

.financial-donation-assurance small {
  margin-top: 5px;
  color: #b9c7d6;
  font-size: 11px;
  line-height: 1.55;
}

.financial-donation-options,
.watkins-section {
  padding: 110px 0;
}

.financial-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .52fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 48px;
}

.financial-section-heading h2,
.watkins-intro h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1;
}

.financial-section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

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

.giving-method-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: center;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(8, 31, 65, .07);
}

.giving-provider {
  margin: 0 0 10px;
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.giving-method-copy h3 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.giving-method-copy > p:not(.giving-provider) {
  min-height: 64px;
  margin: 12px 0 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.giving-method-copy .button {
  width: 100%;
  gap: 12px;
}

.giving-qr {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid #e3e7ec;
  border-radius: 10px;
  background: #fff;
}

.giving-qr img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.giving-qr small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .04em;
}

.giving-security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.giving-security-note span {
  width: 20px;
  height: 20px;
  display: grid;
  flex: 0 0 20px;
  place-items: center;
  border-radius: 50%;
  background: #e7ebef;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.watkins-section {
  background: var(--white);
}

.watkins-grid {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 80px;
}

.watkins-intro > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.watkins-intro > .button {
  margin-top: 28px;
}

.check-giving {
  margin-top: 34px;
  padding: 22px;
  border-left: 3px solid var(--orange);
  background: var(--paper);
}

.check-giving strong {
  color: var(--navy);
  font-size: 12px;
}

.check-giving p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.watkins-form {
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}

.watkins-form > h3 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
}

.watkins-form > p {
  margin: 8px 0 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.watkins-form .wpforms-container {
  margin: 0;
}

.watkins-form .wpforms-field-label {
  color: var(--navy) !important;
  font-size: 12px !important;
  font-weight: 750 !important;
}

.watkins-form input,
.watkins-form select,
.watkins-form textarea {
  border-color: #cfd7e0 !important;
  border-radius: 6px !important;
  background: var(--white) !important;
}

.watkins-form button[type="submit"] {
  min-height: 48px !important;
  padding: 0 24px !important;
  border-radius: 5px !important;
  background: var(--orange) !important;
  color: var(--navy-deep) !important;
  font-weight: 800 !important;
}

@media (max-width: 1040px) {
  .giving-method-card {
    grid-template-columns: 1fr;
  }

  .giving-method-copy > p:not(.giving-provider) {
    min-height: 0;
  }
}

@media (max-width: 860px) {
  .financial-donation-hero-grid,
  .financial-section-heading,
  .watkins-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .giving-method-grid {
    grid-template-columns: 1fr;
  }

  .financial-donation-options,
  .watkins-section {
    padding: 82px 0;
  }
}

@media (max-width: 560px) {
  .financial-donation-hero {
    padding: 72px 0;
  }

  .giving-method-card {
    padding: 24px;
  }

  .giving-qr img {
    width: 190px;
    height: 190px;
  }

  .giving-security-note {
    align-items: flex-start;
    justify-content: flex-start;
  }
}

.professionals-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: var(--navy-deep);
  color: var(--white);
}

.professionals-section::after {
  content: "ETLEB";
  position: absolute;
  right: -30px;
  bottom: -60px;
  color: rgba(255, 255, 255, 0.025);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 240px;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.professional-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 100px;
}

.professional-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 24px 0 0;
  color: #bac7d7;
  font-size: 17px;
  line-height: 1.7;
}

.button-white {
  background: var(--white);
  color: var(--navy);
}

.phone-link {
  display: grid;
  gap: 4px;
  padding: 5px 0;
}

.phone-link small {
  color: #97a8bd;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-link strong {
  color: var(--white);
  font-size: 14px;
}

.service-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.service-list > div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 20px;
  padding: 29px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.service-list > div > span {
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.service-list strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 400;
}

.service-list p {
  margin: 8px 0 0;
  color: #9bacc0;
  font-size: 13px;
  line-height: 1.6;
}

.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: center;
  gap: 100px;
}

.history-year {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 8vw, 104px);
  letter-spacing: -0.07em;
}

.history-year::before,
.history-year::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(11, 35, 71, 0.08);
}

.history-year::before {
  inset: -22px;
}

.history-year::after {
  width: 11px;
  height: 11px;
  top: 10%;
  right: 8%;
  border: 0;
  background: var(--orange);
}

.history-year span {
  position: absolute;
  top: 26%;
  color: var(--orange-dark);
  font-family: var(--font-geist-sans), sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-copy > p:not(.eyebrow) {
  max-width: 720px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(11, 35, 71, 0.26);
  color: var(--navy);
  font-size: 13px;
  font-weight: 750;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: var(--orange);
}

.section-heading-row {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 70px;
}

.section-heading-row > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 18px;
  margin-top: 54px;
}

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

.staff-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 7px;
  background: #e1e4e6;
}

.staff-photo::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.staff-card:hover .staff-photo::after {
  transform: scaleX(1);
}

.staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.88);
  transition: transform 300ms ease, filter 300ms ease;
}

.staff-photo-placeholder {
  align-items: center;
  background: linear-gradient(145deg, #102d54, #071a35);
  color: #fff;
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  position: absolute;
  text-align: center;
}

.staff-photo-placeholder b {
  color: #ff8200;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 500;
  letter-spacing: .06em;
}

.staff-photo-placeholder small {
  font-size: .72rem;
  letter-spacing: .12em;
  margin-top: .7rem;
  text-transform: uppercase;
}

.staff-card:hover img {
  transform: scale(1.025);
  filter: saturate(1);
}

.staff-card h3 {
  margin: 18px 0 5px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}

.staff-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.js .staff-hidden {
  display: none;
}

.js .team-grid.expanded .staff-hidden {
  display: block;
}

.team-toggle:not([hidden]) {
  display: block;
  margin: 42px auto 0;
}

.button-outline {
  border: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
}

.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 2px;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}

.faq-item button b {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--orange-dark);
  font-family: var(--font-geist-sans), sans-serif;
  font-size: 19px;
  font-weight: 450;
}

.faq-answer {
  padding: 0 62px 26px 2px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.contact-section {
  padding: 0 0 80px;
  background: var(--white);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 72px 76px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
}

.contact-card > div:first-child > p:not(.eyebrow) {
  max-width: 470px;
  margin: 20px 0 0;
  color: #b7c5d6;
  line-height: 1.65;
}

.contact-details {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-details a {
  display: grid;
  grid-template-columns: 72px 1fr 24px;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-details small {
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-details strong {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.contact-details span {
  color: var(--orange);
  font-size: 18px;
}

.site-footer {
  background: var(--navy-deep);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.7fr);
  gap: 60px;
  padding: 76px 0 60px;
}

.footer-brand img {
  width: 104px;
  margin-bottom: 24px;
}

.footer-brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.08;
}

.footer-brand p {
  max-width: 330px;
  margin: 18px 0 0;
  color: #8fa1b8;
  font-size: 12px;
  line-height: 1.65;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-column h3 {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: #a9b7c8;
  font-size: 12px;
  line-height: 1.7;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--white);
}

.footer-availability {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px !important;
}

.footer-bottom {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #71849c;
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

/* Staff portal */

.staff-login-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  background: var(--white);
}

.staff-login-back {
  position: fixed;
  top: 24px;
  left: 28px;
  z-index: 20;
  color: #c7d2df;
  font-size: 10px;
  font-weight: 700;
}

.staff-login-back:hover,
.staff-login-back:focus-visible {
  color: var(--white);
}

.login-brand-panel {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 90px 9vw 70px;
  background: var(--navy-deep);
  color: var(--white);
}

.login-brand-panel::before,
.login-brand-panel::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.login-brand-panel::before {
  width: 520px;
  height: 520px;
  right: -230px;
  top: -180px;
}

.login-brand-panel::after {
  width: 340px;
  height: 340px;
  right: -130px;
  top: -90px;
  border-color: rgba(255, 130, 0, 0.22);
}

.login-brand-inner {
  position: relative;
  z-index: 1;
  max-width: 610px;
}

.login-brand-inner > img {
  width: 140px;
  margin-bottom: 72px;
}

.login-brand-inner h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.login-brand-inner > p:not(.eyebrow) {
  max-width: 530px;
  margin: 24px 0 0;
  color: #aebed0;
  font-size: 15px;
  line-height: 1.72;
}

.login-feature-list {
  display: grid;
  gap: 0;
  margin-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.login-feature-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.login-feature-list > div > span {
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.login-feature-list p {
  margin: 0;
  color: #7f93aa;
  font-size: 10px;
  line-height: 1.5;
}

.login-feature-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-size: 11px;
}

.login-form-panel {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 50px 7vw;
  background:
    radial-gradient(circle at 90% 4%, rgba(255, 130, 0, 0.08), transparent 30%),
    var(--white);
}

.login-card {
  width: min(420px, 100%);
}

.login-mark {
  display: none;
}

.login-kicker {
  margin: 0 0 13px;
  color: var(--orange-dark);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.login-card h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 43px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.login-copy {
  margin: 12px 0 34px;
  color: var(--muted);
  font-size: 12px;
}

.login-card > label {
  display: grid;
  gap: 8px;
  margin-top: 17px;
  color: #40536b;
  font-size: 9px;
  font-weight: 800;
}

.login-card > label input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid #d5dde5;
  border-radius: 6px;
  outline: none;
  background: #fbfcfd;
  color: var(--navy);
  font-size: 11px;
}

.login-card > label input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 130, 0, 0.12);
}

.login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 16px 0 22px;
  color: var(--muted);
  font-size: 9px;
}

.login-options label {
  display: flex;
  align-items: center;
  gap: 7px;
}

.login-options input {
  accent-color: var(--orange);
}

.login-options button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
}

.login-submit,
.login-preview {
  width: 100%;
  min-height: 49px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border: 0;
  border-radius: 6px;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
}

.login-submit span {
  color: var(--orange);
  font-size: 18px;
}

.login-preview {
  min-height: 42px;
  justify-content: center;
  margin-top: 10px;
  border: 1px solid #d7dee5;
  background: #fff;
  color: var(--navy);
  box-shadow: none;
  font-size: 9px;
}

.login-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 22px 0 0;
  color: #8a97a7;
  font-size: 8px;
  line-height: 1.5;
  text-align: center;
}

.login-security span {
  color: var(--success);
  font-size: 12px;
}

.staff-portal {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 248px 1fr;
  background: #f2f4f7;
  color: var(--ink);
}

.portal-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 26px 18px 20px;
  background: var(--navy-deep);
  color: var(--white);
}

.portal-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 8px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.portal-brand img {
  width: 46px;
}

.portal-brand span {
  display: grid;
  gap: 2px;
  font-size: 11px;
}

.portal-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.portal-brand small {
  color: var(--orange);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sidebar-label {
  margin: 28px 12px 10px;
  color: #61758f;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portal-nav {
  display: grid;
  gap: 5px;
}

.portal-nav button {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 13px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #a9b9cb;
  cursor: pointer;
  text-align: left;
  font-size: 12px;
  font-weight: 650;
}

.portal-nav button:hover,
.portal-nav button.active {
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.portal-nav button.active {
  box-shadow: inset 3px 0 var(--orange);
}

.nav-glyph {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.portal-user {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: auto;
  padding: 18px 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.portal-avatar {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--navy-deep);
  font-size: 11px;
  font-weight: 850;
}

.portal-user div {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.portal-user strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portal-user small {
  color: #73869e;
  font-size: 9px;
}

.portal-main {
  min-width: 0;
}

.portal-topbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 36px;
  border-bottom: 1px solid #dfe4ea;
  background: rgba(255, 255, 255, 0.94);
}

.portal-topbar-title {
  display: grid;
  gap: 3px;
}

.portal-topbar-title strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}

.portal-topbar-title small {
  color: var(--muted);
  font-size: 9px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.period-chip,
.preview-chip {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid #d9e0e7;
  border-radius: 6px;
  background: #fff;
  color: #42536b;
  font-size: 10px;
  font-weight: 700;
}

.preview-chip {
  border-color: #f2d3b2;
  background: #fff8ef;
  color: #9a550d;
}

.portal-content {
  max-width: 1380px;
  margin: 0 auto;
  padding: 34px 36px 60px;
}

.portal-page-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 26px;
}

.portal-page-header h1 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.portal-page-header p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.portal-primary {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  background: var(--orange);
  color: var(--navy-deep);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(217, 111, 0, 0.16);
}

.portal-secondary {
  min-height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid #d9e0e7;
  border-radius: 6px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  font-size: 10px;
  font-weight: 750;
}

.portal-primary:hover,
.portal-secondary:hover {
  filter: brightness(0.98);
  transform: translateY(-1px);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat-card,
.portal-panel {
  border: 1px solid #e0e5ea;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 5px 16px rgba(9, 31, 61, 0.035);
}

.stat-card {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 19px;
}

.stat-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.stat-card-label {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #fff2e4;
  color: var(--orange-dark);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.stat-card strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 400;
}

.stat-card strong small {
  color: var(--muted);
  font-family: var(--font-geist-sans), sans-serif;
  font-size: 10px;
  font-weight: 600;
}

.portal-grid-main {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  gap: 16px;
  margin-top: 16px;
}

.portal-panel {
  min-width: 0;
  padding: 20px;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.panel-heading h2,
.panel-heading h3 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}

.panel-heading p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 9px;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.quick-action {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid #e1e6ec;
  border-radius: 7px;
  background: #fafbfc;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
}

.quick-action:hover {
  border-color: #f1b97d;
  background: #fffaf4;
}

.quick-action > span:first-child {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--navy);
  color: var(--orange);
  font-size: 12px;
}

.quick-action strong {
  display: block;
  margin-top: 15px;
  font-size: 11px;
}

.quick-action small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

.activity-list {
  display: grid;
  gap: 12px;
}

.activity-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 11px;
  padding-bottom: 12px;
  border-bottom: 1px solid #edf0f3;
}

.activity-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.activity-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef2f6;
  color: var(--navy);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.activity-row strong {
  display: block;
  color: var(--navy);
  font-size: 10px;
}

.activity-row small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
}

.activity-row time {
  color: var(--muted);
  font-size: 8px;
}

.portal-notice {
  position: relative;
  overflow: hidden;
  margin-top: 16px;
  padding: 18px 20px 18px 64px;
  border: 1px solid #f0d2b0;
  border-radius: 7px;
  background: #fff9f2;
  color: #69431c;
  font-size: 10px;
  line-height: 1.55;
}

.portal-notice::before {
  content: "!";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 46px;
  display: grid;
  place-items: center;
  background: #f8e3c9;
  color: var(--orange-dark);
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 700;
}

.entries-table-wrap {
  overflow-x: auto;
}

.entries-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 9px;
}

.entries-table th {
  padding: 11px 10px;
  border-bottom: 1px solid #dfe5ea;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}

.entries-table td {
  padding: 13px 10px;
  border-bottom: 1px solid #edf0f3;
  color: #334760;
  white-space: nowrap;
}

.entries-table tr:last-child td {
  border-bottom: 0;
}

.entry-type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 750;
}

.entry-type::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 20px;
  background: #edf7f2;
  color: var(--success);
  font-size: 8px;
  font-weight: 800;
}

.status-pill.pending {
  background: #fff3e7;
  color: #a55a0b;
}

.entry-actions {
  display: flex;
  justify-content: flex-end;
  gap: 7px;
  margin-top: 18px;
}

.form-card {
  max-width: 900px;
  margin: 0 auto;
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 24px;
}

.form-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.form-step::after {
  content: "";
  height: 1px;
  flex: 1;
  margin-right: 10px;
  background: #dce2e8;
}

.form-step:last-child::after {
  display: none;
}

.form-step span {
  width: 25px;
  height: 25px;
  display: grid;
  flex: 0 0 25px;
  place-items: center;
  border: 1px solid #d8dfe6;
  border-radius: 50%;
  background: #fff;
  font-size: 9px;
}

.form-step.active {
  color: var(--navy);
}

.form-step.active span {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--navy-deep);
}

.type-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.type-selector button {
  min-height: 70px;
  padding: 12px;
  border: 1px solid #dce2e8;
  border-radius: 7px;
  background: #fafbfc;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  font-size: 10px;
  font-weight: 750;
}

.type-selector button span {
  display: block;
  margin-bottom: 5px;
  color: var(--orange-dark);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.type-selector button.active {
  border-color: var(--orange);
  background: #fff8ef;
  color: var(--navy);
  box-shadow: inset 0 0 0 1px var(--orange);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.field > span {
  color: #40536b;
  font-size: 9px;
  font-weight: 800;
}

.field label em,
.field > span em {
  color: var(--orange-dark);
  font-style: normal;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 43px;
  padding: 0 12px;
  border: 1px solid #d7dee5;
  border-radius: 6px;
  outline: none;
  background: #fff;
  color: var(--navy);
  font-size: 11px;
}

.field textarea {
  min-height: 90px;
  padding-top: 11px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 130, 0, 0.12);
}

.field-hint {
  color: var(--muted);
  font-size: 8px;
  line-height: 1.45;
}

.form-summary {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 6px;
  padding: 16px;
  border: 1px solid #dce5df;
  border-radius: 7px;
  background: #f5faf7;
}

.form-summary p {
  margin: 0;
  color: #496256;
  font-size: 9px;
  line-height: 1.5;
}

.form-summary strong {
  display: block;
  margin-bottom: 3px;
  color: var(--success);
  font-size: 10px;
}

.field-error {
  color: #a7382f;
  font-size: 8px;
}

.leave-check {
  display: flex;
  grid-column: 1 / -1;
  align-items: flex-start;
  gap: 11px;
  padding: 14px;
  border: 1px solid #dce2e8;
  border-radius: 7px;
  background: #fafbfc;
  cursor: pointer;
}

.leave-check input {
  width: 16px;
  height: 16px;
  min-height: auto;
  margin: 1px 0 0;
  accent-color: var(--orange);
}

.leave-check strong,
.leave-check small {
  display: block;
}

.leave-check strong {
  color: var(--navy);
  font-size: 9px;
}

.leave-check small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.45;
}

.success-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid #bee0d1;
  border-radius: 7px;
  background: #f1faf6;
  color: #276b4f;
  font-size: 10px;
}

.success-banner button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-weight: 800;
}

.balance-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 16px;
}

.balance-cards {
  display: grid;
  gap: 14px;
}

.balance-card {
  padding: 24px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
}

.balance-card.sick {
  background: #274967;
}

.balance-card small {
  color: #afbed0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.balance-card strong {
  display: block;
  margin-top: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 400;
}

.balance-card strong span {
  color: #afbed0;
  font-family: var(--font-geist-sans), sans-serif;
  font-size: 11px;
}

.balance-meter {
  height: 4px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
}

.balance-meter span {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--orange);
}

.approval-track {
  display: grid;
  gap: 18px;
  margin: 6px 0;
}

.approval-step {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
}

.approval-step::after {
  content: "";
  position: absolute;
  top: 28px;
  bottom: -18px;
  left: 13px;
  width: 1px;
  background: #dce2e8;
}

.approval-step:last-child::after {
  display: none;
}

.approval-step > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf7f2;
  color: var(--success);
  font-size: 10px;
  font-weight: 800;
}

.approval-step.pending > span {
  background: #fff3e7;
  color: #a55a0b;
}

.approval-step.future > span {
  background: #f0f3f6;
  color: #8b98a8;
}

.approval-step strong {
  display: block;
  margin-top: 1px;
  color: var(--navy);
  font-size: 10px;
}

.approval-step small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.45;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.resource-card {
  min-height: 154px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 19px;
  border: 1px solid #dfe5ea;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  text-align: left;
}

.resource-card:hover {
  border-color: #f2b679;
  box-shadow: 0 8px 24px rgba(8, 31, 65, 0.06);
}

.resource-card > span {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #fff1e2;
  color: var(--orange-dark);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.resource-card strong {
  margin-top: 18px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 400;
}

.resource-card small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.5;
}

.resource-card b {
  margin-top: auto;
  padding-top: 12px;
  color: var(--orange-dark);
  font-size: 8px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(6, 24, 50, 0.62);
  backdrop-filter: blur(4px);
}

.portal-modal {
  width: min(760px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 26px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(6, 24, 50, 0.3);
}

.modal-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.modal-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.modal-heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 9px;
}

.modal-close {
  width: 33px;
  height: 33px;
  display: grid;
  flex: 0 0 33px;
  place-items: center;
  border: 1px solid #dce2e8;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  font-size: 17px;
}

.portal-mobile-menu {
  display: none;
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 18px;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-mark-card {
    width: 400px;
  }

  .note-one {
    left: 0;
  }

  .note-two {
    right: 0;
  }

  .donation-grid,
  .professional-grid {
    gap: 60px;
  }

  .about-grid,
  .faq-grid {
    gap: 70px;
  }

  .contact-card {
    padding: 60px;
  }

  .footer-main {
    gap: 36px;
  }

  .staff-portal {
    grid-template-columns: 210px 1fr;
  }

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

@media (max-width: 860px) {
  .utility-inner {
    justify-content: center;
  }

  .utility-actions {
    display: none;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    display: grid;
    align-content: center;
    gap: 4px;
    padding: 0 10px;
    border: 0;
    border-radius: 5px;
    background: var(--navy);
    color: var(--white);
    cursor: pointer;
  }

  .menu-button span {
    height: 1px;
    background: var(--white);
  }

  .menu-button b {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .nav-links {
    position: absolute;
    top: 80px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 14px 24px 24px;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 22px 32px rgba(11, 35, 71, 0.12);
  }

  .nav-links.open {
    display: grid;
  }

.nav-links > a:not(.nav-login):not(.nav-donate) {
    padding: 14px 4px;
    border-bottom: 1px solid #edf0f3;
  }

.nav-links > a:not(.nav-login):not(.nav-donate)::after {
    display: none;
  }

  .nav-login {
    justify-content: space-between;
    margin-top: 12px;
  }

  .nav-donate {
    justify-content: space-between;
    margin-top: 12px;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero {
    background: linear-gradient(180deg, #fff 0%, #fff 58%, #f0f3f6 58%);
  }

  .hero::before {
    display: none;
  }

  .hero-grid,
  .donation-grid,
  .professional-grid,
  .about-grid,
  .faq-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 70px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-art {
    margin-top: 28px;
  }

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

  .credentials-shell {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pathway-card {
    min-height: 300px;
  }

  .donation-grid,
  .professional-grid,
  .about-grid,
  .faq-grid {
    gap: 60px;
  }

  .history-year {
    width: min(430px, 84vw);
    justify-self: center;
  }

  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .faq-intro {
    position: static;
  }

  .contact-card {
    gap: 46px;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .staff-portal {
    display: block;
  }

  .staff-login-page {
    grid-template-columns: 1fr;
  }

  .login-brand-panel {
    display: none;
  }

  .login-form-panel {
    padding: 78px 28px 48px;
  }

  .staff-login-back {
    color: var(--navy);
  }

  .staff-login-back:hover,
  .staff-login-back:focus-visible {
    color: var(--orange-dark);
  }

  .login-mark {
    width: 100px;
    display: block;
    margin-bottom: 44px;
  }

  .portal-sidebar {
    position: fixed;
    z-index: 250;
    width: 250px;
    transform: translateX(-100%);
    transition: transform 180ms ease;
  }

  .portal-sidebar.open {
    transform: translateX(0);
  }

  .portal-mobile-menu {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid #d9e0e7;
    border-radius: 6px;
    background: #fff;
    color: var(--navy);
    cursor: pointer;
  }

  .portal-grid-main,
  .balance-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .site-shell {
    width: min(100% - 30px, 1180px);
  }

  .utility-inner {
    min-height: 34px;
    font-size: 9px;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand img {
    width: 49px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 8px;
  }

  .nav-links {
    top: 70px;
  }

  .hero-grid {
    padding-top: 56px;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 62px);
  }

  .hero-lede {
    font-size: 16px;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-assurance {
    grid-template-columns: 1fr;
  }

  .hero-assurance div {
    grid-template-columns: 82px 1fr;
    align-items: center;
  }

  .hero-art {
    min-height: 370px;
  }

  .hero-mark-card {
    width: min(350px, 88vw);
    min-height: 250px;
    padding: 32px 40px;
  }

  .hero-mark-card img {
    width: 230px;
    margin: 22px 0 18px;
  }

  .orbit-one {
    width: 400px;
    height: 270px;
  }

  .orbit-two {
    width: 460px;
    height: 320px;
  }

  .floating-note {
    padding: 10px 12px;
    font-size: 9px;
  }

  .note-one {
    top: 28px;
  }

  .note-two {
    bottom: 22px;
  }

  .pathways-section,
  .donation-section,
  .professionals-section,
  .about-section,
  .team-section,
  .faq-section {
    padding: 84px 0;
  }

  .section-intro h2,
  .professional-copy h2,
  .contact-card h2 {
    font-size: 39px;
  }

  .pathway-card {
    min-height: 280px;
    padding: 28px;
  }

  .credentials-section {
    padding: 58px 0;
  }

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

  .credential-card {
    min-height: 154px;
  }

  .process-panel {
    padding: 36px 24px;
  }

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

  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 12px;
  }

  .staff-card h3 {
    font-size: 15px;
  }

  .contact-section {
    padding-bottom: 30px;
  }

  .contact-card {
    width: 100%;
    padding: 48px 24px;
    border-radius: 0;
  }

  .contact-details a {
    grid-template-columns: 55px 1fr 20px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 0;
  }

  .portal-topbar {
    min-height: 66px;
    padding: 0 16px;
  }

  .preview-chip {
    display: none;
  }

  .period-chip {
    padding: 0 9px;
    font-size: 8px;
  }

  .portal-content {
    padding: 24px 14px 50px;
  }

  .portal-page-header {
    align-items: stretch;
    flex-direction: column;
  }

  .stat-grid,
  .quick-actions,
  .resource-grid,
  .portal-form {
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: 110px;
  }

  .field.full {
    grid-column: auto;
  }

  .leave-check {
    grid-column: auto;
  }

  .type-selector {
    grid-template-columns: 1fr;
  }

  .form-progress {
    display: none;
  }

  .form-summary {
    grid-column: auto;
    align-items: stretch;
    flex-direction: column;
  }

  .portal-modal {
    padding: 20px 16px;
  }
}

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

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