:root {
  --forest: #1f3326;
  --forest-soft: #2f4735;
  --moss: #66785f;
  --sand: #f4efe6;
  --cream: #faf7f1;
  --clay: #b77942;
  --text: #253126;
  --muted: #6d756b;
  --shadow: 0 16px 40px rgba(20, 26, 22, 0.12);
  --radius: 1.4rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
}

h1, h2, h3, h4, .navbar-brand, .hero-content h1, .image-overlay h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

img {
  max-width: 100%;
  display: block;
}

.object-fit-cover {
  object-fit: cover;
}

.custom-navbar {
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31, 51, 38, 0.08);
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--forest) !important;
  font-weight: 700;
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.nav-link {
  color: var(--forest) !important;
  font-weight: 500;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--clay) !important;
}

.btn-brand {
  background: var(--forest);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-weight: 600;
}

.btn-brand:hover {
  background: var(--forest-soft);
  color: #fff;
}

.custom-outline {
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-weight: 600;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 25, 19, 0.82) 0%, rgba(16, 25, 19, 0.58) 38%, rgba(16, 25, 19, 0.22) 100%),
    url("images/herd.jpg") center center / cover no-repeat;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(to top, var(--cream), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding-top: 6rem;
  padding-bottom: 5rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-content h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.95;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.section-block {
  padding: 6rem 0;
}

.anchor-offset {
  scroll-margin-top: 90px;
}

.section-overline {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--moss);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--forest);
  margin-bottom: 1rem;
}

.section-lead {
  color: var(--muted);
  max-width: 720px;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.intro-card,
.info-card,
.content-card,
.contact-card,
.big-image-card,
.map-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.intro-text {
  padding: 2rem;
  align-self: center;
}

.intro-text p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.8;
}

.info-card {
  padding: 2rem;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(20, 26, 22, 0.16);
}

.info-number {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(183, 121, 66, 0.12);
  color: var(--clay);
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.info-card h3,
.content-card h3,
.contact-card h2,
.big-image-card h3 {
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.info-card h3,
.content-card h3 {
  font-size: 2rem;
}

.info-card p,
.content-card p,
.contact-card p,
.footer-text,
.content-card li {
  color: var(--muted);
  line-height: 1.8;
}

.highlight-band {
  background: linear-gradient(135deg, var(--forest) 0%, #274232 100%);
  color: #fff;
  border-radius: calc(var(--radius) + 0.2rem);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.band-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  margin-bottom: 0.3rem;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.band-text {
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 600;
}

.content-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.content-card-body {
  padding: 1.75rem;
}

.content-card ul {
  padding-left: 1.2rem;
  margin-bottom: 0;
}

.big-image-card {
  position: relative;
  min-height: 500px;
}

.big-image-card img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2rem;
  color: #fff;
  background: linear-gradient(to top, rgba(16, 25, 19, 0.82), transparent);
}

.image-overlay h3 {
  font-size: 2.3rem;
  color: #fff;
}

.image-overlay p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
}

.contact-card {
  padding: 2rem;
}

.contact-row {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(31, 51, 38, 0.08);
}

.contact-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.contact-value,
.contact-value a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  padding: 2rem 0 3rem;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  color: var(--forest);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: 88vh;
    background-position: 72% center;
  }

  .intro-text {
    padding: 1.5rem;
  }

  .big-image-card,
  .big-image-card img {
    min-height: 360px;
  }
}

@media (max-width: 767.98px) {
  .hero-content h1 {
    line-height: 1;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}