
  /* Same design tokens as the homepage — keep these two files in sync
     if the brand colours/fonts ever change. */
  :root{
    --color-purple:        #7A2A8E;
    --color-purple-dark:   #551D63;
    --color-olive:         #75825A;
    --color-olive-dark:    #5C6647;
    --color-bg:            #FCFCFA;
    --color-ink:           #241726;
    --color-ink-soft:      #5B4E5C;
    --color-line:          rgba(36,23,38,0.12);
    --color-cream-card:    #F5F3EE;
    --shadow-soft:          0 20px 50px rgba(36,23,38,0.16);
    --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1240px;
  }

  *{ box-sizing: border-box; }
  html{ scroll-behavior: smooth; }
  body{
    margin:0;
    background: var(--color-bg);
    color: var(--color-ink);
    font-family: var(--font-body);
    line-height: 1.6;
    position: relative;
  }
  body::before{
    content:"";
    position: fixed;
    inset:0;
    z-index: 500;
    pointer-events: none;
    opacity: 0.05;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  }

  img{ max-width: 100%; display:block; }
  a{ color: inherit; text-decoration:none; }
  ul, ol{ margin:0; padding:0; }

  h1,h2,h3{
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin: 0;
    color: var(--color-ink);
  }

  /* --- simple static header: no hero, no scroll-driven animation needed.
         Logo doubles as the way back home, per the brief. --- */
  .site-header{
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(252,252,250,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 var(--color-line);
  }
  .nav-bar{
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .nav-logo-link{
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .nav-logo-link img{ height: 40px; width: auto; }
  .back-home{
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-ink-soft);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .2s ease;
  }
  .back-home:hover{ color: var(--color-purple); }
  .back-home svg{ width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

  /* --- long-text content area --- */
  .legal-page{
    max-width: 760px;
    margin: 0 auto;
    padding: 72px 32px 120px;
  }
  .legal-page .eyebrow{
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-olive-dark);
  }
  .legal-page h1{
    font-size: clamp(2.4rem, 6vw, 3.6rem);
    margin-top: 10px;
  }
  .legal-page .updated{
    margin-top: 14px;
    font-size: 0.85rem;
    color: var(--color-ink-soft);
  }
  .legal-page .intro{
    margin-top: 28px;
    font-size: 1.05rem;
    color: var(--color-ink-soft);
    max-width: 620px;
  }

  .legal-body{
    margin-top: 48px;
  }
  .legal-body section + section{
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--color-line);
  }
  .legal-body h2{
    font-size: 1.6rem;
    color: var(--color-purple);
    margin-bottom: 14px;
  }
  .legal-body h3{
    font-size: 1.15rem;
    text-transform: none;
    letter-spacing: 0;
    color: var(--color-ink);
    margin: 20px 0 8px;
  }
  .legal-body p{
    margin: 0 0 14px;
  }
  .legal-body ul, .legal-body ol{
    margin: 0 0 14px;
    padding-left: 22px;
  }
  .legal-body ul{ list-style: disc; }
  .legal-body ol{ list-style: decimal; }
  .legal-body li{ margin-bottom: 8px; }
  .legal-body a{
    color: var(--color-purple);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .legal-body a:hover{ color: var(--color-olive-dark); }

  /* Optional in-page contents list — handy once a page has several
     numbered sections. Remove this block if the page is short. */
  .legal-toc{
    margin-top: 40px;
    background: var(--color-cream-card);
    border: 1px solid var(--color-line);
    border-radius: 10px;
    padding: 24px 28px;
  }
  .legal-toc p{
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-ink-soft);
    margin: 0 0 12px;
  }
  .legal-toc ol{
    list-style: decimal;
    padding-left: 20px;
    margin: 0;
  }
  .legal-toc li{ margin-bottom: 6px; }
  .legal-toc a{ color: var(--color-ink); text-decoration: none; }
  .legal-toc a:hover{ color: var(--color-purple); }

  /* --- footer: identical to the homepage, with paths adjusted for
         living one folder down --- */

    .footer-col ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
    .site-footer{
    background: var(--color-purple-dark);
    color: rgba(255,255,255,0.9);
    padding: 72px 32px 32px;
  }
  .footer-inner{
    max-width: var(--max-width);
    margin: 0 auto;
    display:grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
  }
  .footer-brand img{ height: 40px; margin-bottom: 14px; }
  .footer-brand p{ color: rgba(255,255,255,0.72); font-size: 0.9rem; max-width: 280px; }
  .footer-col h4{
    list-style: none;
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
  }
  .footer-col ul li{ margin-bottom: 10px; }
  .footer-col a{ font-size: 0.92rem; color: rgba(255,255,255,0.92); }
  .footer-col a:hover{ color: var(--color-olive); }
  .footer-bottom{
    max-width: var(--max-width);
    margin: 56px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
  }

  @media (max-width: 900px){
    .footer-inner{ grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 560px){
    .footer-inner{ grid-template-columns: 1fr; }
    .legal-page{ padding: 48px 20px 80px; }
  }
