/* ═══════════════════════════════════════════════════════
   PRIVACY POLICY PAGE — Granite Bay Brewing Co.
   ═══════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════
   PAGE HERO
   ═══════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: clamp(10rem, 18vw, 14rem) var(--gutter) clamp(5rem, 10vw, 8rem);
  background: var(--color-bg);
  overflow: hidden;
  text-align: center;
}
.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.page-hero__subtitle {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   PRIVACY CONTENT
   ═══════════════════════════════════════════════════════ */
.privacy {
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  background: var(--color-bg);
}

.privacy__container {
  max-width: 780px;
  margin: 0 auto;
}

.privacy__updated {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-amber);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 2rem;
}

.privacy__intro {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(234, 230, 223, 0.06);
}

/* ── Sections ──────────────────────────────────────── */
.privacy__section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(234, 230, 223, 0.04);
}

.privacy__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.privacy__section h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 1rem;
}

.privacy__section h4 {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 600;
  color: var(--color-cream);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.privacy__section p {
  font-size: clamp(0.92rem, 1.1vw, 1rem);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.privacy__section p:last-child {
  margin-bottom: 0;
}

.privacy__section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.privacy__section ul li {
  position: relative;
  padding-left: 1.5rem;
  font-size: clamp(0.92rem, 1.1vw, 1rem);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.privacy__section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-amber);
  opacity: 0.6;
}

.privacy__section ul li strong {
  color: var(--color-cream);
  font-weight: 600;
}

.privacy__section a {
  color: var(--color-amber);
  text-decoration: none;
  transition: opacity 0.2s;
}

.privacy__section a:hover {
  opacity: 0.8;
}

/* ── Contact Address ───────────────────────────────── */
.privacy__contact {
  font-style: normal;
  font-size: clamp(0.92rem, 1.1vw, 1rem);
  color: var(--color-text-muted);
  line-height: 2;
  margin-top: 1rem;
  padding: 1.5rem;
  background: rgba(234, 230, 223, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(234, 230, 223, 0.06);
}

.privacy__contact strong {
  color: var(--color-cream);
  font-weight: 700;
}

.privacy__contact a {
  color: var(--color-amber);
  text-decoration: none;
  transition: opacity 0.2s;
}

.privacy__contact a:hover {
  opacity: 0.8;
}
