:root {
  --ink: #253238;
  --muted: #65716d;
  --paper: #fbfaf6;
  --line: #cfc8bb;
  --ocean: #1e5c68;
  --deep-ocean: #153f49;
  --ti: #4f6f52;
  --gold: #b9822f;
  --link: #0f748f;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 20px;
}

* {
  box-sizing: border-box;
}

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

a,
a:visited {
  color: var(--link);
  text-decoration: none;
}

a:hover,
a:active,
a:focus-visible {
  color: var(--deep-ocean);
  text-decoration: underline;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--deep-ocean);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  margin-bottom: 0.35rem;
  font-size: clamp(2.9rem, 8vw, 5.8rem);
}

h2 {
  margin-bottom: 0.75rem;
  color: var(--ocean);
  font-size: clamp(1.5rem, 3.4vw, 2.35rem);
  font-weight: 650;
}

p {
  margin-top: 0;
}

.wrapper,
.home,
.page {
  max-width: 960px;
  margin: 0 auto;
}

.site-header {
  display: block;
  width: 100%;
  padding-top: 0.7rem;
}

.site-header__content {
  display: block;
  width: 100%;
}

.header__column--left,
.header__column--right {
  flex: 1 0 0%;
}

.header__column--center {
  flex: 1 1 0%;
  text-align: center;
}

.header__column--full {
  margin-top: 0.8rem;
}

.header-logo {
  display: inline-block;
  width: 320px;
  max-width: calc(100vw - 2rem);
  color: var(--ink);
  text-align: center;
  text-decoration: none;
}

.header-logo:hover,
.header-logo:focus-visible {
  color: var(--ink);
  text-decoration: none;
}

.logo-name {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 3.05rem);
  line-height: 0.95;
}

.logo-office {
  display: block;
  margin-top: 0.35rem;
  color: var(--ocean);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-header nav a {
  padding: 0.25em 0.8em;
}

.site-header nav .active a {
  background: #e3f0ee;
  border-radius: 2px;
  color: var(--deep-ocean);
  cursor: default;
}

.navigation--left,
.navigation--right {
  display: none;
}

.navigation.navigation--bottom {
  display: block;
  width: 100%;
}

.navigation.navigation--bottom ul {
  flex-wrap: wrap;
  justify-content: center;
}

.navigation ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.navigation a {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

hr.hr--fancy {
  position: relative;
  margin: 1rem auto;
  padding: 0;
  border: none;
  border-top: 3px double var(--line);
  text-align: center;
}

hr.hr--fancy--campaign::after {
  position: absolute;
  top: -14px;
  left: calc(50% - 14px);
  display: inline-block;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 0 37%, rgba(185, 130, 47, 0.92) 38% 45%, transparent 46% 100%),
    linear-gradient(45deg, transparent 0 52%, rgba(30, 92, 104, 0.9) 53% 61%, transparent 62% 100%),
    var(--paper);
  content: "";
}

.home {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  align-items: center;
  justify-items: center;
}

.home__content {
  width: 100%;
}

.campaign-intro {
  position: relative;
  max-width: 760px;
  margin: 1.35rem auto 2.4rem;
  padding: clamp(2.1rem, 6vw, 4.6rem) 0 clamp(1.9rem, 5vw, 3.8rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.campaign-intro::before {
  position: absolute;
  inset: 0 0 auto;
  height: 9px;
  background:
    linear-gradient(90deg, var(--deep-ocean) 0 26%, var(--gold) 26% 34%, var(--ti) 34% 100%);
  content: "";
}

.kicker {
  margin-bottom: 0.65rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-line {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
  padding-bottom: 1rem;
}

.footer-col-2 {
  text-align: right;
}

@media screen and (min-width: 640px) {
  .site-header__content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
  }

  .navigation--left,
  .navigation--right {
    display: block;
  }

  .navigation.navigation--bottom {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  body {
    padding-right: 0.8rem;
    padding-left: 0.8rem;
  }

  .campaign-intro {
    margin-top: 1rem;
  }

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

  .footer-col-2 {
    text-align: left;
  }
}
