:root {
  --brand-dark-blue: #344352;
  --brand-beige: #f5eee6;
  --brand-tan: #d5b38a;
  --brand-gold: #d08926;
  --brand-dark: #2e1e19;
  --text-muted: #6b7280;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--brand-beige);
  color: var(--brand-dark);
  line-height: 1.65;
}

a {
  color: var(--brand-gold);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Header */
header {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.site-title {
  display: inline-block;
  padding: 1rem 0;
  font-weight: 700;
  color: var(--brand-dark-blue);
  font-size: 1.25rem;
  text-decoration: none;
}

/* Hero */
.hero-bar {
  background: var(--brand-dark-blue);
  color: #fff;
  padding: 2rem 1.25rem;
  text-align: left;
}
.hero-bar h1 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
}

/* Main card */
main {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  max-width: 1100px;
  margin: 1.5rem auto 2rem auto;
  padding: 2rem 2rem;
}
h2 {
  color: var(--brand-dark-blue);
  font-size: 1.25rem;
  margin-top: 1.25rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
}
p,
ul {
  margin-top: 0.2rem;
  margin-bottom: 1rem;
}
.meta {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0.5rem 0 1.25rem;
}

/* Footer */
footer {
  background: var(--brand-dark);
  color: #fff;
  padding: 1.25rem 0;
  font-size: 0.95rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.footer-links a {
  color: var(--brand-tan);
}
.footer-links a:hover {
  text-decoration: underline;
}

/* Cookie banner (site-wide) */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none; /* toggled via JS */
  background: #344352;
  color: #fff;
  padding: 14px 16px;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.15);
  font: 14px/1.45 "Poppins", system-ui, sans-serif;
}
.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}
.cookie-banner p {
  margin: 0;
}
.cookie-banner__actions {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-btn {
  border: 0;
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 600;
  cursor: pointer;
}
.cookie-btn--accept {
  background: #d08926;
  color: #fff;
}
.cookie-btn--reject {
  background: #566678;
  color: #fff;
}
.cookie-link {
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 560px) {
  .cookie-banner__inner {
    grid-template-columns: 1fr;
  }
}
