/* ── FOOTER ──────────────────────────────────────────────────── */
footer { background: #1C2B3A; border-top: 1px solid rgba(255,255,255,.06); }
.footer-top { max-width: 1280px; margin: 0 auto; padding: 32px 40px 28px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; align-items: start; }
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.footer-logo-img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.footer-name { font-family: 'Cormorant Garamond', serif; font-size: 13px; color: #fff; line-height: 1.3; font-weight: 600; }
.footer-desc { font-size: 13px; color: rgba(243,239,234,.6); line-height: 1.7; margin-bottom: 20px; max-width: 300px; }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: #E8A838; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 13px; color: rgba(243,239,234,.55); transition: color .18s; text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); }
.footer-bottom-inner { max-width: 1280px; margin: 0 auto; padding: 20px 40px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer-bottom p { font-size: 12px; color: rgba(243,239,234,.38); }
.footer-bottom p a { color: #E8915F; }
.footer-badges { display: flex; align-items: center; gap: 10px; }
.footer-badge { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: 7px; padding: 5px 11px; font-size: 10.5px; color: rgba(243,239,234,.38); font-weight: 600; letter-spacing: .4px; display: flex; align-items: center; gap: 5px; }

/* ── MOBILE FOOTER ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px;
    padding: 32px 20px 24px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-desc { max-width: 100%; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr !important; }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
  }
  .footer-badges { flex-wrap: wrap; }
}

/* ── POLICY MODALS ───────────────────────────────────────────── */
.policy-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 16, 23, .72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.policy-backdrop[hidden] { display: none; }

.policy-panel {
  background: #1C2B3A;
  border: 1px solid rgba(232,168,56,.18);
  border-radius: 16px;
  width: 100%;
  max-width: 680px;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
  animation: fadeUp .25s ease both;
}

.policy-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 32px 20px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}

.policy-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #E8A838;
  margin-bottom: 6px;
}

.policy-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.policy-close {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  color: rgba(243,239,234,.65);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  flex-shrink: 0;
  transition: background .15s, color .15s;
}
.policy-close:hover { background: rgba(255,255,255,.12); color: #fff; }

.policy-body {
  overflow-y: auto;
  padding: 28px 32px;
  flex: 1;
  color: rgba(243,239,234,.78);
  font-size: 14px;
  line-height: 1.75;
  scrollbar-width: thin;
  scrollbar-color: rgba(232,168,56,.3) transparent;
}

.policy-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 24px 0 8px;
}
.policy-body h3:first-child { margin-top: 0; }

.policy-body p { margin: 0 0 12px; }
.policy-body ul { margin: 0 0 12px; padding-left: 20px; }
.policy-body li { margin-bottom: 6px; }
.policy-body a { color: #E8A838; text-decoration: underline; }
.policy-body a:hover { color: #F2BC45; }

.policy-footer {
  padding: 20px 32px 24px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
}

.policy-close-btn {
  background: rgba(232,168,56,.12);
  border: 1px solid rgba(232,168,56,.32);
  color: #E8A838;
  padding: 10px 28px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.policy-close-btn:hover { background: rgba(232,168,56,.2); border-color: rgba(232,168,56,.5); }

@media (max-width: 600px) {
  .policy-panel { border-radius: 12px; max-height: 90vh; }
  .policy-header { padding: 20px 20px 16px; }
  .policy-body { padding: 20px; }
  .policy-footer { padding: 16px 20px 20px; }
  .policy-title { font-size: 22px; }
}
