:root {
  --forest: #173d2c;
  --forest-deep: #0f2c20;
  --leaf: #92ad51;
  --leaf-light: #dce6bb;
  --cream: #f4f1e8;
  --paper: #fbfaf6;
  --ink: #1e2822;
  --muted: #647068;
  --line: #d8dcd5;
  --white: #fff;
  --container: 1180px;
  --radius: 4px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--forest-deep);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  border-bottom: 1px solid rgb(255 255 255 / 24%);
}

.nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
}

.brand {
  display: inline-flex;
  width: fit-content;
  text-decoration: none;
}

.brand img {
  width: 245px;
  height: auto;
  filter: brightness(0) invert(1);
}

.main-nav {
  display: flex;
  gap: 36px;
}

.main-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: .04em;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border: 1px solid var(--forest);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--forest);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .025em;
  line-height: 1.2;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.button:hover,
.button:focus-visible {
  color: var(--forest);
  background: var(--white);
  transform: translateY(-2px);
}

.button-small {
  justify-self: end;
  min-height: 44px;
  padding-inline: 18px;
  border-color: rgb(255 255 255 / 48%);
  background: transparent;
}

.button-light {
  color: var(--forest-deep);
  border-color: var(--white);
  background: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--white);
  border-color: var(--white);
  background: transparent;
}

.hero {
  position: relative;
  display: flex;
  min-height: 760px;
  color: var(--white);
  background: var(--forest-deep);
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-photo {
  background: url("assets/images/landscape.jpg") center 42% / cover no-repeat;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgb(8 31 21 / 83%) 0%, rgb(8 31 21 / 52%) 44%, rgb(8 31 21 / 7%) 78%),
    linear-gradient(0deg, rgb(8 31 21 / 38%), transparent 48%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 180px;
  padding-bottom: 76px;
}

.hero-copy {
  width: min(760px, 72%);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--leaf-light);
}

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

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

h1 {
  max-width: 740px;
  margin-bottom: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7.6vw, 112px);
  font-weight: 400;
  letter-spacing: -.055em;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 38px;
  color: rgb(255 255 255 / 86%);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.text-link {
  font-size: 14px;
  font-weight: 700;
  text-underline-offset: 5px;
}

.light-link {
  color: var(--white);
}

.light-link span {
  display: inline-block;
  margin-left: 8px;
}

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0 0 24px;
  border-top: 1px solid rgb(255 255 255 / 45%);
}

.hero-note-number {
  color: var(--leaf-light);
  font-size: 12px;
  font-weight: 750;
}

.hero-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.section {
  padding-block: 120px;
}

.intro {
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

h2 {
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 400;
  letter-spacing: -.045em;
}

.intro-copy {
  padding-top: 35px;
}

.intro-copy > p {
  max-width: 600px;
  margin-bottom: 22px;
  color: #47534b;
  font-size: 20px;
}

.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 38px;
}

.principles span {
  padding: 8px 12px;
  border: 1px solid #cdd2c8;
  border-radius: 100px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}

.services {
  background: var(--paper);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}

.section-heading h2 {
  margin: 0;
}

.section-heading > p {
  width: min(430px, 42%);
  margin-bottom: 8px;
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 560px;
  padding: 42px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.service-featured {
  color: var(--white);
  background: var(--forest);
}

.service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 70px;
}

.service-number {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .12em;
}

.service-featured .service-number {
  color: var(--leaf-light);
}

.service-top svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: var(--forest);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.service-featured svg {
  stroke: var(--leaf-light);
}

.service-card h3 {
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -.025em;
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
}

.service-featured p {
  color: rgb(255 255 255 / 75%);
}

.image-story {
  display: grid;
  grid-template-columns: 1.6fr .9fr;
  grid-template-rows: 260px 260px;
  gap: 8px;
  padding: 8px;
  background: var(--paper);
}

.image-main {
  grid-row: 1 / 3;
  min-height: 520px;
  background: url("assets/images/tractor.jpg") center / cover no-repeat;
}

.image-side {
  background: url("assets/images/cattle.jpg") center / cover no-repeat;
}

.image-story blockquote {
  display: flex;
  align-items: flex-end;
  margin: 0;
  padding: 38px;
  color: var(--forest-deep);
  background: var(--leaf-light);
}

.image-story blockquote p {
  max-width: 460px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.5vw, 38px);
  line-height: 1.2;
  letter-spacing: -.025em;
}

.details {
  background: var(--cream);
}

.details-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 110px;
}

.details-heading {
  position: sticky;
  top: 50px;
  align-self: start;
}

.details-heading > p:last-child {
  max-width: 420px;
  color: var(--muted);
}

.detail-list {
  border-top: 1px solid #cbd0c8;
}

.detail-list article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  padding-block: 38px;
  border-bottom: 1px solid #cbd0c8;
}

.detail-list article > span {
  color: var(--leaf);
  font-size: 12px;
  font-weight: 750;
}

.detail-list h3 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -.02em;
}

.detail-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.contact {
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 100px;
  align-items: center;
}

.contact-copy h2 {
  max-width: 720px;
  font-size: clamp(48px, 6vw, 82px);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 34px;
  color: rgb(255 255 255 / 70%);
  font-size: 19px;
}

.contact-card {
  position: relative;
  padding: 48px;
  color: var(--ink);
  background: var(--cream);
}

.contact-card::before {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 72px;
  height: 72px;
  border: 1px solid var(--leaf);
  content: "";
}

.contact-label {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
}

.contact-card > a {
  display: block;
  width: fit-content;
  color: var(--forest);
  font-size: 15px;
  font-weight: 700;
  text-underline-offset: 4px;
}

.contact-card hr {
  margin: 34px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.contact-card address,
.company-id {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
}

.company-id {
  margin: 18px 0 0;
}

.site-footer {
  padding-block: 36px;
  color: var(--muted);
  background: #0b2118;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  align-items: center;
  gap: 30px;
}

.footer-brand img {
  width: 190px;
  opacity: .75;
}

.site-footer p {
  margin: 0;
  font-size: 12px;
}

.site-footer p:last-child {
  text-align: right;
}

@media (max-width: 980px) {
  .nav-wrap {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 700px;
  }

  .hero-note {
    display: none;
  }

  .hero-copy {
    width: min(760px, 90%);
  }

  .intro-grid,
  .details-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .intro-copy {
    padding-top: 0;
  }

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

  .service-card {
    min-height: 0;
  }

  .service-top {
    margin-bottom: 45px;
  }

  .details-heading {
    position: static;
  }

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

  .site-footer p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .nav-wrap {
    min-height: 74px;
  }

  .brand img {
    width: 184px;
  }

  .button-small {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-photo {
    background-position: 63% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgb(8 31 21 / 88%), rgb(8 31 21 / 34%));
  }

  .hero-inner {
    align-items: flex-end;
    padding-top: 130px;
    padding-bottom: 50px;
  }

  .hero-copy {
    width: 100%;
  }

  h1 {
    font-size: clamp(54px, 17vw, 78px);
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .section {
    padding-block: 80px;
  }

  h2 {
    font-size: 44px;
  }

  .intro-grid {
    gap: 28px;
  }

  .intro-copy > p {
    font-size: 18px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 38px;
  }

  .section-heading > p {
    width: 100%;
  }

  .service-card {
    padding: 34px 25px;
  }

  .service-card h3 {
    font-size: 30px;
  }

  .image-story {
    grid-template-columns: 1fr;
    grid-template-rows: 360px 240px auto;
  }

  .image-main {
    grid-row: auto;
    min-height: 0;
  }

  .image-story blockquote {
    padding: 30px 24px;
  }

  .detail-list article {
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }

  .contact-grid {
    gap: 45px;
  }

  .contact-card {
    padding: 32px 24px;
  }

  .contact-card::before {
    display: none;
  }

  .contact-card > a {
    overflow-wrap: anywhere;
  }

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

  .site-footer p:last-child {
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
