:root {
  color-scheme: light;
  --ink: #13221c;
  --muted: #58675f;
  --forest: #173c32;
  --teal: #1f6f64;
  --clay: #b45309;
  --cream: #fbf7ed;
  --paper: #ffffff;
  --line: rgba(19, 34, 28, 0.14);
  --shadow: 0 22px 60px rgba(20, 42, 34, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(31, 111, 100, 0.12), transparent 34rem),
    var(--cream);
}

a {
  color: inherit;
}

.skip-link {
  left: 1rem;
  padding: 0.6rem 0.8rem;
  position: absolute;
  top: -4rem;
  z-index: 10;
  background: var(--paper);
}

.skip-link:focus {
  top: 1rem;
}

.site-header,
.site-footer {
  border-color: var(--line);
  border-style: solid;
  border-width: 0 0 1px;
  background: rgba(251, 247, 237, 0.84);
  backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 3;
}

.nav-shell,
.footer-shell,
.section,
.hero {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  text-decoration: none;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1;
}

.brand span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 650;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.footer-link:hover {
  color: var(--forest);
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  border: 1px solid var(--forest);
  border-radius: 999px;
  padding: 0.72rem 1rem;
  background: var(--forest);
  color: white;
  font-weight: 750;
  text-decoration: none;
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.58);
  color: var(--forest);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  gap: 2rem;
  align-items: center;
  padding: 5.2rem 0 4rem;
}

.eyebrow {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  margin: 1rem 0 0;
  max-width: 13ch;
  font-size: clamp(3rem, 8vw, 5.85rem);
  line-height: 0.98;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.05rem);
  line-height: 1.05;
}

h3 {
  margin: 0;
  font-size: 1.28rem;
}

.lede {
  margin: 1.35rem 0 0;
  max-width: 46rem;
  color: #34463e;
  font-size: 1.24rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-media {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--forest);
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.section {
  padding: 3.5rem 0;
}

.section-heading {
  max-width: 48rem;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(20, 42, 34, 0.08);
}

.card p,
.page-copy p,
.page-copy li {
  color: var(--muted);
  line-height: 1.72;
}

.page-main {
  padding: 4rem 0 2rem;
}

.page-copy {
  width: min(820px, calc(100% - 2rem));
  margin: 0 auto;
}

.page-copy h1 {
  max-width: 16ch;
}

.page-copy h2 {
  margin-top: 2.4rem;
}

.page-copy ul {
  padding-left: 1.2rem;
}

.band {
  margin: 2.5rem 0;
  padding: 1.5rem;
  border-left: 4px solid var(--teal);
  background: rgba(255, 255, 255, 0.62);
}

.site-footer {
  border-width: 1px 0 0;
  margin-top: 3rem;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-link {
  color: var(--forest);
  font-weight: 750;
}

@media (max-width: 820px) {
  .nav-shell,
  .footer-shell,
  .hero {
    align-items: flex-start;
  }

  .nav-shell,
  .footer-shell {
    flex-direction: column;
    display: flex;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero,
  .grid,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }
}
