:root {
  --earth-tone: #bcaa86;
  --neon-accent: #8fcf76;
  --desert-sunset: #a65b2b;
  --prairie-green: #59743d;
  --neon-blue: #098391;
  --cowboy-dark: #241c13;
  --serif-font: 'Merriweather', serif;
  --sans-font: 'Montserrat', sans-serif;
}
body {
  font-family: var(--serif-font, serif);
  margin: 0;
  background: var(--earth-tone);
  color: var(--cowboy-dark);
}
header, footer {
  background: var(--prairie-green);
  color: #fff;
  padding: 1.5em 0;
  text-align: center;
}
nav {
  margin-top: 1em;
}
nav a {
  color: var(--neon-accent);
  text-decoration: none;
  font-family: var(--sans-font, sans-serif);
  font-weight: 700;
  margin: 0 1em;
  text-shadow: 0 0 8px var(--cowboy-dark);
  filter: brightness(1.1) contrast(0.93);
}
.hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--earth-tone) 70%, var(--neon-blue) 90%);
  padding: 2em 1em;
  border-bottom: 6px solid var(--neon-accent);
  gap: 2.5em;
  min-height: 60vh;
  box-sizing: border-box;
}
.hero-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 68vh;
  max-height: 400px;
  min-height: 220px;
}
.hero-logo img {
  height: 68vh;
  min-height: 220px;
  max-height: 400px;
  max-width: 90vw;
  width: auto;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(54,42,27,0.13);
  background: #fff4;
  filter: brightness(0.83) contrast(1.1);
  object-fit: contain;
}
.hero-content {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 240px;
  max-width: 500px;
}
.hero-title {
  font-size: 2.5em;
  margin: 0.2em 0;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--desert-sunset);
  text-shadow: 2px 2px var(--neon-accent), 0 0 15px var(--cowboy-dark);
}
.hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 1em;
  color: var(--cowboy-dark);
}
.cta-btn {
  display: inline-block;
  padding: 0.8em 1.5em;
  font-size: 1.1em;
  color: var(--cowboy-dark);
  background: var(--neon-accent);
  border: none;
  border-radius: 5px;
  font-family: var(--sans-font, sans-serif);
  font-weight: bold;
  margin-top: 1.2em;
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 10px 2px var(--neon-accent), 0 0 2px 0 #000a;
  filter: brightness(1.07);
}
.cta-btn:hover {
  background: var(--neon-blue);
  color: #fff;
  box-shadow: 0 0 20px 4px var(--neon-blue);
}
.values, .products {
  padding: 2em 1em;
  background: #fff;
  color: var(--cowboy-dark);
  max-width: 900px;
  margin: 2em auto;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(76, 114, 29, 0.05);
}
.values h2, .products h2 {
  font-size: 1.7em;
  color: var(--prairie-green);
  text-align: center;
  margin-bottom: 1em;
  text-shadow: 0 0 8px var(--neon-blue);
}
.value-list, .product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
}
.value-item, .product-item {
  flex: 1 1 250px;
  min-width: 220px;
  background: var(--earth-tone);
  border-left: 4px solid var(--neon-accent);
  border-radius: 7px;
  padding: 1.2em;
  margin-bottom: 1em;
  box-shadow: 0 2px 8px rgba(54, 42, 27, 0.07);
  filter: brightness(0.95) contrast(0.88);
}
@media (max-width: 900px) {
  .hero { flex-direction: column; gap: 1em; text-align: center; }
  .hero-logo, .hero-content { align-items: center; justify-content: center; width: 100%; }
  .hero-content { align-items: center; max-width: 98vw; }
  .hero-logo {
    height: auto;
    max-height: 256px;
    margin-bottom: 0.8em;
  }
  .hero-logo img {
    height: 32vw;
    max-height: 256px;
    min-height: 112px;
    border-radius: 10px;
  }
  .value-list, .product-list { flex-direction: column; gap: 0; }
}
footer {
  font-size: 0.93em;
  margin-top: 2em;
  background: var(--cowboy-dark);
  color: var(--neon-accent);
  padding: 1em 0;
  text-shadow: 0 0 6px var(--neon-blue);
  filter: brightness(1.08) contrast(0.96);
}
