/* =========================================================
   ANIMAZE GRAPHIC — PRIVACY POLICY PAGE
   ========================================================= */

:root{
  --ink:#111216;
  --ink-2:#24262d;
  --muted:#6d7280;
  --soft:#f7f7f4;
  --cream:#fff5ef;
  --orange:#ff6752;
  --orange-dark:#e95643;
  --line:#e8e8e4;
  --white:#fff;
  --display:"Archivo",Arial,sans-serif;
  --body:"Inter Tight",Inter,system-ui,sans-serif;
  --mono:"IBM Plex Mono",monospace;
  --max:1240px;
  --gutter:24px;

  --u-heading:    clamp(1.9rem, 1.4rem + 1.9vw, 2.6rem);
  --u-subheading: clamp(1.05rem, 1rem + .3vw, 1.15rem);
  --u-copy:       0.975rem;
  --u-copy-lh:    1.7;
}

*,
*::before,
*::after{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  overflow-x:hidden;
  -webkit-text-size-adjust:100%;
}

body{
  margin:0;
  background:#fff;
  color:var(--ink);
  font-family:var(--body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{display:block;max-width:100%;height:auto}
a{text-decoration:none;color:inherit}
.wrap{width:100%;max-width:var(--max);margin:auto;padding:0 var(--gutter)}

.skip{
  position:absolute;left:-9999px;top:10px;z-index:99999;
  padding:10px 16px;background:var(--ink);color:#fff
}
.skip:focus{left:12px}

/* Shared button — matches contact.html/index.html */
.hero-btn{
  min-height:44px;
  padding:0 17px;
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  border-radius:4px;
  font-family:var(--display);font-size:10px;font-weight:700;
  letter-spacing:.07em;text-transform:uppercase;
  transition:.25s ease;
}
.hero-btn--light{background:#fff;color:#15161a}
.hero-btn--light:hover{background:#17181c;color:#fff;transform:translateY(-3px)}

/* HEADER */
.policy-header{
  padding:clamp(90px,10vw,120px) 0 clamp(28px,4vw,40px);
  background:#fff;
}

.policy-header h1{
  font-family:var(--display);font-size:var(--u-heading);font-weight:800;
  line-height:1.1;letter-spacing:-.02em;margin:0 0 20px;color:var(--ink);
}

.policy-rule{
  border:none;border-top:1px solid var(--line);
  margin:0 0 24px;
}

.policy-updated{
  color:var(--ink);font-size:var(--u-copy);line-height:var(--u-copy-lh);
  margin:0 0 16px;
}

.policy-lead{
  color:var(--ink-2);font-size:var(--u-copy);line-height:var(--u-copy-lh);
  margin:0 0 14px;
}
.policy-lead:last-of-type{margin-bottom:0}

/* BODY LAYOUT */
.policy-body{padding:0 0 clamp(48px,6vw,80px)}
.policy-layout{display:block}

.policy-content article{
  padding-bottom:clamp(30px,4vw,44px);
  margin-bottom:clamp(30px,4vw,44px);
  border-bottom:1px solid var(--line);
  scroll-margin-top:24px;
}
.policy-content article:last-child{
  border-bottom:0;margin-bottom:0;padding-bottom:0;
}

.policy-content h2{
  font-family:var(--display);font-size:var(--u-subheading);font-weight:700;
  letter-spacing:-.01em;color:var(--ink);margin:0 0 14px;
}
.policy-content p{
  color:var(--ink-2);font-size:var(--u-copy);line-height:var(--u-copy-lh);
  margin:0 0 14px;
}
.policy-content p:last-child{margin-bottom:0}

.policy-content ul{
  margin:0 0 14px;padding:0 0 0 20px;
}
.policy-content ul li{
  color:var(--ink-2);font-size:var(--u-copy);line-height:1.5;
  padding:4px 0;
}

.policy-signoff{
  margin-top:20px;
  color:var(--ink-2);font-size:var(--u-copy);line-height:var(--u-copy-lh);
}
.policy-signoff strong{color:var(--ink)}

/* RESPONSIVE */
@media(max-width:600px){
  :root{--gutter:18px}
  .policy-header{padding:80px 0 24px}
  .policy-content article{padding-bottom:26px;margin-bottom:26px}
}

@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important}
}