/* ============================================
   TERRA NOIR — Shared Nav + Footer
   Har policy page mein yeh include karo
   ============================================ */
:root {
  --gold:       #C9A96E;
  --gold-light: #E8D5B0;
  --dark:       #0A0A0A;
  --dark-2:     #111111;
  --dark-3:     #1A1A1A;
  --dark-4:     #242424;
  --muted:      #888888;
  --light:      #F0EBE1;
  --white:      #FFFFFF;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  background: var(--dark);
  color: var(--light);
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
}

/* ── SHARED NAV ── */
.tn-nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,110,0.12);
}
.tn-nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 300; letter-spacing: 6px;
  color: var(--gold); text-decoration: none;
}
.tn-nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.tn-nav-links a {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.3s;
}
.tn-nav-links a:hover { color: var(--gold); }
.tn-nav-back {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border: 1px solid rgba(201,169,110,0.3);
  padding: 7px 16px; transition: all 0.3s;
}
.tn-nav-back:hover { background: rgba(201,169,110,0.08); }
@media (max-width:600px) {
  .tn-nav { padding: 16px 20px; }
  .tn-nav-links { display:none; }
}

/* ── SHARED FOOTER ── */
.tn-footer {
  border-top: 1px solid rgba(201,169,110,0.1);
  padding: 48px 60px 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}
.tn-footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; letter-spacing: 5px; color: var(--gold);
}
.tn-footer-logo span { display:block; font-size:10px; letter-spacing:2px; color:var(--muted); margin-top:4px; font-family:'Josefin Sans',sans-serif; }
.tn-footer-legal {
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap; justify-content: center;
}
.tn-footer-legal a {
  font-size: 10px; letter-spacing: 1.5px; color: rgba(136,136,136,0.6);
  text-decoration: none; transition: color 0.3s;
}
.tn-footer-legal a:hover { color: var(--gold); }
.tn-footer-legal a.active-page { color: var(--gold); pointer-events: none; }
.tn-footer-sep { color: rgba(201,169,110,0.2); font-size: 12px; }
.tn-footer-copy {
  font-size: 10px; letter-spacing: 1.5px; color: rgba(136,136,136,0.4);
  text-align: right;
}
@media (max-width:768px) {
  .tn-footer { grid-template-columns: 1fr; text-align:center; padding:36px 24px; }
  .tn-footer-legal { justify-content:center; }
  .tn-footer-copy { text-align:center; }
}

/* ── POLICY PAGE LAYOUT ── */
.policy-page { max-width: 820px; margin: 0 auto; padding: 72px 40px 100px; }
.policy-eyebrow {
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.policy-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 6vw, 64px); font-weight: 300;
  letter-spacing: 3px; color: var(--white); margin-bottom: 10px; line-height:1;
}
.policy-date {
  font-size: 11px; letter-spacing: 2px; color: var(--muted);
  margin-bottom: 56px; padding-bottom: 28px;
  border-bottom: 1px solid rgba(201,169,110,0.1);
}
.policy-intro {
  background: var(--dark-3); border: 1px solid rgba(201,169,110,0.15);
  border-left: 2px solid var(--gold); padding: 20px 24px;
  margin-bottom: 48px; font-size: 14px; color: var(--muted); line-height: 1.9;
}
.policy-intro strong { color: var(--white); }
.policy-section { margin-bottom: 44px; }
.policy-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; color: var(--white);
  letter-spacing: 2px; margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,169,110,0.1);
}
.policy-section p { font-size: 14px; color: var(--muted); line-height: 1.9; margin-bottom: 12px; }
.policy-section ul { list-style: none; margin: 10px 0 14px; }
.policy-section ul li {
  font-size: 14px; color: var(--muted); line-height: 1.8;
  padding: 4px 0 4px 18px; position: relative;
}
.policy-section ul li::before { content:'—'; position:absolute; left:0; color:rgba(201,169,110,0.4); font-size:12px; }
.policy-section a { color: var(--gold); text-decoration: none; }
.policy-section a:hover { text-decoration: underline; }
.policy-warning {
  background: rgba(180,50,50,0.08); border: 1px solid rgba(180,50,50,0.25);
  border-left: 2px solid #c0392b; padding: 16px 20px; margin: 16px 0;
}
.policy-warning p { color: #d9a0a0; font-size:13px; margin:0; }
@media (max-width:600px) {
  .policy-page { padding: 48px 20px 80px; }
  .policy-title { font-size: 38px; }
}
