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

:root {
  --pd-green-dark: #163d2b;
  --pd-green: #1f4a35;
  --pd-green-mid: #2f6b4a;
  --pd-green-light: #6bb98d;
  --pd-mint: #d9f0e2;
  --text-dark: #1c231f;
  --text-muted: #5b6660;
  --radius: 18px;
}

html, body {
  height: 100%;
  overflow: hidden; /* the "page" is a static capture; prevents unwanted scrolling */
  font-family: 'Poppins', sans-serif;
  background: var(--pd-green-dark);
}

/* Screen-reader / SEO only text, visually hidden */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ===== Background (capture of the real page) ===== */
.bg-wrapper {
  position: fixed;
  inset: 0;
  z-index: 0;
}
.bg-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: blur(4px) brightness(0.6) saturate(1.05);
  transform: scale(1.02);
}

/* ===== Dim overlay ===== */
.dim-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 26, 18, 0.35), rgba(10, 26, 18, 0.55));
}

/* ===== Cookie modal ===== */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: pointer; /* the entire modal area leads to the offer */
}

.cookie-card {
  position: relative;
  background: #ffffff;
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius);
  padding: 40px 34px 30px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(6, 20, 13, 0.45);
  animation: pop-in 0.35s ease;
  overflow: hidden;
}

@keyframes pop-in {
  from { transform: translateY(14px) scale(0.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.cookie-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--pd-green-dark), var(--pd-green-mid), var(--pd-green-light));
}

.cookie-card h2 {
  color: var(--pd-green-dark);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cookie-text {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 26px;
}
.cookie-text strong { color: var(--pd-green-dark); }

.cookie-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 18px;
}

.btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn:hover { transform: translateY(-2px); }

.btn--allow {
  background: linear-gradient(135deg, var(--pd-green-mid), var(--pd-green-dark));
  color: #fff;
  box-shadow: 0 10px 22px rgba(31, 74, 53, 0.4);
}
.btn--allow:hover {
  box-shadow: 0 14px 26px rgba(31, 74, 53, 0.5);
}

.btn--close {
  background: var(--pd-mint);
  color: var(--pd-green-dark);
}
.btn--close:hover {
  background: #c7e8d4;
}

.cookie-footnote {
  font-size: 0.78rem;
  color: #9aa5a0;
  border-top: 1px solid #eef1ef;
  padding-top: 14px;
}

/* ===== No-JS fallback ===== */
.noscript-banner {
  position: fixed;
  inset: 0;
  z-index: 10;
  background: var(--pd-green-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  font-size: 1.05rem;
}
.noscript-banner a {
  color: var(--pd-green-light);
  font-weight: 700;
  text-decoration: underline;
  margin-left: 6px;
}

/* ===== Responsive ===== */
@media (max-width: 520px) {
  .cookie-card { padding: 32px 22px 24px; }
  .cookie-card h2 { font-size: 1.25rem; }
  .cookie-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

@media (max-height: 480px) {
  .cookie-card { padding: 24px 22px 18px; }
  .cookie-text { margin-bottom: 16px; }
}
