:root {
  --ink: #112232;
  --navy: #07324b;
  --teal: #176f69;
  --green: #566d46;
  --coral: #bb573f;
  --gold: #bc8a2f;
  --mist: #edf7f5;
  --cloud: #f8f9f5;
  --line: #d8e1dd;
  --muted: #55636f;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(17, 34, 50, 0.14);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cloud);
  font-family: Avenir, "Avenir Next", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
}

body:has(.site-header.is-open) {
  overflow: hidden;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  font-weight: 800;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
  padding: 14px 34px;
  color: var(--white);
  background: rgba(7, 50, 75, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.campaign-mark {
  display: grid;
  line-height: 1.08;
}

.campaign-mark__name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.campaign-mark__office {
  margin-top: 4px;
  color: #d5f3ee;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  font-weight: 800;
}

.site-nav a {
  padding: 9px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: #d5f3ee;
}

.nav-email {
  padding: 10px 14px !important;
  color: var(--navy);
  background: var(--white);
  border: 0 !important;
  border-radius: 6px;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 10px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
}

.nav-toggle__bars {
  position: relative;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  position: absolute;
  left: 0;
}

.nav-toggle__bars::before {
  top: -6px;
}

.nav-toggle__bars::after {
  top: 6px;
}

.hero {
  position: relative;
  display: flex;
  min-height: 86svh;
  padding: 148px 34px 86px;
  color: var(--white);
  overflow: hidden;
}

.hero__image,
.statement-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image {
  object-position: center center;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 31, 46, 0.9) 0%, rgba(5, 31, 46, 0.64) 48%, rgba(5, 31, 46, 0.24) 100%),
    linear-gradient(0deg, rgba(5, 31, 46, 0.35), rgba(5, 31, 46, 0.05));
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(970px, 100%);
  margin: auto auto auto max(0px, calc((100% - 1120px) / 2));
}

.eyebrow {
  margin: 0 0 14px;
  color: #e6c16b;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow--blue {
  color: var(--teal);
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.06;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: 5rem;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 3rem;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.22;
}

.hero__lead {
  max-width: 720px;
  margin-bottom: 30px;
  color: #eef7f5;
  font-size: 1.35rem;
}

.hero__actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

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

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

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

.hero__pledge {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 22px;
  z-index: 1;
  width: min(1120px, calc(100% - 68px));
  margin: 0 auto;
  padding-top: 16px;
  color: #d5f3ee;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 1rem;
  font-weight: 800;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.proof-strip__item {
  min-height: 120px;
  padding: 28px 34px;
  border-right: 1px solid var(--line);
}

.proof-strip__item:last-child {
  border-right: 0;
}

.proof-strip__item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1.08rem;
}

.proof-strip__item span {
  color: var(--muted);
}

.section {
  padding: 88px 0;
}

.about {
  background: var(--cloud);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  gap: 58px;
  align-items: center;
}

.portrait {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.section-copy p,
.section-heading p,
.image-callout__copy p,
.contact__panel p {
  color: var(--muted);
  font-size: 1.08rem;
}

.statement-band {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: end;
  padding: 84px 0;
  color: var(--white);
  overflow: hidden;
}

.statement-band__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 38, 56, 0.9) 0%, rgba(6, 38, 56, 0.52) 58%, rgba(6, 38, 56, 0.16) 100%);
}

.statement-band__content {
  position: relative;
  z-index: 1;
}

.statement-band h2 {
  max-width: 860px;
  color: var(--white);
}

.statement-band p:not(.eyebrow) {
  max-width: 790px;
  color: #edf7f5;
  font-size: 1.18rem;
}

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

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

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

.priority-card,
.issue-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(17, 34, 50, 0.08);
}

.priority-card img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.priority-card div {
  padding: 22px;
}

.priority-card p,
.issue-card p,
.decision-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.decision {
  background:
    linear-gradient(90deg, rgba(237, 247, 245, 0.96), rgba(248, 249, 245, 0.96)),
    url("assets/blue-umbrellas.jpg") center / cover;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.decision__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
}

.decision-list {
  display: grid;
  gap: 16px;
}

.decision-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.decision-list span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.issues {
  background: var(--cloud);
}

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

.issue-card {
  min-height: 244px;
  padding: 22px;
  box-shadow: none;
}

.issue-card h3 {
  min-height: 58px;
}

.issue-card:nth-child(3n + 1) {
  border-top: 4px solid var(--teal);
}

.issue-card:nth-child(3n + 2) {
  border-top: 4px solid var(--coral);
}

.issue-card:nth-child(3n) {
  border-top: 4px solid var(--gold);
}

.image-callout {
  background: var(--white);
}

.image-callout__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.image-callout__photo {
  overflow: hidden;
  border-radius: 8px;
}

.image-callout__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.contact {
  padding-top: 0;
  background: var(--white);
}

.contact__panel {
  padding: 58px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 50, 75, 0.94), rgba(23, 111, 105, 0.9)),
    url("assets/beach-evening.jpg") center / cover;
  border-radius: 8px;
}

.contact__panel h2 {
  max-width: 760px;
  color: var(--white);
}

.contact__panel p:not(.eyebrow) {
  max-width: 720px;
  color: #edf7f5;
}

.site-footer {
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.82);
  background: #071d2a;
  font-size: 0.9rem;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 22px;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  max-width: 560px;
  text-align: right;
}

@media (max-width: 1040px) {
  .priority-grid,
  .issue-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.55rem;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 70px;
    padding: 12px 20px;
  }

  .campaign-mark__name {
    font-size: 1.32rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 24px;
    background: rgba(7, 50, 75, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

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

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .nav-email {
    margin-top: 14px;
    text-align: center;
  }

  .hero {
    min-height: 84svh;
    padding: 118px 20px 84px;
  }

  .hero__inner {
    margin-left: 0;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero__lead {
    font-size: 1.15rem;
  }

  .hero__pledge {
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
    font-size: 0.95rem;
  }

  .proof-strip,
  .about__grid,
  .decision__grid,
  .image-callout__grid {
    grid-template-columns: 1fr;
  }

  .proof-strip__item {
    min-height: 0;
    padding: 22px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip__item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 66px 0;
  }

  .about__grid,
  .decision__grid,
  .image-callout__grid {
    gap: 34px;
  }

  .portrait {
    max-width: 420px;
  }

  .statement-band {
    min-height: 480px;
  }

  .contact__panel {
    padding: 36px 24px;
  }

  .site-footer__inner {
    display: grid;
  }

  .site-footer p:last-child {
    text-align: left;
  }
}

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

  .campaign-mark__office {
    font-size: 0.66rem;
  }

  .nav-toggle__label {
    display: none;
  }

  .hero {
    min-height: 82svh;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero__actions,
  .contact__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .issue-card {
    min-height: 0;
  }

  .issue-card h3 {
    min-height: 0;
  }

  .decision-list article {
    grid-template-columns: 1fr;
  }

  .decision-list span {
    grid-row: auto;
    margin-bottom: 14px;
  }
}
