:root {
  --navy: #071d3f;
  --navy-2: #0d2d5c;
  --green: #23a455;
  --green-dark: #08773c;
  --ink: #112037;
  --muted: #5c6879;
  --line: #d8e4dd;
  --paper: #fbfdfb;
  --white: #ffffff;
  --gold: #f5c84c;
  --shadow: 0 24px 70px rgba(7, 29, 63, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  border-bottom: 5px solid var(--green);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--navy);
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
}

nav a {
  padding: 10px 0;
}

nav a:hover {
  color: var(--green-dark);
}

.hero {
  position: relative;
  min-height: min(82vh, 780px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.76fr);
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 29, 63, 0.95) 0%, rgba(7, 29, 63, 0.9) 42%, rgba(7, 29, 63, 0.35) 100%),
    url("assets/campaign-sign.svg") right center / min(58vw, 760px) auto no-repeat,
    #071d3f;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: clamp(70px, 11vw, 138px) clamp(22px, 6vw, 72px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: Merriweather, Georgia, serif;
  font-size: clamp(3.4rem, 11vw, 8.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.tagline {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: clamp(1.12rem, 2.2vw, 1.55rem);
  color: #e4efe8;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 7px;
  font-weight: 900;
  border: 2px solid transparent;
}

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

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

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

.hero-card {
  position: relative;
  z-index: 3;
  align-self: end;
  justify-self: end;
  width: min(100%, 440px);
  margin: 0 clamp(22px, 6vw, 72px) clamp(28px, 6vw, 64px) 0;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  border-top: 7px solid var(--green);
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  color: var(--navy);
  font-size: 1.25rem;
}

.hero-card span {
  margin-top: 8px;
  color: var(--muted);
}

.section {
  padding: clamp(58px, 9vw, 104px) clamp(20px, 5vw, 72px);
}

h2 {
  margin: 0;
  color: var(--navy);
  font-family: Merriweather, Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.about-panel p,
.site-footer span {
  color: var(--muted);
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  background: #eef6f1;
}

.about-panel,
.quote-panel {
  border-radius: 8px;
  padding: clamp(26px, 4vw, 44px);
}

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

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

.quote-panel h2 {
  color: var(--white);
}

.quote-panel blockquote {
  margin: 22px 0 0;
  padding: 0;
  color: #ecf7f0;
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  line-height: 1.68;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 72px);
  background: #061733;
  color: var(--white);
}

.site-footer span {
  color: #b9c7d6;
}

@media (max-width: 980px) {
  .hero,
  .about {
    grid-template-columns: 1fr;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(7, 29, 63, 0.96) 0%, rgba(7, 29, 63, 0.88) 55%, rgba(7, 29, 63, 0.58) 100%),
      url("assets/campaign-sign.svg") center bottom / min(92vw, 680px) auto no-repeat,
      #071d3f;
  }

  .hero-card {
    justify-self: start;
    margin: 0 22px 30px;
  }

}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 58px;
  }

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

  .site-footer {
    display: grid;
  }
}
