/* === Schrock Custom Ag Styles === */

:root {
  --brown-dark: #1a3a1a;
  --brown-mid: #2d5a2d;
  --brown-light: #3d7a3d;
  --green-dark: #1a3a1a;
  --green-mid: #2d6a2d;
  --green-light: #4a8a4a;
  --cream: #f5f7f2;
  --cream-dark: #e8ede2;
  --gold: #d4a843;
  --gold-light: #e0b854;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --white: #ffffff;
  --red-accent: #9b2c2c;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--white);
  color: var(--gray-800);
  min-height: 100vh;
  line-height: 1.6;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════
   NAVIGATION
   ══════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(59,35,20,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav.scrolled {
  background: rgba(59,35,20,0.98);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}

.nav-brand-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--brown-dark);
}

.nav-brand-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.nav-brand-sub {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.7;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--brown-dark);
  background: var(--gold);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  margin-left: 8px;
  transition: background 0.15s;
}

.nav-cta:hover {
  background: var(--gold-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* ══════════════════════════════
   HERO
   ══════════════════════════════ */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1500595046743-cd271d694d30?w=1600&q=80') center/cover no-repeat;
  padding-top: 68px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(59,35,20,0.85) 0%, rgba(45,80,22,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 80px 24px 80px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  background: rgba(197,148,58,0.15);
  border: 1px solid rgba(197,148,58,0.3);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════
   TRUST BAR
   ══════════════════════════════ */
.trust-bar {
  background: var(--brown-dark);
  padding: 20px 0;
  border-bottom: 3px solid var(--gold);
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
}

.trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ══════════════════════════════
   SECTIONS
   ══════════════════════════════ */
.section {
  padding: 88px 0;
}

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

.section-dark {
  background: var(--brown-dark);
  color: var(--white);
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-label.center,
.section-heading.center,
.section-desc.center {
  text-align: center;
}

.section-desc.center {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  font-size: 38px;
  font-weight: 800;
  color: var(--brown-dark);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-desc {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ══════════════════════════════
   SPLIT LAYOUT
   ══════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* ══════════════════════════════
   VALUES / FEATURES GRID
   ══════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow 0.25s, transform 0.25s;
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.value-icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--green-dark);
}

.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ══════════════════════════════
   PRODUCTS / OFFERINGS
   ══════════════════════════════ */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.offering-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  transition: background 0.2s;
}

.offering-card:hover {
  background: rgba(255,255,255,0.12);
}

.offering-num {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--gold);
  color: var(--brown-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}

.offering-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.offering-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ══════════════════════════════
   ABOUT / OWNER
   ══════════════════════════════ */
.owner-section {
  display: flex;
  gap: 48px;
  align-items: center;
}

.owner-photo {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--gold);
}

.owner-photo span {
  font-size: 48px;
  font-weight: 800;
  color: var(--brown-dark);
}

.owner-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 4px;
}

.owner-role {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.owner-bio {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ══════════════════════════════
   STATS
   ══════════════════════════════ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.stat {
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ══════════════════════════════
   CTA / CONTACT
   ══════════════════════════════ */
.section-cta {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--brown-dark) 100%);
  color: var(--white);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}

.cta-info-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.cta-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  outline: none;
  background: var(--white);
  transition: border-color 0.15s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-mid);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-status {
  font-size: 14px;
  margin-top: 12px;
  text-align: center;
}

/* ══════════════════════════════
   BUTTONS
   ══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
  font-family: inherit;
}

.btn-primary {
  background: var(--gold);
  color: var(--brown-dark);
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-green {
  background: var(--green-mid);
  color: var(--white);
}

.btn-green:hover {
  background: var(--green-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.btn-full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ══════════════════════════════
   FOOTER
   ══════════════════════════════ */
.footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 32px;
  border-top: 3px solid var(--gold);
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-brand-icon {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: var(--brown-dark);
}

.footer-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.15s;
}

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

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}

.footer-concept {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.footer-concept a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}

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

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--brown-dark);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-direction: column;
    padding: 12px 24px 20px;
    gap: 4px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
    justify-content: center;
  }

  .hero {
    min-height: 520px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .trust-items {
    gap: 20px;
  }

  .trust-item span {
    font-size: 13px;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split-image {
    order: -1;
  }

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

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

  .owner-section {
    flex-direction: column;
    text-align: center;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .section-heading {
    font-size: 30px;
  }

  .section {
    padding: 56px 0;
  }

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

  .team-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ══════════════════════════════
   SERVICES GRID (8 cards)
   ══════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: all 0.25s;
}

.service-card:hover {
  border-color: var(--green-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card .service-icon {
  font-size: 2.2em;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ══════════════════════════════
   SPECIALTY (forage harvesting)
   ══════════════════════════════ */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.specialty-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.2s;
}

.specialty-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
}

.specialty-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
}

.specialty-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.specialty-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ══════════════════════════════
   TEAM GRID
   ══════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-md);
}

.team-photo span {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
}

.team-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ══════════════════════════════
   PAGE HEADER (for sub-pages)
   ══════════════════════════════ */
.page-header {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--brown-mid) 100%);
  color: #fff;
  padding: 120px 0 60px;
  text-align: center;
}

.page-title {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.page-header .section-label {
  color: var(--gold);
}

/* ══════════════════════════════
   EQUIPMENT GALLERY
   ══════════════════════════════ */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.equipment-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s;
}

.equipment-card:hover {
  transform: translateY(-4px);
}

.equipment-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.equipment-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
  padding: 20px 12px 10px;
  font-size: 13px;
  font-weight: 700;
}

/* Larger service cards for services page */
.services-grid-2 {
  grid-template-columns: repeat(2, 1fr) !important;
}

.service-card-lg {
  padding: 32px 28px !important;
  text-align: left !important;
  position: relative;
}

.service-card-lg .service-icon {
  margin-bottom: 8px;
}

.service-card-lg p {
  font-size: 14px !important;
}

.service-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .services-grid, .services-grid-2 {
    grid-template-columns: 1fr 1fr !important;
  }
  .specialty-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .equipment-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-title {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .services-grid, .services-grid-2 {
    grid-template-columns: 1fr !important;
  }
  .equipment-grid {
    grid-template-columns: 1fr;
  }
}
