:root {
  --navy: #00132d;
  --navy-soft: #061d3d;
  --navy-muted: #123456;
  --cyan: #18c0c7;
  --cyan-strong: #00aeb9;
  --cyan-soft: #dff8fa;
  --white: #ffffff;
  --paper: #f4f8f9;
  --ink: #07131f;
  --muted: #5f6d7a;
  --line: rgba(0, 19, 45, 0.14);
  --shadow: 0 24px 60px rgba(0, 19, 45, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 30;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 48px);
  background: rgba(0, 19, 45, 0.98);
  color: var(--white);
  border-bottom: 1px solid rgba(24, 192, 199, 0.38);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(292px, 62vw);
  height: 58px;
  min-width: 178px;
  overflow: hidden;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

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

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.hero-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 94px 0 104px;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.profile-title h1,
.profile-copy h2 {
  letter-spacing: 0;
}

.hero h1 {
  max-width: 930px;
  margin: 0;
  font-size: 84px;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 23px;
  font-style: italic;
  line-height: 1.42;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--white);
  border-color: var(--cyan);
  color: var(--navy);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan);
}

.statement-band {
  display: grid;
  grid-template-columns: auto auto auto minmax(160px, 1fr);
  gap: 14px 24px;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 48px);
  background: var(--cyan);
  color: var(--navy);
  font-weight: 900;
}

.statement-band strong {
  font-size: 22px;
}

.statement-band span,
.statement-band a {
  font-size: 15px;
}

.statement-band a {
  justify-self: end;
  text-decoration: none;
}

.section {
  padding: 72px clamp(18px, 4vw, 48px);
}

.section > * {
  width: min(var(--max), 100%);
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: 34px;
}

.section h2 {
  max-width: 820px;
  margin: 0;
  font-size: 48px;
  line-height: 1.08;
}

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

.priority-stack {
  display: grid;
  gap: 14px;
}

.priority-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.priority-number {
  display: grid;
  place-items: center;
  min-height: 100%;
  background: var(--cyan);
  color: var(--navy);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.priority-content {
  padding: 26px 28px 28px 0;
}

.priority-content h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 34px;
  line-height: 1.12;
}

.priority-content p {
  max-width: 920px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.section-candidates {
  background: var(--paper);
}

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

.candidate-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.candidate-card:hover,
.candidate-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(24, 192, 199, 0.68);
  box-shadow: var(--shadow);
}

.candidate-card a {
  display: grid;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.candidate-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  background: var(--white);
}

.candidate-card-body {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.candidate-role {
  margin: 0;
  color: var(--cyan-strong);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.candidate-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.14;
}

.candidate-card span {
  margin-top: 8px;
  color: var(--navy);
  font-weight: 900;
}

.candidate-card span::after {
  content: " ->";
  color: var(--cyan-strong);
}

.section-facebook {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: var(--navy-soft);
  color: var(--white);
}

.facebook-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.section-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: var(--white);
}

.contact-intro p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.contact-intro a {
  color: var(--navy);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.contact-form label {
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 19, 45, 0.22);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(24, 192, 199, 0.28);
  border-color: var(--cyan-strong);
}

.contact-form button {
  margin-top: 6px;
  cursor: pointer;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  margin: 8px 0 0;
  padding: 11px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
}

.form-status.is-success {
  background: rgba(24, 192, 199, 0.16);
  color: var(--navy);
}

.form-status.is-error {
  background: rgba(186, 42, 42, 0.1);
  color: #7c1b1b;
}

.form-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 48px);
  background: var(--navy);
  color: var(--white);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  font-size: 20px;
}

.site-footer span {
  color: var(--cyan);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  text-decoration: none;
}

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

.copy-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  max-width: min(360px, calc(100vw - 36px));
  padding: 13px 15px;
  border: 1px solid rgba(24, 192, 199, 0.42);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 800;
}

.profile-main {
  background: var(--paper);
}

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

.profile-hero-inner {
  display: grid;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  gap: clamp(34px, 6vw, 76px);
  align-items: end;
  padding: 58px 0;
}

.profile-title h1 {
  margin: 0;
  font-size: 68px;
  line-height: 1;
}

.profile-title p {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 22px;
}

.profile-photo {
  border: 1px solid rgba(24, 192, 199, 0.58);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.profile-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.profile-body {
  display: grid;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  padding: 64px 0;
}

.profile-facts {
  display: grid;
  align-content: start;
  gap: 12px;
}

.profile-fact {
  padding: 18px;
  border-left: 5px solid var(--cyan);
  background: var(--white);
}

.profile-fact span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-fact strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.3;
}

.profile-fact a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--cyan-strong);
  text-underline-offset: 3px;
}

.profile-copy {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.profile-copy h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 42px;
  line-height: 1.12;
}

.profile-copy p {
  margin: 16px 0 0;
  color: #243241;
  font-size: 19px;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.profile-actions .button-secondary {
  border-color: rgba(0, 19, 45, 0.22);
  color: var(--navy);
}

.profile-actions .button-secondary:hover,
.profile-actions .button-secondary:focus-visible {
  border-color: var(--cyan-strong);
  color: var(--cyan-strong);
}

@media (max-width: 980px) {
  .site-header {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(24, 192, 199, 0.38);
    border-radius: 8px;
    background: var(--navy);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

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

  .hero {
    background: var(--navy);
  }

  .hero-inner,
  .section-contact,
  .section-facebook,
  .profile-hero-inner,
  .profile-body {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-lead,
  .profile-title p {
    font-size: 20px;
  }

  .statement-band {
    grid-template-columns: 1fr 1fr;
  }

  .statement-band a {
    justify-self: start;
  }

  .section h2 {
    font-size: 38px;
  }

  .priority-item {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .priority-number {
    font-size: 32px;
  }

  .priority-content h3 {
    font-size: 28px;
  }

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

  .candidate-card a {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .candidate-card img {
    height: 100%;
    aspect-ratio: auto;
  }

  .profile-title h1 {
    font-size: 52px;
  }
}

@media (max-width: 620px) {
  .brand {
    width: min(238px, 68vw);
    height: 48px;
  }

  .hero-inner {
    padding: 46px 0 54px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions,
  .profile-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .statement-band {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .section h2,
  .profile-copy h2 {
    font-size: 31px;
  }

  .priority-item {
    grid-template-columns: 1fr;
  }

  .priority-number {
    min-height: 78px;
  }

  .priority-content {
    padding: 0 20px 24px;
  }

  .priority-content h3 {
    font-size: 25px;
  }

  .priority-content p,
  .profile-copy p {
    font-size: 17px;
  }

  .candidate-card a {
    grid-template-columns: 1fr;
  }

  .candidate-card img {
    aspect-ratio: 1 / 1;
  }

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

  .contact-form {
    padding: 18px;
  }

  .profile-title h1 {
    font-size: 40px;
  }

  .profile-hero-inner {
    padding: 42px 0;
  }

  .profile-copy {
    padding: 22px;
  }
}
