:root {
  --sage-50: #f5f8f2;
  --sage-100: #e8efe2;
  --sage-300: #b9c9ad;
  --sage-600: #547255;
  --sage-700: #3f5a41;
  --text-main: #2f342f;
  --text-muted: #5c665c;
  --cream: #fcfbf8;
  --white: #ffffff;
  --border: #d8e2d1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text-main);
  background: linear-gradient(180deg, var(--sage-50), var(--cream));
  line-height: 1.6;
}

h1,
h2,
.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.2;
  margin-top: 0;
}

.container {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.site-header {
  background: rgba(252, 251, 248, 0.85);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  backdrop-filter: blur(4px);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  text-transform: lowercase;
}

.nav-link {
  text-decoration: none;
  color: var(--sage-700);
  font-weight: 600;
}

.hero {
  padding: 4.5rem 0 3rem;
  background-image: url("https://images.unsplash.com/photo-1416879595882-3373a0480b5b?auto=format&fit=crop&w=1920&q=50");
  background-size: cover;
  background-position: center 40%;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 248, 242, 0.9);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: start;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.6rem);
  margin-bottom: 1rem;
}

.hero-copy {
  max-width: 62ch;
  margin-bottom: 1.6rem;
}

.hero-card,
.about-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem;
  box-shadow: 0 8px 24px rgba(63, 90, 65, 0.08);
}

.hero-card h2,
.section h2 {
  font-size: clamp(1.65rem, 4vw, 2.2rem);
  margin-bottom: 0.75rem;
}

.hero-card ul {
  margin: 0;
  padding-left: 1.15rem;
}

.hero-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}

.section {
  padding: 2.8rem 0;
}

.services,
.quote {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 260px;
  overflow: hidden;
}

.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.photo-strip img:hover {
  transform: scale(1.03);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.gallery-item {
  margin: 0;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(63, 90, 65, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item img:hover {
  transform: scale(1.02);
  box-shadow: 0 14px 36px rgba(63, 90, 65, 0.16);
}

.about-grid,
.quote-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.6rem;
}

.about-farm-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}

.panel-title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--sage-700);
}

.quote-form {
  display: grid;
  gap: 0.9rem;
}

.quote-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.72rem;
  border: 1px solid #c6d6bc;
  border-radius: 10px;
  background: #fbfdf9;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #aac39a;
  border-color: #8aa979;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  border: none;
  border-radius: 10px;
  padding: 0.72rem 1.15rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
}

.btn-primary {
  background: var(--sage-600);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--sage-700);
}

.btn-secondary {
  color: var(--sage-700);
  background: var(--sage-100);
}

.form-status {
  min-height: 1.2rem;
  margin: 0;
  color: var(--sage-700);
}

.site-footer {
  padding: 1.2rem 0 2rem;
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 850px) {
  .hero-grid,
  .about-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .photo-strip {
    height: 160px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding-top: 2.6rem;
  }
}
