/* ============================================================
   SoulStones — Legal / informational pages
   (Privacy Policy, Shipping & Return Policy, Terms & Conditions)

   All three pages share one structure — dark hero + breadcrumb,
   then long-form content — so they share this one stylesheet.
   Nothing here introduces new colors, fonts, or spacing: every
   value reuses the design tokens already defined in styles.css.
   ============================================================ */

/* ----------------------------- Hero ----------------------------- */
.policy-hero {
  background: var(--black);
  color: var(--on-black);
  padding-block: clamp(56px, 9vw, 96px) clamp(36px, 6vw, 56px);
}
.policy-hero-accent {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-soft);
  margin: 0 0 10px;
}
.policy-hero-title {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  letter-spacing: -0.02em;
  color: var(--on-black);
}
.policy-hero-sub {
  margin: 14px 0 0;
  max-width: 62ch;
  color: var(--on-black-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* ----------------------------- Breadcrumb ----------------------------- */
.policy-breadcrumb-nav { background: var(--black-soft); border-bottom: 1px solid var(--hairline-on-black); }
.policy-breadcrumb-list {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  padding: 14px 0; margin: 0; font-size: 0.8125rem;
}
.policy-breadcrumb-list a { color: var(--on-black-muted); transition: color .16s var(--ease); }
.policy-breadcrumb-list a:hover { color: var(--gold); }
.policy-breadcrumb-list li[aria-current="page"] { color: var(--gold); font-weight: 600; }
.policy-breadcrumb-sep { color: var(--on-black-muted); opacity: 0.6; }

/* ----------------------------- Content ----------------------------- */
.policy-content { background: var(--bg); }
.policy-content-inner { max-width: 780px; margin-inline: auto; }

.policy-updated {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0 0 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hairline);
}

.policy-section { margin-bottom: 40px; }
.policy-section:last-child { margin-bottom: 0; }

.policy-section h2 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.policy-section h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--ink);
  margin: 20px 0 10px;
}

.policy-section p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink);
  opacity: 0.88;
  margin: 0 0 16px;
}
.policy-section p:last-child { margin-bottom: 0; }

.policy-section ul {
  margin: 0 0 16px;
  padding-left: 0;
}
.policy-section ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  opacity: 0.88;
}
.policy-section ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.policy-section ul li:last-child { margin-bottom: 0; }

.policy-section a {
  color: var(--gold-deep);
  text-decoration: underline !important;
  text-underline-offset: 2px;
}
.policy-section a:hover { color: var(--gold); }

/* Highlight callout (e.g. the free-shipping note) — reuses card tokens */
.policy-callout {
  background: var(--surface);
  border: 1px solid var(--hairline-gold);
  border-radius: var(--r-card);
  box-shadow: var(--sh-rest);
  padding: 20px 24px;
  margin: 0 0 16px;
}
.policy-callout p { margin: 0; opacity: 1; }
.policy-callout p:not(:last-child) { margin-bottom: 8px; }

/* ----------------------------- Responsive ----------------------------- */
@media (max-width: 768px) {
  .policy-section h2 { font-size: 1.3125rem; }
  .policy-section p,
  .policy-section ul li { font-size: 1rem; }
}
