@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=DM+Serif+Display&display=swap');

:root {
  --navy: #14254a;
  --cream: #fff9ee;
  --paper: #fffdf8;
  --blue: #e7f2fb;
  --mint: #dff1e8;
  --pink: #f8e8ee;
  --line: rgba(20, 37, 74, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--navy);
  background: var(--cream);
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.68;
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 86px;
  padding: 18px clamp(22px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 249, 238, .94);
  backdrop-filter: blur(14px);
}
.wordmark {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1;
  text-decoration: none;
}
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a { font-size: .95rem; font-weight: 600; text-decoration: none; }
.site-nav a:hover, .site-nav a:focus-visible { text-decoration: underline; text-underline-offset: 5px; }
.home-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}
.legal-hero {
  padding: clamp(66px, 9vw, 120px) clamp(22px, 6vw, 92px) clamp(50px, 7vw, 86px);
  background: linear-gradient(135deg, #f7d78d 0%, #bfe8d7 48%, #b8d7f6 100%);
}
.safeguarding-page .legal-hero {
  background: linear-gradient(135deg, #f3b5ca 0%, #d7cced 50%, #b8d7f6 100%);
}
.legal-hero-inner, .legal-content { width: min(900px, 100%); margin: 0 auto; }
.eyebrow {
  margin: 0 0 16px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
h1, h2 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; }
h1 { margin: 0; font-size: clamp(3rem, 7vw, 5.6rem); line-height: .98; }
.updated { margin: 24px 0 0; font-weight: 600; }
.legal-content { padding: clamp(52px, 8vw, 92px) 22px; }
.intro { margin: 0 0 50px; font-size: clamp(1.2rem, 2.3vw, 1.55rem); line-height: 1.55; }
section { margin: 0 0 46px; }
h2 {
  display: table;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 17px;
  padding-bottom: 9px;
  border-bottom: 3px solid var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.1;
}
h3 { margin: 28px 0 8px; font-size: 1.05rem; }
p { margin: 0 0 16px; }
ul { margin: 12px 0 18px; padding-left: 1.3em; }
li { margin: 0 0 7px; padding-left: .2em; }
.contact-card {
  margin-top: 24px;
  padding: 25px 28px;
  border-radius: 20px;
  background: var(--blue);
}
.contact-card p:last-child { margin-bottom: 0; }
.urgent { font-weight: 700; }
.legal-footer {
  padding: 38px clamp(22px, 5vw, 72px);
  color: var(--cream);
  background: var(--navy);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 42px;
  width: min(1200px, 100%);
  margin: 0 auto;
}
.footer-brand .wordmark { color: var(--cream); }
.footer-brand p { margin: 8px 0 0; }
.footer-links { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; }
.footer-links a { color: var(--cream); }
.copyright { grid-column: 1 / -1; margin: 6px 0 0; opacity: .78; }

@media (max-width: 760px) {
  body { font-size: 16px; }
  .site-header { min-height: 76px; }
  .site-nav a:not(.home-link) { display: none; }
  .legal-hero { padding-top: 58px; }
  section { margin-bottom: 38px; }
  .contact-card { padding: 22px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { display: grid; grid-template-columns: repeat(2, max-content); margin-top: 12px; }
  .copyright { grid-column: auto; }
}
