/* ═══════════ EVER LAB — legal pages (privacy, terms, cancellation) ═══════════ */
:root {
  --bg: #EDE8E3;
  --paper: #F4F0EB;
  --ink: #141414;
  --ink-soft: #3a3a36;
  --warm-gray: #76726C;
  --sage-soft: #CDDFB7;
  --sage: #8DAE92;
  --sage-deep: #6B8B70;
  --shadow-sm: 0 4px 18px rgba(20,20,20,0.05);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', 'Assistant', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
strong, b { font-weight: 600; color: var(--ink); }
::selection { background: var(--sage); color: #fff; }

/* Top back bar */
.legal-bar {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center; position: relative;
  padding: 14px 24px;
  background: rgba(244,240,235,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(107,139,112,0.16);
}
.legal-back {
  position: absolute; inset-inline-start: 24px; top: 50%; transform: translateY(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--sage-deep); text-decoration: none;
  padding: 8px 16px 8px 12px; border: 1px solid rgba(107,139,112,0.35); border-radius: 999px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.legal-back svg { width: 14px; height: 14px; }
.legal-back:hover { background: var(--sage-deep); color: #fff; border-color: var(--sage-deep); }
.legal-logo img { height: 44px; mix-blend-mode: multiply; }

/* Content */
.legal-main { max-width: 800px; margin: 0 auto; padding: 56px 26px 76px; }
.legal-eyebrow {
  font-family: 'Poppins','Assistant',monospace; font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--sage-deep); margin-bottom: 16px;
}
.legal-title {
  font-family: 'Poppins','Assistant',serif; font-weight: 300;
  font-size: clamp(30px, 5vw, 46px); line-height: 1.15; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 14px;
}
.legal-updated { font-size: 13.5px; color: var(--warm-gray); margin-bottom: 40px; }
.legal-updated strong { color: var(--sage-deep); font-weight: 500; }
.legal-updated-bottom { margin: 46px 0 0; padding-top: 22px; border-top: 1px solid rgba(107,139,112,0.18); text-align: center; }
.legal-divider { height: 1px; background: rgba(107,139,112,0.2); margin: 0 0 40px; }

.legal-content { font-size: 16px; line-height: 1.9; color: var(--ink-soft); }
.legal-content p { margin: 0 0 16px; }
.legal-content h2, .legal-content h3, .legal-content h4 {
  font-family: 'Poppins','Assistant',sans-serif; font-weight: 600; color: var(--ink);
  margin: 34px 0 12px; line-height: 1.35;
}
.legal-content h2 { font-size: 22px; }
.legal-content h3 { font-size: 19px; }
.legal-content h4 { font-size: 17px; }
.legal-content ul, .legal-content ol { margin: 0 0 18px; padding-inline-start: 24px; }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--sage-deep); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--ink); }
.legal-content u { text-decoration: underline; }
.legal-content strong { color: var(--ink); }
.legal-content .added-note {
  display: inline-block; font-size: 11px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--sage-deep); background: rgba(205,223,183,0.4); border-radius: 999px;
  padding: 2px 10px; margin-inline-start: 8px; vertical-align: middle;
}

/* Site footer (shared look) */
.site-footer { background: var(--paper); border-top: 1px solid rgba(107, 139, 112, 0.16); padding: 58px 32px 46px; text-align: center; }
.site-footer-links { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px 28px; margin-bottom: 28px; }
.site-footer-links a { color: var(--ink-soft); text-decoration: none; font-size: 14px; letter-spacing: 0.01em; transition: color 0.2s; }
.site-footer-links a:hover { color: var(--sage-deep); }
.site-footer-disclaimer { max-width: 640px; margin: 0 auto 30px; font-size: 13px; line-height: 1.7; color: var(--warm-gray); }
.site-footer-social { display: flex; justify-content: center; gap: 16px; margin-bottom: 28px; }
.site-footer-social a { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--sage-deep); border: 1px solid rgba(107, 139, 112, 0.32); transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.22s; }
.site-footer-social a:hover { background: var(--sage-deep); color: #fff; border-color: var(--sage-deep); transform: translateY(-2px); }
.site-footer-social svg { width: 18px; height: 18px; }
.site-footer-copy { font-size: 12.5px; color: var(--warm-gray); letter-spacing: 0.03em; }
@media (max-width: 600px) {
  .legal-main { padding: 40px 20px 60px; }
  .site-footer { padding: 44px 20px 36px; }
  .site-footer-links { gap: 10px 20px; }
  .site-footer-links a { font-size: 13.5px; }
}
