/* ============================================================
   Policy / Legal Page Styles
   Used by: terms.html, privacy.html, refunds.html, ambassador-terms.html
   ============================================================ */

/* HERO */
.policy-hero {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--cream);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.policy-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(217, 175, 77, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(217, 175, 77, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.policy-hero-inner {
  max-width: 820px;
  position: relative; z-index: 1;
}
.policy-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(217, 175, 77, 0.3);
}
.policy-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(40px, 6vw, 64px);
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.policy-title em {
  font-style: italic;
  color: var(--gold);
}
.policy-meta {
  font-size: 13px;
  color: rgba(248, 245, 240, 0.6);
  letter-spacing: 0.04em;
}

/* BODY */
.policy-body {
  background: var(--cream);
  padding: 100px 0 140px;
}
.policy-body-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 40px;
}
.policy-body h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--navy);
  margin: 64px 0 20px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.policy-body h2:first-of-type {
  margin-top: 0;
}
.policy-body h3 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  margin: 32px 0 12px;
  letter-spacing: -0.005em;
}
.policy-body p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 20px;
}
.policy-body ul,
.policy-body ol {
  margin: 0 0 20px 0;
  padding-left: 0;
  list-style: none;
}
.policy-body ul li,
.policy-body ol li {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}
.policy-body ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
  top: 4px;
}
.policy-body ol {
  counter-reset: poly-counter;
}
.policy-body ol li::before {
  counter-increment: poly-counter;
  content: counter(poly-counter, lower-roman) '.';
  position: absolute;
  left: 0;
  color: var(--gold-deep);
  font-weight: 600;
  font-size: 13px;
  font-style: italic;
}
.policy-body strong { color: var(--navy); font-weight: 600; }
.policy-body em { font-style: italic; color: var(--gold-deep); }
.policy-body a {
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(217, 175, 77, 0.3);
  transition: border-color 0.3s ease;
}
.policy-body a:hover { border-bottom-color: var(--gold); }
.policy-body hr {
  border: none;
  border-top: 1px solid var(--hairline);
  margin: 56px 0;
}

/* CALLOUT */
.policy-callout {
  background: var(--cream-deep);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 0 4px 4px 0;
}
.policy-callout p:last-child { margin-bottom: 0; }

/* RELATED LINKS */
.policy-related {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid var(--hairline);
}
.policy-related-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 40px;
}
.policy-related h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 24px;
}
.policy-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.policy-related-link {
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 3px;
  padding: 18px 20px;
  display: block;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--hairline);
}
.policy-related-link:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.policy-related-label {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 6px;
}
.policy-related-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
}

@media (max-width: 720px) {
  .policy-hero { padding: 100px 0 70px; }
  .policy-body { padding: 60px 0 100px; }
  .policy-body-inner { padding: 0 24px; }
  .policy-related-inner { padding: 0 24px; }
  .policy-related-grid { grid-template-columns: 1fr; }
}
