/* ── POLICY PAGE ── */
.policy-hero {
  background: var(--warm-white);
  padding: 140px 72px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--blush);
}
.policy-hero-star {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.45; pointer-events: none;
}
.policy-hero-inner { position: relative; z-index: 2; max-width: 680px; }
.policy-hero-sub {
  font-size: 13px; color: var(--muted); margin-top: 12px; font-weight: 300;
}
.policy-hero-sub a { color: var(--dusty-rose); text-decoration: none; }

.policy-wrap {
  background: white;
  padding: 80px 72px;
}
.policy-content {
  max-width: 780px;
  margin: 0 auto;
}
.policy-lead {
  font-size: 16px;
  line-height: 1.9;
  color: #4a4a5a;
  margin-bottom: 32px;
  font-weight: 300;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--blush);
}
.policy-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #5a5a6e;
  margin-bottom: 16px;
  font-weight: 300;
}
.policy-content h2 {
  font-family: 'Cormorant', serif;
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  margin: 48px 0 16px;
  padding-top: 16px;
  border-top: 1px solid var(--blush);
}
.policy-content ul {
  margin: 0 0 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.policy-content ul li {
  font-size: 15px;
  line-height: 1.8;
  color: #5a5a6e;
  font-weight: 300;
}
.policy-content a {
  color: var(--dusty-rose);
  text-decoration: none;
  border-bottom: 1px solid rgba(196,144,144,0.4);
  transition: color 0.2s;
}
.policy-content a:hover { color: var(--navy); }
.policy-back {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--blush);
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--navy);
  box-shadow: 0 -4px 30px rgba(45,61,90,0.2);
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 280px; }
.cookie-text p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  margin: 0;
}
.cookie-text strong { color: white; font-weight: 500; }
.cookie-text a { color: var(--lavender); text-decoration: none; border-bottom: 1px solid rgba(200,192,216,0.4); }
.cookie-text a:hover { color: white; }
.cookie-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-decline {
  padding: 10px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}
.cookie-decline:hover {
  border-color: white;
  color: white;
}
.cookie-accept {
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  background: var(--dusty-rose);
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}
.cookie-accept:hover { background: white; color: var(--navy); }

/* ── COOKIE SETTINGS NOTIFICATION ── */
.cookie-saved-msg {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--navy);
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 400;
  box-shadow: 0 8px 24px rgba(45,61,90,0.25);
  z-index: 1000;
  animation: fadeInOut 3s ease forwards;
}
@keyframes fadeInOut {
  0%   { opacity: 0; transform: translateY(8px); }
  15%  { opacity: 1; transform: translateY(0); }
  75%  { opacity: 1; }
  100% { opacity: 0; }
}

/* ── RESPONSIVE POLICY ── */
@media (max-width: 768px) {
  .policy-hero { padding: 120px 28px 60px; }
  .policy-wrap { padding: 60px 28px; }
  .cookie-inner { padding: 20px 24px; }
}
