/* ============================================================
   POLICY PAGES — Terms, Privacy, Cookie Policy
   ============================================================ */

.policy-hero {
  padding: calc(var(--nav-height) + 4rem) 0 3rem;
  background: var(--black-soft);
  border-bottom: 1px solid rgba(202, 138, 4, 0.2);
}

.policy-hero .section-label {
  display: block;
  margin-bottom: 0.75rem;
}

.policy-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 0.5rem;
}

.policy-hero p {
  color: var(--stone-light);
  font-size: 0.875rem;
}

.policy-body {
  padding: 5rem 0;
}

.policy-container {
  max-width: 780px;
}

.policy-container h2 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--gold);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(202, 138, 4, 0.2);
}

.policy-container h3 {
  font-size: 1.1rem;
  color: var(--cream);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.policy-container p {
  color: var(--stone-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-container ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-container ul li {
  color: var(--stone-light);
  margin-bottom: 0.5rem;
  line-height: 1.75;
}

.policy-container a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-container a:hover {
  color: var(--gold-light);
}

/* Cookie table */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.85rem;
}

.cookie-table th {
  text-align: left;
  padding: 0.6rem 0.75rem;
  background: var(--black-mid);
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-table td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--stone-light);
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

.cookie-manage-btn-wrap {
  margin-top: 2.5rem;
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--black-soft);
  border-top: 1px solid rgba(202, 138, 4, 0.3);
  padding: 1.25rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 260px;
  font-size: 0.85rem;
  color: var(--stone-light);
  line-height: 1.6;
}

.cookie-banner-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn-accept {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 0.6rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}

.cookie-btn-accept:hover {
  background: var(--gold-light);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--stone-light);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.6rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.cookie-btn-decline:hover {
  border-color: var(--stone-light);
  color: var(--cream);
}

/* ============================================================
   FOOTER BOTTOM — updated layout
   ============================================================ */

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
}

.footer-bottom-links a {
  color: var(--stone-light);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

.footer-bottom-links span {
  color: var(--stone);
}

.footer-powered {
  font-size: 0.75rem !important;
  color: var(--stone) !important;
  text-align: right;
  white-space: nowrap;
}

.footer-powered a {
  color: var(--stone-light);
  transition: color var(--transition);
}

.footer-powered a:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .footer-powered {
    text-align: left !important;
    white-space: normal !important;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
