:root {
  --ink: #172021;
  --muted: #5d6868;
  --paper: #f5f2eb;
  --white: #fffdf8;
  --line: #d8d3c8;
  --forest: #193b36;
  --copper: #b76f44;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-header {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--forest);
  color: var(--white);
}

.nav {
  width: min(1120px, calc(100% - 40px));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: -0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.91rem;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #ffffff;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(118deg, rgba(25, 59, 54, 0.98) 0 52%, rgba(25, 59, 54, 0.79) 74%, rgba(25, 59, 54, 0.93) 100%),
    linear-gradient(28deg, transparent 0 46%, rgba(183, 111, 68, 0.38) 46% 48%, transparent 48% 100%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -105px;
  top: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 85px rgba(255, 255, 255, 0.035), 0 0 0 170px rgba(255, 255, 255, 0.02);
}

.hero-inner,
.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 96px 0 110px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--copper);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #edb087;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(3.35rem, 8vw, 6.7rem);
  letter-spacing: -0.048em;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--copper);
  background: var(--copper);
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 750;
}

.button:hover {
  background: #9f5f3a;
  border-color: #9f5f3a;
}

.section {
  padding: 104px 0;
}

.section-alt {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}

.section-heading h2,
.page-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 5vw, 4.3rem);
  letter-spacing: -0.038em;
}

.section-heading p {
  max-width: 650px;
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.focus-item {
  padding: 44px 46px 48px 0;
}

.focus-item + .focus-item {
  padding-left: 46px;
  border-left: 1px solid var(--line);
}

.focus-number {
  color: var(--copper);
  font-family: var(--serif);
  font-style: italic;
}

.focus-item h3 {
  margin: 34px 0 18px;
  font-size: 2rem;
}

.focus-item p {
  max-width: 470px;
  margin-bottom: 0;
  color: var(--muted);
}

.facts {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 88px;
  align-items: start;
}

.facts h2 {
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  letter-spacing: -0.04em;
}

.facts > div > p {
  color: var(--muted);
  max-width: 570px;
}

.fact-list {
  margin: 0;
}

.fact-row {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 20px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.fact-row:first-child {
  border-top: 1px solid var(--line);
}

.fact-row dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fact-row dd {
  margin: 0;
}

.fact-row a {
  text-underline-offset: 4px;
}

.page-hero {
  padding: 102px 0 110px;
  background: var(--forest);
  color: var(--white);
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.page-hero p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.16rem;
}

.page-copy {
  max-width: 780px;
}

.page-copy h2 {
  margin-top: 70px;
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.page-copy h2:first-child {
  margin-top: 0;
}

.page-copy h3 {
  margin-top: 38px;
  margin-bottom: 12px;
  font-size: 1.55rem;
}

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

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.04em;
}

.contact-details {
  border-top: 1px solid var(--line);
}

.contact-detail {
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.contact-detail span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail strong,
.contact-detail a {
  font-size: 1.08rem;
  font-weight: 600;
  text-underline-offset: 4px;
}

.site-footer {
  padding: 62px 0 28px;
  background: #111a1b;
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 50px;
  padding-bottom: 52px;
}

.footer-title {
  color: #ffffff;
  font-family: var(--serif);
  font-size: 1.45rem;
}

.footer-label {
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.74);
  text-underline-offset: 4px;
}

.copyright {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.8rem;
}

@media (max-width: 760px) {
  .nav {
    min-height: auto;
    padding: 19px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .nav-links {
    width: 100%;
    gap: 22px;
  }

  .hero {
    min-height: 530px;
  }

  .hero-inner {
    padding: 76px 0 88px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .section {
    padding: 76px 0;
  }

  .section-heading,
  .facts,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .focus-grid {
    grid-template-columns: 1fr;
  }

  .focus-item {
    padding: 34px 0 38px;
  }

  .focus-item + .focus-item {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .fact-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .page-hero {
    padding: 76px 0 84px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
