:root {
  --bg: #fbfaf8;
  --accent: #5b7a46;
  --muted: #6b6b6b;
  --card: #ffffff;
  --radius: 14px;
  --text: #25302b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: var(--text);
  background: var(--bg);
}

/* ---------- HEADER ---------- */
.header {
background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
  url('images/appleorchard.png') center center / cover no-repeat;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.header .inner {
  max-width: 900px;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  border-radius: 12px;
}

.site-title {
  font-size: 2rem;
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.site-sub {
  margin: 10px 0 0;
  font-weight: 400;
  opacity: 0.95;
}

/* ---------- NAV ---------- */
nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
  flex-wrap: wrap;
}

nav a {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 8px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

nav a:hover {
  opacity: 0.95;
  transform: translateY(-2px);
}

/* ---------- MAIN CONTENT ---------- */
.container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 16px;
}

.card {
  background: var(--card);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(30, 30, 30, 0.06);
  margin-bottom: 24px;
}

h2 {
  margin-top: 0;
}

.lead {
  color: var(--muted);
  margin-top: 6px;
}

.note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

/* ---------- ASSORTIMENT LIST ---------- */
.spec-list {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
}

.spec-item {
  padding: 16px 0;
  border-bottom: 1px dashed #ddd;
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-name {
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 8px;
  color: var(--accent);
}

/* ---------- FORM ---------- */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: linear-gradient(180deg, #fff, #faf8f6);
  font-family: inherit;
  font-size: 15px;
}

button.primary {
  background: var(--accent);
  color: white;
  padding: 10px 14px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

button.primary:hover {
  background: #476135;
}

/* ---------- FOOTER ---------- */
.footer {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  padding: 22px 0;
  background: #f4f2ee;
  margin-top: 40px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 720px) {
  .site-title {
    font-size: 1.6rem;
  }
  .header {
    min-height: 65vh;
    background-position: center top;
    padding: 20px 10px;
  }
  .card {
    padding: 18px;
  }
}