:root {
  --ink: #151719;
  --navy: #10243f;
  --blue: #1f5f9b;
  --red: #b3313b;
  --red-dark: #8d2530;
  --gold: #dca642;
  --evergreen: #2f6b57;
  --paper: #f7f3eb;
  --white: #ffffff;
  --muted: #68727c;
  --line: rgba(21, 23, 25, 0.13);
  --shadow: 0 18px 48px rgba(16, 36, 63, 0.14);
  --hero-photo: url("assets/kenneth-vaz-seattle.jpg");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 54px);
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(247, 243, 235, 0.96);
  box-shadow: 0 10px 30px rgba(16, 36, 63, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--blue));
  border: 2px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.82;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.93rem;
  font-weight: 800;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-open .site-nav a:hover {
  background: rgba(31, 95, 155, 0.1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 8px;
  color: inherit;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: var(--hero-photo);
  background-size: cover;
  background-position: 68% center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 18, 31, 0.94) 0%, rgba(13, 30, 51, 0.76) 43%, rgba(13, 30, 51, 0.2) 100%),
    linear-gradient(180deg, rgba(8, 18, 31, 0.2) 0%, rgba(8, 18, 31, 0.72) 100%);
}

.hero-content {
  position: relative;
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 12vh;
}

.eyebrow,
.section-kicker {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(3.4rem, 8vw, 7.1rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 700px;
  margin-bottom: 14px;
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  color: rgba(255, 255, 255, 0.9);
}

.identity-line {
  max-width: 620px;
  margin-bottom: 32px;
  color: #f3c463;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  font-weight: 900;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 20px;
  border: 2px solid transparent;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

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

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

.button.primary:hover {
  background: var(--red-dark);
}

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

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.button.full {
  width: 100%;
}

.intro-band,
.values-section,
.platform-section,
.priority-section,
.bio-section,
.join-section {
  padding: clamp(72px, 9vw, 124px) 0;
}

.intro-band {
  background: var(--white);
}

.intro-grid,
.bio-grid,
.join-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 7vw, 82px);
  align-items: start;
}

.intro-copy {
  color: #3c4650;
  font-size: 1.08rem;
}

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

.section-heading.compact {
  max-width: 860px;
}

.values-section {
  background:
    linear-gradient(135deg, rgba(47, 107, 87, 0.12), rgba(220, 166, 66, 0.09)),
    var(--paper);
}

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

.value-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.value-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-size: 0.95rem;
  font-weight: 900;
}

.value-card:nth-child(2) .value-icon {
  background: var(--red);
}

.value-card:nth-child(3) .value-icon {
  background: var(--evergreen);
}

.value-card p {
  margin-bottom: 0;
  color: #4f5a64;
}

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

.platform-list {
  display: grid;
  gap: 14px;
}

.platform-item {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
}

.platform-number {
  color: var(--red);
  font-size: 1.4rem;
  font-weight: 950;
  line-height: 1;
}

.platform-item ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: #3e4852;
}

.priority-section {
  background:
    linear-gradient(135deg, rgba(16, 36, 63, 0.08), rgba(179, 49, 59, 0.07)),
    var(--paper);
}

.priority-section .section-heading p:not(.section-kicker) {
  max-width: 700px;
  color: #4f5a64;
  font-size: 1.04rem;
}

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

.priority-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.priority-label {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 16px;
  padding: 6px 11px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.priority-card:nth-child(2) .priority-label {
  background: var(--red);
}

.priority-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: #3e4852;
}

.bio-section {
  color: var(--white);
  background:
    linear-gradient(125deg, rgba(16, 36, 63, 0.94), rgba(31, 95, 155, 0.82)),
    var(--navy);
}

.bio-section .section-kicker {
  color: #f3c463;
}

.bio-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.experience-panel {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.bio-side {
  display: grid;
  gap: 18px;
}

.portrait-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.2);
}

.portrait-card img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: 50% 22%;
}

.experience-line {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.experience-line span,
.experience-line small {
  display: block;
}

.experience-line span {
  color: #f3c463;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.experience-line strong {
  display: block;
  margin: 7px 0 2px;
  font-size: 1.25rem;
}

.experience-line small {
  color: rgba(255, 255, 255, 0.74);
}

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

.company-strip span {
  padding: 13px 12px;
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.86);
  font-weight: 900;
  text-align: center;
}

.quote-band {
  padding: clamp(54px, 7vw, 88px) 0;
  color: var(--white);
  background: var(--red-dark);
}

blockquote {
  max-width: 980px;
  margin: 0 0 18px;
  font-size: clamp(1.6rem, 3.4vw, 3.2rem);
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: 0;
}

cite {
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-weight: 900;
}

.join-section {
  background:
    linear-gradient(90deg, rgba(220, 166, 66, 0.15), rgba(31, 95, 155, 0.08)),
    var(--paper);
}

.join-section p {
  color: #4b5660;
}

.contact-line {
  font-weight: 850;
}

.contact-line a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.join-form {
  display: grid;
  gap: 15px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: #37414a;
  font-size: 0.86rem;
  font-weight: 900;
}

input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(21, 23, 25, 0.2);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfaf7;
  font: inherit;
}

input:focus {
  outline: 3px solid rgba(31, 95, 155, 0.22);
  border-color: var(--blue);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--evergreen);
  font-weight: 850;
}

.site-footer {
  padding: 32px 0;
  color: rgba(255, 255, 255, 0.82);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr auto 1fr;
  gap: 26px;
  align-items: start;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
}

.footer-email {
  display: inline-block;
  margin-top: 10px;
  color: var(--gold);
  font-weight: 850;
}

.site-footer p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  gap: 14px;
  font-weight: 850;
}

.legal {
  font-size: 0.82rem;
  text-align: right;
}

@media (max-width: 820px) {
  .site-header {
    padding: 12px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    display: none;
    padding: 12px;
    border: 1px solid rgba(16, 36, 63, 0.1);
    border-radius: 8px;
    color: var(--ink);
    background: rgba(247, 243, 235, 0.98);
    box-shadow: var(--shadow);
  }

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

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

  .hero {
    min-height: 88vh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 18, 31, 0.68) 0%, rgba(8, 18, 31, 0.88) 100%),
      linear-gradient(90deg, rgba(8, 18, 31, 0.78), rgba(8, 18, 31, 0.4));
  }

  .hero-image {
    background-position: 60% center;
  }

  .hero-content {
    padding-top: 132px;
    padding-bottom: 62px;
  }

  .intro-grid,
  .bio-grid,
  .join-grid,
  .values-grid,
  .priority-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }

  .legal {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .container,
  .hero-content {
    width: min(100% - 28px, 1120px);
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.8rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
  }

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

  .value-card,
  .platform-item,
  .priority-card,
  .experience-panel,
  .join-form {
    padding: 22px;
  }

  .company-strip {
    grid-template-columns: 1fr;
  }
}
