/* Shared styles for legal sub-pages — salario-giusto.com */
:root {
  --bg: #E5EDE2;
  --bg-2: #D6E0D2;
  --bg-card: #FFFFFF;
  --ink: #0E1116;
  --ink-2: #2A2F38;
  --ink-3: #5B6371;
  --rule: #C3D0BD;
  --green: #2E4A3A;
  --green-2: #21382B;
  --maxw: 920px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--green-2); }
::selection { background: var(--green); color: #fff; }

h1, h2, h3 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 .4em;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(36px, 5vw, 58px); line-height: 1.05; }
h2 { font-size: clamp(22px, 2.4vw, 30px); margin-top: 2.2em; }
h3 { font-size: 20px; margin-top: 1.6em; font-family: 'DM Sans', sans-serif; font-weight: 600; letter-spacing: .02em; }
p { margin: 0 0 1em; text-wrap: pretty; color: var(--ink-2); }
ul, ol { padding-left: 1.2em; color: var(--ink-2); }
li { margin-bottom: .4em; }
small, .muted { color: var(--ink-3); font-size: 13px; }
strong { color: var(--ink); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.eyebrow {
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--green); font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--green); }

header.site {
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
}
header.site .wrap {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1180px;
  height: 76px;
}
.logo img { display: block; height: 38px; width: auto; }
.back {
  font-size: 14px; color: var(--ink-2); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.back:hover { color: var(--green); }
.back span { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 18px; }

main { padding: 72px 0 96px; }
.page-head { margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--rule); }
.page-head .meta { color: var(--ink-3); font-size: 14px; margin-top: 16px; }

article.legal { background: var(--bg-card); border: 1px solid var(--rule); border-radius: 6px; padding: 56px clamp(28px, 5vw, 64px); }
article.legal section + section { margin-top: 8px; }

footer.site {
  background: var(--ink);
  color: rgba(229,237,226,.7);
  padding: 56px 0 32px;
}
footer.site .wrap { max-width: 1180px; }
footer.site .row {
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  align-items: center;
}
footer.site img { height: 32px; filter: invert(1) brightness(1.1); }
footer.site nav a { color: rgba(229,237,226,.7); margin-left: 22px; font-size: 14px; text-decoration: none; }
footer.site nav a:hover { color: #fff; }
footer.site .legal {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px; color: rgba(229,237,226,.5);
}

@media (max-width: 600px) {
  footer.site nav a { margin-left: 0; margin-right: 14px; }
}
