/* VadhuMilan Legal Pages — Shared Stylesheet */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0D1B3D;
  --navy-deep: #0A1430;
  --gold: #CA9D37;
  --cream: #FBF7F4;
  --charcoal: #2C2C2C;
  --muted: #6B7280;
  --border: #E5E0DC;
}

html, body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Site header */
.site-header {
  background: var(--navy);
  padding: 1.25rem 1.5rem;
  border-bottom: 2px solid var(--gold);
}

.site-header-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.site-header .brand {
  font-family: 'Cormorant Upright', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.site-header .brand .accent { color: var(--gold); }

.site-header .back-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.site-header .back-link:hover { color: var(--gold); }

/* Content container */
.legal-content {
  max-width: 820px;
  margin: 3rem auto 4rem;
  padding: 0 1.5rem;
}

/* Typography */
.legal-content h1 {
  font-family: 'Cormorant Upright', serif;
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3rem);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.legal-content h2 {
  font-family: 'Cormorant Upright', serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  color: var(--navy);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-content h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  margin: 1.75rem 0 0.5rem;
  letter-spacing: 0.01em;
}

.legal-content p,
.legal-content li,
.legal-content td,
.legal-content th {
  font-size: 0.95rem;
  color: var(--charcoal);
}

.legal-content strong {
  color: var(--navy);
  font-weight: 600;
}

.legal-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover { color: var(--navy); }

.legal-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

.legal-content ul, .legal-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  margin: 0.4rem 0;
  line-height: 1.7;
}

/* Tables */
.legal-content table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.25rem 0;
  font-size: 0.9rem;
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(13, 27, 61, 0.06);
}

.legal-content th, .legal-content td {
  border: 1px solid var(--border);
  padding: 0.65rem 0.9rem;
  text-align: left;
  vertical-align: top;
}

.legal-content th {
  background: #F5EFE6;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  margin-top: 3rem;
}

.site-footer-brand {
  font-family: 'Cormorant Upright', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.site-footer-brand .accent { color: var(--gold); }

.site-footer-tagline {
  font-family: 'Cormorant Upright', serif;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  letter-spacing: 0.1em;
}

.site-footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.site-footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.site-footer-links a:hover { color: var(--gold); }

.site-footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}
