:root {
  --green-950: #071b12;
  --green-900: #0d2a1b;
  --green-800: #153a26;
  --green-700: #235436;
  --gold: #c8a64b;
  --gold-soft: #e8d79b;
  --brown: #765331;
  --brown-deep: #3c2919;
  --sand: #f4ecd9;
  --cream: #fffaf0;
  --ink: #182018;
  --muted: #6c6253;
  --line: rgba(24, 32, 24, 0.16);
  --radius: 8px;
  --shadow: 0 18px 60px rgba(7, 27, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--cream);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(7, 27, 18, 0.96);
  border-bottom: 1px solid rgba(232, 215, 155, 0.24);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1120px, 100%);
  min-height: 74px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--cream);
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: brightness(0) invert(1);

  padding: 4px;
}

.brand span {
  max-width: 170px;
  line-height: 1.08;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-links a {
  color: rgba(255, 250, 240, 0.86);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 9px 12px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-950);
  background: var(--gold);
}

.hero {
  min-height: 680px;
  color: var(--cream);
  background:
    linear-gradient(110deg, rgba(7, 27, 18, 0.94), rgba(13, 42, 27, 0.78) 52%, rgba(60, 41, 25, 0.78)),
    radial-gradient(circle at 75% 22%, rgba(200, 166, 75, 0.28), transparent 28%),
    url('images/cows-hero.png'),
    linear-gradient(145deg, var(--green-950), var(--brown-deep));
  background-size: cover, cover, cover, cover;
  background-position: center, center, center 58%, center;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 54px 16px 46px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.62fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 5.9rem);
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  color: var(--green-950);
}

h3 {
  font-size: 1.18rem;
}

.hero p {
  max-width: 610px;
  margin: 22px 0 0;
  font-size: clamp(1.04rem, 1.8vw, 1.24rem);
  color: rgba(255, 250, 240, 0.9);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--gold);
  color: var(--green-950);
}

.button.secondary {
  border-color: rgba(232, 215, 155, 0.58);
  color: var(--cream);
}

.button.dark {
  background: var(--green-900);
  color: var(--cream);
}

.hero-mark {
  padding: 28px;
  background: rgba(255, 250, 240, 0.92);
  border: 1px solid rgba(232, 215, 155, 0.46);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-mark img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.section {
  padding: 68px 0;
}

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

.section.dark {
  color: var(--cream);
  background:
    linear-gradient(120deg, rgba(7, 27, 18, 0.96), rgba(35, 84, 54, 0.9)),
    var(--green-900);
}

.section.dark h2,
.section.dark h3 {
  color: var(--cream);
}

.section.dark .lead,
.section.dark p {
  color: rgba(255, 250, 240, 0.82);
}

.section.dark .card {
  background: rgba(255, 250, 240, 0.08);
  border-color: rgba(232, 215, 155, 0.22);
}

.wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 16px;
}

.image-panel {
  margin: 24px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(60, 41, 25, 0);
  box-shadow: var(--shadow);
  background: var(--brown-deep);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.overview-photo img {
  aspect-ratio: 16 / 9;
}

.story-photo img {
  aspect-ratio: 16 / 10;
  object-position: center 68%;
}

.small-photo img,
.contact-photo img {
  aspect-ratio: 16 / 10;
}

.founder-card {
  margin: 28px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(60, 41, 25, 0.2);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.founder-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 18%;
}

.founder-card figcaption {
  padding: 18px;
  border-top: 5px solid var(--gold);
}

.founder-card strong,
.founder-card span {
  display: block;
}

.founder-card strong {
  color: var(--green-950);
  font-size: 1.15rem;
}

.founder-card span {
  color: var(--muted);
  margin-top: 2px;
}

.image-band {
  height: min(430px, 54vw);
  min-height: 260px;
  overflow: hidden;
  border-top: 8px solid var(--gold);
  border-bottom: 8px solid var(--gold);
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 38px;
  align-items: start;
}

.visual-split {
  align-items: center;
}

.lead {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 34px rgba(60, 41, 25, 0.08);
}

.card h3 {
  color: var(--green-900);
}

.card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.image-card {
  padding: 0;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-card div {
  padding: 22px;
}

.card.gold {
  background: #f0dfa2;
}

.card.green {
  color: var(--cream);
  background: var(--green-900);
  border-color: rgba(232, 215, 155, 0.28);
}

.card.green h3,
.card.green p {
  color: var(--cream);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 16px 18px 16px 42px;
  background: rgba(255, 250, 240, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 23px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 166, 75, 0.18);
}

.details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.detail {
  padding: 18px;
  background: rgba(255, 250, 240, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.detail strong {
  display: block;
  color: var(--green-800);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.detail span {
  display: block;
  margin-top: 5px;
}

.page-hero {
  color: var(--cream);
  background:
    linear-gradient(120deg, rgba(7, 27, 18, 0.412), rgba(60, 41, 25, 0.86)),
    var(--green-900);
  background-size: cover;
  background-position: center;
}

.service-hero {
  background:
    linear-gradient(120deg, rgba(7, 27, 18, 0.94), rgba(60, 41, 25, 0.7)),
    url('images/sheep.png'),
    var(--green-900);
  background-size: cover;
  background-position: center 48%;
}

.about-hero {
  background:
    linear-gradient(120deg, rgba(7, 27, 18, 0.95), rgba(60, 41, 25, 0.64)),
    url('images/sheep2.png'),
    var(--green-900);
  background-size: cover;
  background-position: center 56%;
}

.contact-hero {
  background:
    linear-gradient(120deg, rgba(7, 27, 18, 0.95), rgba(60, 41, 25, 0.72)),
    url('images/livestock.png'),
    var(--green-900);
  background-size: cover;
  background-position: center 58%;
}

.page-hero .wrap {
  min-height: 330px;
  padding: 62px 16px;
  display: grid;
  align-content: center;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 5rem);
}

.page-hero p {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 250, 240, 0.86);
  font-size: 1.13rem;
}

.cta-section {
  color: var(--cream);
  background:
    linear-gradient(120deg, rgba(7, 27, 18, 0.96), rgba(35, 84, 54, 0.9)),
    var(--green-900);
  text-align: center;
}

.cta-section .wrap {
  padding: 58px 16px;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.cta-section h2 {
  color: var(--cream);
}

.cta-section p {
  color: rgba(255, 250, 240, 0.86);
  max-width: 640px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}

.timeline {
  display: grid;
  gap: 14px;
  margin-top: 30px;
  counter-reset: step;
}

.timeline-item {
  counter-increment: step;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.timeline-item::before {
  content: counter(step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--gold);
  font-weight: 900;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 34px;
  align-items: start;
}

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

.compact-grid .card {
  box-shadow: none;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-item {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--cream);
}

.contact-item strong {
  display: block;
  color: var(--green-900);
}

.contact-item a,
.contact-item span,
.detail span {
  overflow-wrap: anywhere;
}

form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--green-950);
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid rgba(24, 32, 24, 0.28);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fffdf7;
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(200, 166, 75, 0.44);
  border-color: var(--green-800);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  color: rgba(255, 250, 240, 0.8);
  background:
    linear-gradient(120deg, rgba(7, 27, 18, 0.98), rgba(13, 42, 27, 0.96)),
    var(--green-950);
  padding: 54px 0 0;
}

.footer-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 16px 40px;
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(150px, 1fr));
  gap: 30px;
}

.footer-grid h2,
.footer-grid h3 {
  color: var(--cream);
}

.footer-grid h2 {
  margin-top: 14px;
  font-size: 1.55rem;
}

.footer-grid h3 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.footer-grid a,
.footer-grid span {
  display: block;
  color: rgba(255, 250, 240, 0.78);
  text-decoration: none;
  overflow-wrap: anywhere;
  margin-top: 8px;
}

.footer-grid a:hover {
  color: var(--gold-soft);
}

.footer-brand img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  padding: 4px;
}

.footer-brand p {
  max-width: 340px;
  margin: 12px 0 0;
}

.footer-bottom {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(232, 215, 155, 0.22);
  color: rgba(255, 250, 240, 0.68);
}

.footer-bottom a {
  color: var(--gold-soft);
  text-decoration: none;
}

@media (max-width: 820px) {
  .nav {
    min-height: auto;
    padding: 12px 16px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

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

  .nav-links a {
    padding: 8px 10px;
  }

  .hero-inner,
  .split,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 520px;
  }

  .hero-inner {
    padding: 44px 16px;
  }

  .hero-mark {
    max-width: 360px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 48px 0;
  }

}

@media (max-width: 520px) {
  .brand span {
    max-width: 138px;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(1.95rem, 9vw, 2.18rem);
  }

  .page-hero p {
    max-width: 330px;
    font-size: 1.02rem;
  }

  .page-hero h1 {
    max-width: 330px;
  }

  h2 {
    font-size: clamp(1.72rem, 8.2vw, 2.08rem);
  }

  .page-hero .wrap {
    min-height: 300px;
    padding: 44px 16px;
  }

  .hero {
    min-height: 500px;
  }

  .actions,
  .button {
    width: 100%;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }
}
