@font-face {
  font-family: "Raleway";
  src: url("fonts/Raleway-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("fonts/Raleway-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("fonts/Raleway-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("fonts/Raleway-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #374052;
  --muted: #707681;
  --blue: #2a9bd7;
  --footer: #202a38;
  --footer-muted: #8d96a5;
  --paper: #ffffff;
  --line: #e5e7eb;
  --hero-overlay: rgba(229, 229, 229, 0.72);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Adobe Garamond Pro", Garamond, Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

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

a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 26px;
  color: #fff;
  font-family: "Raleway", "Avenir Next", Arial, sans-serif;
  text-transform: uppercase;
}

.site-mark {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.11em;
  text-decoration: none;
}

.site-mark:hover {
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.nav-link,
.nav-button {
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
}

.nav-link.is-active,
.nav-link:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.nav-button {
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 9px 18px;
}

.nav-button:hover {
  background: rgba(255, 255, 255, 0.14);
  text-decoration: none;
}

.page-banner {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  background-image: var(--banner-image);
  background-position: center;
  background-size: cover;
}

.page-banner--compact {
  min-height: 360px;
}

.page-banner__shade {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}

.page-banner__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 112px 28px 76px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.18);
}

.page-banner h1 {
  margin: 0;
  font-family: "Raleway", "Avenir Next", Arial, sans-serif;
  font-size: clamp(1.3rem, 3vw, 2.05rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-banner p {
  margin: 14px auto 0;
  max-width: 760px;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 39px;
  margin-top: 22px;
  padding: 0 28px;
  border-radius: 999px;
  background: #1596d4;
  color: #fff;
  font-family: "Raleway", "Avenir Next", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-button:hover {
  background: #087fba;
  text-decoration: none;
}

.statement {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 28px 44px;
  text-align: center;
}

.statement p {
  margin: 0;
  color: #283142;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.35;
}

.content-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 44px 28px 58px;
}

.content-section.narrow,
.legal-copy,
.blog-list {
  max-width: 620px;
}

.content-section h2,
.content-section h3,
.blog-entry h2,
.contact-copy h3 {
  margin: 0;
  font-family: "Raleway", "Avenir Next", Arial, sans-serif;
  color: #4a5362;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.content-section h2 {
  margin-bottom: 24px;
  font-size: 1.22rem;
}

.content-section h3,
.contact-copy h3 {
  margin-top: 22px;
  margin-bottom: 8px;
  font-size: 0.92rem;
}

.content-section p,
.content-section li,
.blog-entry p {
  color: #5f6672;
}

.feature-row,
.two-up,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.feature-image {
  position: relative;
  overflow: hidden;
}

.feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
}

.feature-image span {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Raleway", "Avenir Next", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.32);
}

.feature-copy ul {
  margin: 0 0 14px 1.1rem;
  padding: 0;
}

.two-up {
  gap: 42px;
}

.two-up img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.designed {
  padding-bottom: 82px;
}

.designed > p {
  max-width: 740px;
  margin-bottom: 34px;
}

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

.audience-grid article {
  min-width: 0;
}

.audience-grid h3 {
  min-height: 28px;
}

.audience-grid img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  margin: 12px 0 16px;
}

.guide-list {
  display: grid;
  gap: 28px;
}

.guide-list article {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.blog-list {
  margin: 0 auto;
  padding: 70px 28px 78px;
}

.blog-entry + .blog-entry {
  margin-top: 56px;
}

.entry-date,
.entry-category {
  margin: 0 0 10px;
  color: #a1a7b0;
}

.blog-entry h2 {
  margin-bottom: 8px;
  color: #344052;
  font-family: "Adobe Garamond Pro", Garamond, Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  letter-spacing: 0;
  text-transform: none;
}

.blog-entry a {
  display: inline-block;
  margin-top: 8px;
}

.legal-copy {
  padding-top: 70px;
  padding-bottom: 86px;
}

.legal-copy h2 {
  margin-bottom: 22px;
  font-size: 1.35rem;
}

.contact-section {
  padding-top: 72px;
  padding-bottom: 96px;
}

.contact-grid {
  align-items: start;
}

.map-card {
  position: relative;
  min-height: 308px;
  overflow: hidden;
  border: 1px solid #d3d7dc;
  background:
    radial-gradient(circle at 35% 25%, rgba(113, 146, 92, 0.6), transparent 22%),
    radial-gradient(circle at 70% 70%, rgba(91, 122, 76, 0.54), transparent 24%),
    linear-gradient(90deg, rgba(238, 238, 224, 0.78) 0 12%, transparent 12% 16%, rgba(238, 238, 224, 0.78) 16% 32%, transparent 32% 36%, rgba(238, 238, 224, 0.78) 36% 52%, transparent 52% 56%, rgba(238, 238, 224, 0.78) 56% 72%, transparent 72% 76%, rgba(238, 238, 224, 0.78) 76% 100%),
    linear-gradient(0deg, #929e7e, #798b6f);
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 43px, rgba(255, 255, 255, 0.62) 44px 48px),
    repeating-linear-gradient(90deg, transparent 0 58px, rgba(255, 255, 255, 0.62) 59px 63px);
  mix-blend-mode: soft-light;
}

.map-pin {
  position: absolute;
  left: 62%;
  top: 51%;
  width: 22px;
  height: 22px;
  border-radius: 50% 50% 50% 0;
  background: #d74931;
  transform: rotate(-45deg);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
}

.map-card span {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translateX(-50%);
  color: #2f3744;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.contact-copy p {
  margin: 0 0 20px;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 34px;
  min-height: 280px;
  padding: 38px 28px 46px;
  background: var(--footer);
  color: var(--footer-muted);
  font-family: "Raleway", "Avenir Next", Arial, sans-serif;
  text-align: center;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--footer);
  font-size: 0.66rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.footer-nav a,
.footer-contact a {
  color: var(--footer-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-contact,
.footer-product {
  margin: 0;
  color: var(--footer-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-product {
  font-family: "Adobe Garamond Pro", Garamond, Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  text-transform: none;
}

.footer-product a {
  color: var(--footer-muted);
  font-weight: 400;
  text-decoration: underline;
}

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    padding: 18px;
  }

  .site-mark {
    font-size: 0.85rem;
  }

  .site-nav {
    gap: 12px;
  }

  .nav-link {
    display: none;
  }

  .nav-link.is-active,
  .nav-button {
    display: inline-flex;
  }

  .page-banner,
  .page-banner--compact {
    min-height: 390px;
  }

  .page-banner__content {
    padding-top: 92px;
  }

  .statement {
    padding-top: 48px;
  }

  .feature-row,
  .two-up,
  .contact-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .two-up--reverse > div:first-child {
    order: 2;
  }

  .two-up--reverse > div:last-child {
    order: 1;
  }

  .content-section,
  .blog-list {
    padding-left: 22px;
    padding-right: 22px;
  }

  .footer-nav {
    gap: 16px;
  }
}
