/* Shared layout for privacy + terms (matches landing palette & typography). */
:root {
  --ink: #241c18;
  --espresso: #3a2a24;
  --clay: #9c6758;
  --rose: #c88474;
  --blush: #f3ddd4;
  --ivory: #fffaf5;
  --cream: #f8efe8;
  --line: rgba(89, 58, 48, 0.16);
  --max: 1180px;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --r: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.brand-home {
  position: fixed;
  top: 20px;
  left: 22px;
  z-index: 9999;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px 9px 9px;
  border: 1px solid rgba(255, 250, 245, 0.18);
  border-radius: 999px;
  background: rgba(31, 23, 20, 0.62);
  backdrop-filter: blur(18px);
  color: #fffaf5;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  box-shadow: 0 16px 44px rgba(24, 17, 14, 0.13);
}

.brand-logo {
  flex-shrink: 0;
  width: 44px;
  height: 36px;
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  align-items: center;
}

.brand-logo img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
}

.brand-word {
  line-height: 1;
}

.legal-hero {
  padding: clamp(100px, 14vh, 132px) 0 clamp(40px, 6vw, 56px);
  background: linear-gradient(148deg, #18100c 0%, #241c18 42%, #2d1f18 100%);
  color: #fffaf5;
}

.legal-hero .inner {
  max-width: 820px;
}

.legal-back {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 250, 245, 0.72);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-back:hover {
  color: #fffaf5;
}

.legal-hero .eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 250, 245, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.legal-hero .sub {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255, 250, 245, 0.72);
}

.legal-hero .effective {
  margin: 8px 0 0;
  font-size: 0.95rem;
  color: rgba(255, 250, 245, 0.55);
}

.legal-body {
  padding: clamp(40px, 6vw, 72px) 0 clamp(56px, 8vw, 96px);
}

.legal-body .inner {
  max-width: 720px;
}

.legal-body h2 {
  margin: 2.2rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--espresso);
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body h3 {
  margin: 1.35rem 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--espresso);
}

.legal-body p {
  margin: 0 0 1rem;
  color: rgba(36, 28, 24, 0.78);
}

.legal-body ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: rgba(36, 28, 24, 0.78);
}

.legal-body li {
  margin-bottom: 0.45rem;
}

.legal-body a {
  color: var(--clay);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-body a:hover {
  color: var(--rose);
}

footer {
  padding: 32px 24px;
  background: var(--espresso);
  color: rgba(255, 250, 245, 0.7);
  font-size: 0.9rem;
}

.footer-meta {
  margin: 0;
  text-align: center;
  line-height: 1.6;
}

footer a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

footer a:hover {
  color: rgba(255, 250, 245, 0.95);
}

.footer-current {
  font-weight: 800;
  color: rgba(255, 250, 245, 0.95);
}
