/* Veldbloem Design — editorial landscape design */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #3d6b4f;
  --green-dark: #2a3d28;
  --bg: #eef2e8;
  --text: #1a1f18;
  --text-muted: #4a5548;
  --border: #c8d4bc;
  --white: #fafbf8;
  --accent-light: #d4e4c8;
}

html { scroll-behavior: smooth; }

body {
  font-family: Palatino, "Palatino Linotype", "Book Antiqua", Georgia, serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-size: 1.35rem;
  font-weight: bold;
  color: var(--green-dark);
  letter-spacing: 0.02em;
}
.logo span { color: var(--green); font-weight: normal; }

.logo-tagline {
  display: block;
  font-size: 0.75rem;
  font-weight: normal;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 0.15rem;
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

.main-nav a {
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.main-nav a:hover { color: var(--green); text-decoration: none; }

/* Hero */
.hero {
  background: var(--green-dark);
  color: var(--white);
  padding: 4rem 1.5rem;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.hero p {
  font-size: 1.15rem;
  max-width: 540px;
  opacity: 0.92;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover {
  background: #4a8262;
  text-decoration: none;
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  text-decoration: none;
  color: var(--white);
}

.btn-dark {
  background: var(--green-dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--green);
  text-decoration: none;
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  text-decoration: none;
}

/* Layout */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 3.5rem 0; }

.section-title {
  font-size: 1.75rem;
  font-weight: normal;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.section-lead {
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 2rem;
}

/* Cards with left border */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-left: 4px solid var(--green);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 1px 3px rgba(42,61,40,0.06);
}

.card h3 {
  font-size: 1.15rem;
  font-weight: normal;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.card p { color: var(--text-muted); font-size: 0.95rem; }

.card-price {
  font-size: 1.4rem;
  color: var(--green);
  margin: 0.75rem 0;
}

.card-link {
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.02em;
}

/* Page header (inner pages) */
.page-header {
  background: var(--green-dark);
  color: var(--white);
  padding: 2.5rem 1.5rem;
}

.page-header h1 {
  font-size: 2rem;
  font-weight: normal;
  max-width: 1100px;
  margin: 0 auto;
}

.page-header p {
  max-width: 1100px;
  margin: 0.75rem auto 0;
  opacity: 0.88;
  font-size: 1.05rem;
}

/* Content */
.content-block {
  max-width: 720px;
}

.content-block h2 {
  font-size: 1.35rem;
  font-weight: normal;
  color: var(--green-dark);
  margin: 2rem 0 0.75rem;
}

.content-block h3 {
  font-size: 1.1rem;
  font-weight: normal;
  color: var(--green);
  margin: 1.5rem 0 0.5rem;
}

.content-block p { margin-bottom: 1rem; color: var(--text); }

.content-block ul, .content-block ol {
  margin: 0 0 1rem 1.5rem;
  color: var(--text-muted);
}

.content-block li { margin-bottom: 0.35rem; }

/* Two column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
}

/* FAQ */
.faq-item {
  background: var(--white);
  border-left: 4px solid var(--green);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.faq-item h3 {
  font-size: 1.05rem;
  font-weight: normal;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.faq-item p { color: var(--text-muted); font-size: 0.95rem; }

/* Contact form */
.contact-form {
  background: var(--white);
  border-left: 4px solid var(--green);
  padding: 2rem;
  max-width: 560px;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.9rem;
  color: var(--green-dark);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
}

.form-group textarea { min-height: 120px; resize: vertical; }

/* Pricing table */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  margin: 1.5rem 0;
}

.price-table th,
.price-table td {
  padding: 0.85rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.price-table th {
  background: var(--green-dark);
  color: var(--white);
  font-weight: normal;
}

.price-table tr:hover td { background: var(--accent-light); }

/* Process steps */
.process-steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-steps li {
  counter-increment: step;
  background: var(--white);
  border-left: 4px solid var(--green);
  padding: 1.25rem 1.5rem 1.25rem 3.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.process-steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1.25rem;
  font-size: 1.25rem;
  color: var(--green);
  font-weight: bold;
}

.process-steps li h3 {
  font-size: 1.05rem;
  font-weight: normal;
  color: var(--green-dark);
  margin-bottom: 0.35rem;
}

.process-steps li p { color: var(--text-muted); font-size: 0.95rem; }

/* Areas list */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.area-item {
  background: var(--white);
  border-left: 3px solid var(--green);
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
}

/* Portfolio grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.portfolio-item {
  background: var(--white);
  border-left: 4px solid var(--green);
  overflow: hidden;
}

.portfolio-placeholder {
  height: 180px;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.portfolio-item .portfolio-body { padding: 1.25rem 1.5rem; }

.portfolio-item h3 {
  font-size: 1.1rem;
  font-weight: normal;
  color: var(--green-dark);
  margin-bottom: 0.35rem;
}

.portfolio-item p { font-size: 0.9rem; color: var(--text-muted); }

/* Sitemap */
.sitemap-list {
  list-style: none;
  columns: 2;
  column-gap: 2rem;
}

.sitemap-list li { margin-bottom: 0.5rem; break-inside: avoid; }

@media (max-width: 600px) {
  .sitemap-list { columns: 1; }
}

/* Legal pages */
.legal-content {
  max-width: 780px;
  padding: 2.5rem 0 4rem;
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: normal;
  color: var(--green-dark);
  margin: 2rem 0 0.75rem;
}

.legal-content h3 {
  font-size: 1.05rem;
  color: var(--green);
  margin: 1.5rem 0 0.5rem;
}

.legal-content p, .legal-content li {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.legal-content ul, .legal-content ol {
  margin: 0 0 1rem 1.5rem;
}

/* Footer */
.site-footer {
  background: var(--green-dark);
  color: rgba(250,251,248,0.85);
  padding: 3rem 1.5rem 2rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-inner h4 {
  font-size: 0.95rem;
  font-weight: normal;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.footer-inner p, .footer-inner li {
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-inner ul { list-style: none; }
.footer-inner li { margin-bottom: 0.35rem; }

.footer-inner a { color: rgba(250,251,248,0.85); }
.footer-inner a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.8rem;
  text-align: center;
  opacity: 0.7;
}

/* Utility */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

.highlight-box {
  background: var(--white);
  border-left: 4px solid var(--green);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.highlight-box p { margin: 0; color: var(--text-muted); }
