/* Shared styles for legal pages (privacy, terms, cookies, accessibility statement) */
:root{
  --bg: #f6f4ef;
  --ink: #0e2a33;
  --ink-2: #3a525b;
  --muted: #7a8b91;
  --line: #e2dfd7;
  --accent: #c97f5a;
  --maxw: 820px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:"Heebo","Assistant",system-ui,sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a{ color: var(--ink); text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 3px; }
a:hover{ text-decoration-color: var(--accent); }
.wrap{max-width:var(--maxw); margin:0 auto; padding: 0 24px;}

.skip-link{
  position:absolute; top:-100px; right:16px;
  background: var(--ink); color:#fff;
  padding: 12px 18px; border-radius:8px;
  text-decoration:none; font-weight:600; z-index:200;
  transition: top .2s ease;
}
.skip-link:focus{ top:12px; outline:3px solid #ffd166; }
a:focus-visible, button:focus-visible{ outline:3px solid #ffd166; outline-offset:3px; }

/* NAV */
.nav{
  position: sticky; top:0; z-index:50;
  background: rgba(246,244,239,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 16px 24px; max-width: 1200px; margin:0 auto;
}
.brand{
  display: inline-flex; align-items: center;
  text-decoration: none;
  background: var(--ink);
  padding: 6px 14px;
  border-radius: 999px;
  transition: background .2s;
}
.brand:hover{ background:#1a3d49; }
.brand img{ height: 22px; width: auto; display: block; }
.nav-cta{
  font: inherit; border: none; cursor: pointer;
  font-size: 14px; padding: 9px 18px;
  border-radius: 999px;
  background: var(--ink); color: var(--bg);
  text-decoration: none; font-weight: 500;
}
.nav-cta:hover{ background: var(--accent); }

/* PAGE */
.page-head{
  padding: 80px 0 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}
.page-eyebrow{
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.page-head h1{
  font-family:"Assistant","Heebo",sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.page-head .updated{
  color: var(--muted);
  font-size: 14px;
}

article{ padding-bottom: 96px; }
article p{ margin: 0 0 18px; color: var(--ink-2); }
article h2{
  font-family:"Assistant",sans-serif;
  font-weight: 500;
  font-size: 24px;
  margin: 44px 0 14px;
  color: var(--ink);
  line-height: 1.3;
}
article h3{
  font-family:"Assistant",sans-serif;
  font-weight: 500;
  font-size: 18px;
  margin: 28px 0 10px;
  color: var(--ink);
}
article ul{
  padding-inline-start: 22px;
  margin: 0 0 18px;
  color: var(--ink-2);
}
article ul li{ margin-bottom: 8px; }
article strong{ color: var(--ink); }

/* FOOTER */
footer{
  background: var(--ink);
  color: rgba(246,244,239,0.7);
  padding: 56px 0 32px;
}
footer .wrap{ max-width: 1200px; }
.foot-bottom{
  display:flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(246,244,239,0.5);
  padding-top: 24px;
  border-top: 1px solid rgba(246,244,239,0.1);
}
.foot-bottom .legal-links{
  display: flex; gap: 22px; flex-wrap: wrap;
}
.foot-bottom .legal-links a{
  color: rgba(246,244,239,0.65);
  text-decoration: none;
}
.foot-bottom .legal-links a:hover{ color: var(--bg); }
.foot-brand img{ height: 32px; width: auto; display: block; margin-bottom: 8px; }
.foot-meta{ margin-bottom: 32px; font-size: 14px; line-height: 1.7; }
.foot-meta a{ color: rgba(246,244,239,0.85); text-decoration: none; }
.foot-meta a:hover{ color: var(--bg); }
.foot-social{ display:flex; gap:10px; margin-top:14px; }
.foot-social a{
  width:38px; height:38px; border-radius:50%;
  background: rgba(246,244,239,0.08);
  border: 1px solid rgba(246,244,239,0.18);
  display:inline-flex; align-items:center; justify-content:center;
  color: rgba(246,244,239,0.85);
  text-decoration:none;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.foot-social a:hover{
  background: var(--accent); color:#fff; border-color: var(--accent);
  transform: translateY(-2px);
}
.foot-social svg{ width:18px; height:18px; }