:root {
  --green: #223c24;
  --green-2: #36583a;
  --dark: #151713;
  --charcoal: #2b2d29;
  --cream: #f6f3eb;
  --paper: #fffdf8;
  --line: rgba(34, 60, 36, 0.18);
  --shadow: 0 18px 45px rgba(21, 23, 19, 0.18);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark);
  background: var(--paper);
  line-height: 1.55;
}

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

a { color: inherit; }

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  margin: 0;
}

p { margin: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
  flex: 0 0 auto;
}

.brand-text strong {
  display: block;
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
  letter-spacing: -0.04em;
}

.brand-text span {
  display: block;
  color: var(--green);
  font-weight: 700;
  margin-top: 2px;
}

nav {
  display: flex;
  gap: clamp(16px, 3vw, 40px);
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

nav a:hover { color: var(--green-2); }

.hero {
  min-height: 690px;
  display: grid;
  align-items: center;
  padding: clamp(36px, 6vw, 78px);
  background:
    linear-gradient(90deg, rgba(255,253,248,.96) 0%, rgba(255,253,248,.90) 38%, rgba(255,253,248,.22) 67%, rgba(255,253,248,0) 100%),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center 48%;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  color: var(--green);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  letter-spacing: -0.055em;
  max-width: 780px;
}

.lead {
  color: var(--green);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 800;
  margin-top: 20px;
}

.support {
  max-width: 560px;
  font-size: 1.04rem;
  margin-top: 16px;
}

.button-row,
.button-column {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button-column {
  flex-direction: column;
  max-width: 260px;
}

.button {
  min-width: 130px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 9px;
  font-weight: 900;
  text-decoration: none;
  border: 2px solid var(--green);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(21, 23, 19, 0.16);
}

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

.button.secondary {
  background: rgba(255,255,255,.75);
  color: var(--green);
}

.location-line {
  margin-top: 22px;
  max-width: 560px;
  font-weight: 700;
  color: var(--charcoal);
}

.location-line::before {
  content: "●";
  color: var(--green);
  margin-right: 8px;
}

.section {
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 72px);
}

.section-heading {
  text-align: center;
  margin-bottom: 28px;
}

.section-heading h2 {
  color: var(--green);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.card-grid,
.service-grid,
.steps {
  max-width: 1180px;
  margin: 0 auto;
}

.card-grid.six {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 14px;
}

.mini-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 14px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(21, 23, 19, 0.06);
}

.icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  border: 2px solid var(--green);
  border-radius: 14px;
  color: var(--green);
  font-weight: 900;
  font-size: 1.55rem;
}

.mini-card h3 {
  font-family: inherit;
  font-size: .98rem;
  line-height: 1.25;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  position: relative;
  padding: 28px 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(21, 23, 19, 0.05);
}

.step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-weight: 900;
}

.step h3 {
  font-family: inherit;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.trust-box {
  max-width: 1180px;
  margin: 10px auto 60px;
  padding: clamp(26px, 4vw, 42px);
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #fffdf8, #eff3eb);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 3px solid var(--green);
  border-radius: 22px;
  color: var(--green);
  font-size: 2.5rem;
  font-weight: 900;
}

.trust-box h2 {
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  margin-bottom: 10px;
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) 1.6fr;
  align-items: stretch;
  background: var(--green);
  color: white;
}

.feature-copy {
  padding: clamp(38px, 6vw, 74px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-copy .eyebrow { color: #d6e0d2; }

.feature-copy h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  margin-bottom: 18px;
}

.feature-copy p:not(.eyebrow) {
  font-size: 1.1rem;
  max-width: 430px;
}

.feature-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 390px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(21, 23, 19, 0.05);
}

.service-card h3 {
  font-family: inherit;
  color: var(--green);
  font-size: 1.12rem;
  margin-bottom: 9px;
}

.visual-strip {
  padding-top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.visual-strip img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.visual-strip img.tractor-photo {
  object-position: center 82%;
}


.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
}

.contact-image {
  min-height: 520px;
  background: url("images/vineyard.jpg") center/cover;
}

.contact-card {
  padding: clamp(38px, 6vw, 78px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card h2 {
  font-size: clamp(2rem, 3.7vw, 3.6rem);
  margin-bottom: 16px;
}

.contact-card ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.contact-line {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.disclaimer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px clamp(18px, 5vw, 72px);
  color: #4d504b;
  font-size: .95rem;
}

footer {
  padding: 34px clamp(18px, 5vw, 72px);
  background: var(--green);
  color: white;
}

footer strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

footer p {
  margin-top: 6px;
  color: rgba(255,255,255,.82);
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
    padding-bottom: 52px;
    background:
      linear-gradient(180deg, rgba(255,253,248,.96) 0%, rgba(255,253,248,.86) 60%, rgba(255,253,248,.4) 100%),
      url("images/hero.jpg");
    background-size: cover;
    background-position: center;
  }

  .card-grid.six,
  .steps,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-panel,
  .contact-section,
  .visual-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .brand-logo {
    width: 70px;
    height: 70px;
  }

  .brand-text strong {
    font-size: 1.35rem;
  }

  nav {
    font-size: .92rem;
    gap: 12px;
  }

  .button-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .card-grid.six,
  .steps,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .trust-box {
    grid-template-columns: 1fr;
  }

  .contact-image {
    min-height: 280px;
  }

  .visual-strip img {
    height: 250px;
  }
}


.featured-service {
  border-color: rgba(47, 79, 49, 0.26);
}
