/* ═══════════════════════════════════════
   CELEBRATEBANNER.COM — Policy Page Styles
   (Matches index.html branding)
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ink:    #0C0E14;
  --ink2:   #13161F;
  --ink3:   #1C2030;
  --gold:   #C9A84C;
  --gold2:  #E8C97A;
  --gold3:  #F5E4B0;
  --ivory:  #FAF8F3;
  --ivory2: #F0EDE4;
  --white:  #FFFFFF;
  --muted:  #6B7280;
  --light:  #9CA3AF;
  --border: rgba(201,168,76,0.18);
  --r:      12px;
  --r2:     20px;
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--ink); color: var(--white); overflow-x: hidden; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 68px; display: flex; align-items: center;
  padding: 0 2.5rem;
  background: rgba(12,14,20,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1100px; margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark svg { width: 20px; height: 20px; }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 700;
  color: var(--white); letter-spacing: 0.3px;
}
.nav-logo-text em { color: var(--gold2); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--ink) !important;
  padding: 9px 22px; border-radius: 9px;
  font-weight: 600 !important;
  transition: all 0.2s !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(201,168,76,0.35); filter: brightness(1.05); }

/* ── POLICY HEADER ── */
.policy-hero {
  padding: 130px 2rem 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.policy-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.policy-hero-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 2; }
.policy-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 6px 16px; border-radius: 20px;
  margin-bottom: 1.5rem;
}
.policy-eyebrow-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.policy-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
}
.policy-h1 em { color: var(--gold2); font-style: normal; }
.policy-subtitle {
  font-size: 14px; color: rgba(255,255,255,0.5);
  letter-spacing: 0.3px;
}
.policy-updated {
  font-size: 13px; color: rgba(255,255,255,0.35);
  margin-top: 4px; font-style: italic;
}

/* ── POLICY BODY ── */
.policy-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 1rem 2rem 100px;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  font-size: 15.5px;
}
.policy-body p {
  margin-bottom: 1.1rem;
  color: rgba(255,255,255,0.78);
}
.policy-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin: 3rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201,168,76,0.15);
  letter-spacing: -0.2px;
}
.policy-body h2:first-child { margin-top: 1rem; border-top: none; padding-top: 0; }
.policy-body h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--gold2);
  margin: 1.75rem 0 0.75rem;
  letter-spacing: 0.2px;
}
.policy-body ul, .policy-body ol {
  margin: 0 0 1.25rem 1.5rem;
}
.policy-body li {
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.75);
}
.policy-body li strong, .policy-body p strong {
  color: var(--white);
  font-weight: 600;
}
.policy-body a {
  color: var(--gold2);
  border-bottom: 1px solid rgba(232,201,122,0.3);
  transition: all 0.2s;
}
.policy-body a:hover {
  color: var(--gold3);
  border-bottom-color: var(--gold3);
}
.policy-body em { color: rgba(255,255,255,0.65); font-style: italic; }

/* ── CALLOUT BOX ── */
.policy-callout {
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--r);
  padding: 1.5rem 1.75rem;
  margin: 1.75rem 0;
}
.policy-callout p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 0.75rem;
}
.policy-callout p:last-child { margin-bottom: 0; }
.policy-callout-small {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

.policy-tip {
  background: rgba(201,168,76,0.04);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 14.5px;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

/* ── TABLES ── */
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 14px;
  background: var(--ink3);
  border-radius: var(--r);
  overflow: hidden;
}
.policy-table th, .policy-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  vertical-align: top;
}
.policy-table th {
  background: rgba(201,168,76,0.08);
  color: var(--gold2);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.policy-table tr:last-child td { border-bottom: none; }
.policy-table td:first-child { font-weight: 600; color: var(--white); }

.summary-table td:first-child {
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.summary-free { color: #6EE7B7 !important; }
.summary-discount { color: var(--gold2) !important; }
.summary-norefund { color: #FCA5A5 !important; }

/* ── LEGAL DISCLAIMER (Terms only) ── */
.legal-disclaimer {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 13.5px !important;
  color: var(--white) !important;
  background: rgba(201,168,76,0.06);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 4px;
  line-height: 1.6;
}

/* ── FOOTER NOTES ── */
.policy-footer-note {
  border-top: 1px solid rgba(201,168,76,0.15);
  padding-top: 1.5rem;
  margin-top: 3rem;
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.4);
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 700; color: var(--white);
}
.footer-brand em { color: var(--gold2); font-style: normal; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  nav { padding: 0 1.25rem; }
  .policy-hero { padding: 100px 1.25rem 40px; }
  .policy-body { padding: 1rem 1.25rem 60px; font-size: 15px; }
  .policy-body h2 { font-size: 26px; margin-top: 2.5rem; }
  .policy-table { font-size: 13px; }
  .policy-table th, .policy-table td { padding: 0.7rem; }
}
