/* ═══════════════════════════════════════════════
   PRIVACY POLICY & TERMS OF SERVICE — privacy-policy.css
═══════════════════════════════════════════════ */

/* ─── HERO ─── */
.policy-hero {
  background: var(--forest);
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.policy-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(232,185,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.policy-hero-inner {
  position: relative;
  z-index: 1;
}

.policy-meta {
  font-size: 0.85rem;
  color: rgba(253,250,243,0.55);
  margin-top: 0.75rem;
}

/* ─── TABS ─── */
.policy-tabs {
  background: var(--cream-dark);
  border-bottom: 1px solid rgba(62,22,106,0.10);
  position: sticky;
  top: 68px;
  z-index: 50;
}

.policy-tabs-inner {
  display: flex;
}

.tab-btn {
  flex: 1;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  text-align: center;
}

.tab-btn:hover { color: var(--forest); }

.tab-btn.active {
  color: var(--forest);
  border-bottom-color: var(--gold-dark);
}

/* ─── BODY ─── */
.policy-body {
  background: var(--cream);
  padding: 4rem 0 6rem;
}

.policy-panel { display: none; }
.policy-panel.active { display: block; }

/* ─── CONTENT ─── */
.policy-content {
  max-width: 760px;
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--forest-mid);
  margin-bottom: 2.5rem;
  transition: color 0.2s;
}

.back-link:hover { color: var(--forest); }

.doc-title-block {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(62,22,106,0.10);
}

.doc-company {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.doc-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.doc-site {
  font-size: 0.88rem;
  color: var(--muted);
}

.doc-effective {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.4rem;
  font-style: italic;
}

.policy-content h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest);
  margin: 2.5rem 0 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(62,22,106,0.08);
}

.policy-content h3 {
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--forest-mid);
  margin: 1.75rem 0 0.5rem;
}

.policy-content p {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.85;
  margin-bottom: 1rem;
}

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

.policy-content ul li {
  font-size: 0.93rem;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 0.35rem;
}

.caps-block {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.8;
  background: rgba(62,22,106,0.04);
  border-left: 3px solid var(--gold-dark);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 1rem;
}

.contact-box {
  background: var(--cream-dark);
  border: 1px solid rgba(62,22,106,0.10);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  margin-top: 1rem;
  font-size: 0.93rem;
  color: var(--charcoal);
  line-height: 1.9;
}

.contact-box a {
  color: var(--forest-mid);
  font-weight: 500;
  text-decoration: underline;
}

.inline-link {
  color: var(--forest-mid);
  font-weight: 500;
  text-decoration: underline;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .policy-hero { padding: 6rem 0 3rem; }
  .tab-btn { font-size: 0.82rem; padding: 0.9rem 0.75rem; }
  .doc-title { font-size: 1.6rem; }
}
