@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --cream: #fdf8f3;
  --warm: #f5ede0;
  --ink: #1f2a37;
  --mid: #4b5563;
  --light: #6b7280;
  --line: #e5dfd3;
  --accent: #2c4a3e;
  --accent-light: #3d6b57;
  --orange: #e8845a;
  --blue: #4a7a9b;
  --gold: #c9a227;
  --red: #b85555;
  --white: #ffffff;
  --shadow: 0 4px 14px rgba(31, 42, 55, 0.08);
  --shadow-hover: 0 12px 28px rgba(31, 42, 55, 0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at 12% 18%, rgba(232, 132, 90, 0.16), transparent 38%),
    radial-gradient(circle at 88% 22%, rgba(74, 122, 155, 0.14), transparent 42%),
    radial-gradient(circle at 24% 92%, rgba(90, 138, 110, 0.14), transparent 40%),
    var(--cream);
  background-attachment: fixed;
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.65;
}

a { color: var(--accent-light); }
a:hover { color: var(--accent); }

.site-header {
  background: linear-gradient(135deg, #2c4a3e 0%, #3d6b57 50%, #2c4a3e 100%);
  color: white;
  text-align: center;
  padding: 40px 24px 28px;
  position: relative;
  overflow: hidden;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.site-header .tulip {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
  position: relative;
}

.site-header .eyebrow {
  position: relative;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 0.72rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
}

.site-header h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 700;
  letter-spacing: 0.4px;
  position: relative;
}

.site-header p {
  position: relative;
  margin-top: 10px;
  opacity: 0.88;
  font-weight: 300;
}

nav {
  background: rgba(44, 74, 62, 0.96);
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px 16px 14px;
  position: sticky;
  top: 0;
  z-index: 10;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
}

nav a:hover,
nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.16);
  color: white;
}

main {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.card h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.lede {
  font-size: 1.05rem;
  color: var(--mid);
}

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 20px 0 0;
}

.fact {
  background: var(--warm);
  border-radius: 12px;
  padding: 14px 16px;
}

.fact .k {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--light);
  font-weight: 600;
  margin-bottom: 4px;
}

.fact .v {
  font-weight: 600;
  color: var(--accent);
}

.deadline {
  background: linear-gradient(135deg, #e8845a, #d46b3e);
  color: white;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.deadline strong { font-size: 1.15rem; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 12px 22px;
}

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

.btn-primary:hover { background: var(--accent-light); color: white; }

.btn-secondary {
  background: var(--warm);
  color: var(--accent);
}

.note {
  font-size: 0.88rem;
  color: var(--light);
  margin-top: 16px;
}

.pot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.pot {
  background: var(--white);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.pot h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.pot dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  font-size: 0.92rem;
}

.pot dt { color: var(--light); }
.pot dd { font-weight: 600; text-align: right; }

.bar {
  height: 8px;
  background: var(--warm);
  border-radius: 999px;
  overflow: hidden;
  margin: 12px 0 4px;
}

.bar > span {
  display: block;
  height: 100%;
  background: var(--accent-light);
  width: 0;
}

.status {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: var(--warm);
  color: var(--accent);
  border-radius: 999px;
  padding: 3px 10px;
}

.cost-table {
  width: 100%;
  border-collapse: collapse;
}

.cost-table th,
.cost-table td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
}

.cost-table th { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.8px; color: var(--light); }
.cost-table td:last-child,
.cost-table th:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.cost-table tfoot td { font-weight: 700; border-bottom: none; padding-top: 14px; }

.subtotal { color: var(--mid); }

.block-title {
  font-family: "Playfair Display", serif;
  margin: 8px 0 14px;
}

.block-intro { margin-bottom: 16px; }

.plan-table td:nth-child(3) { font-weight: 600; color: var(--accent); }
.muted { font-size: 0.78rem; color: var(--light); font-weight: 400; }

form label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin: 14px 0 6px;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="number"],
form select,
form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  color: var(--ink);
}

form textarea { min-height: 90px; resize: vertical; }

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0 8px;
  font-weight: 500;
}

.check input { margin-top: 4px; }

.check label { margin: 0; font-weight: 500; }

#potje-veld[hidden] { display: none; }

.success {
  background: #e8f4ee;
  border: 1px solid #b7d8c4;
  color: #2c7a4f;
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 16px;
}

.err {
  color: var(--red);
  font-size: 0.88rem;
  margin-top: 8px;
}

footer {
  text-align: center;
  color: var(--light);
  font-size: 0.85rem;
  padding: 8px 20px 40px;
}

@media (max-width: 640px) {
  .row-2 { grid-template-columns: 1fr; }
  .card { padding: 22px 18px; }
  .site-header { padding: 32px 16px 22px; }
}
