* {
  box-sizing: border-box;
}

:root {
  --color-accent: #25636f;
  --color-accent-strong: #163e48;
  --color-surface: #ffffff;
  --color-muted: #eef3f4;
  --color-text: #1f2933;
  --color-subtle: #5f6b76;
  --color-border: #d9e2e5;
  --radius: 4px;
  --measure: 72ch;
  color-scheme: light;
}

body {
  margin: 0;
  background: #f7f9fa;
  color: var(--color-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

a {
  color: var(--color-accent-strong);
}

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

.site-header {
  background-color: var(--color-accent);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 12px 12px;
  color: #ffffff;
}

.site-header-inner,
.site-footer,
.review-shell,
.page-shell {
  width: min(100% - 2rem, 70rem);
  margin: 0 auto;
}

.site-header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 6.5rem;
  padding: 0.85rem 0 1.2rem;
}

.brand {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.brand-name {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 2rem + 2vw, 3.7rem);
  line-height: 0.95;
}

.brand-tagline {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 0.95rem + 0.7vw, 1.75rem);
  line-height: 1.1;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.site-nav a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.page-shell {
  padding: 2rem 0 3rem;
}

.content {
  max-width: var(--measure);
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 2rem + 1vw, 3rem);
}

h2 {
  margin-top: 2rem;
  font-size: 1.45rem;
}

.lede {
  max-width: 62ch;
  color: var(--color-subtle);
  font-size: 1.15rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--color-accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button {
  display: inline-block;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  background: var(--color-accent);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.site-footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-subtle);
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.footer-nav a {
  color: var(--color-accent-strong);
}

.footer-disclosure {
  max-width: 62rem;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

@media (max-width: 42rem) {
  .site-header-inner {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
  }

  .site-nav {
    justify-content: flex-start;
  }
}
