/* Shared styling for Eikendal legal / policy pages
   (/terms, /privacy, /paia). Calm editorial
   long-form layout on the estate cream palette. Link site-nav.css +
   site-footer.css + this file, drop the standard nav + footer markup
   around a <main class="legal">. */

:root {
  --gold: #C9A868;
  --gold-hover: #b8944f;
  --gold-dark: #9d7938;
  --estate-cream: #faf5ea;
  --ink: #2d2520;
  --muted: #756a61;
  --line: rgba(45, 37, 31, 0.12);
  --body-font: 'Inter', sans-serif;
  --display-font: 'Goudy Bookletter 1911', Georgia, serif;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--body-font);
  background: #fff;
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* Push content clear of the fixed header. */
  padding-top: 68px;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.legal-hero {
  background: var(--estate-cream);
  padding: clamp(48px, 8vw, 88px) clamp(20px, 5vw, 60px) clamp(36px, 5vw, 56px);
  text-align: center;
}
.legal-hero .legal-eyebrow {
  margin: 0 0 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.legal-hero h1 {
  margin: 0 auto 14px;
  max-width: 18ch;
  font-family: var(--display-font);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.6vw, 3.2rem);
  line-height: 1.1;
  color: var(--ink);
}
.legal-hero .legal-updated {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 32px) clamp(72px, 10vw, 120px);
}
.legal .legal-intro {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 8px;
}
.legal h2 {
  margin: 44px 0 14px;
  font-family: var(--display-font);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  line-height: 1.2;
  color: var(--ink);
}
.legal h2:first-of-type { margin-top: 8px; }
.legal h3 {
  margin: 28px 0 10px;
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.legal p {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
}
.legal p strong { color: var(--ink); font-weight: 600; }
.legal a:not(.legal-btn) {
  color: var(--gold-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(210, 171, 103, 0.5);
  transition: color 160ms ease, border-color 160ms ease;
}
.legal a:not(.legal-btn):hover { color: var(--gold); border-bottom-color: var(--gold); }
.legal ul, .legal ol {
  margin: 0 0 16px;
  padding-left: 22px;
  color: var(--muted);
}
.legal li { margin: 0 0 8px; line-height: 1.7; }
.legal li strong { color: var(--ink); }
/* Thin gold rule between major blocks where useful. */
.legal hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}
/* Definition-style contact / info rows. */
.legal-info {
  margin: 20px 0;
  padding: 22px 24px;
  background: var(--estate-cream);
  border-radius: 6px;
}
.legal-info p { margin: 0 0 6px; color: var(--ink); }
.legal-info p:last-child { margin-bottom: 0; }
.legal-info strong { display: inline-block; min-width: 140px; color: var(--gold-dark); }

/* Responsible-drinking callout. */
.legal-responsible-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 8px auto 4px;
  padding: 10px 20px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
