:root{
    --gold: #FCCC08;
    --gold-deep: #C9950A;
    --black: #15120D;
    --charcoal: #211D16;
    --cream: #FBF6E9;
    --ink: #1B1810;
    --line: rgba(21,18,13,0.12);
  }

  *{ box-sizing:border-box; }
  html{ scroll-behavior:smooth; }
  body{
    margin:0;
    background:var(--cream);
    color:var(--ink);
    font-family:'Source Sans 3', sans-serif;
    line-height:1.6;
    font-size:17px;
  }
  h1,h2,h3{
    font-family:'Halant', serif;
    font-weight:600;
    margin:0;
    line-height:1.1;
  }
  .script{
    font-family:'Yellowtail', cursive;
    font-weight:400;
  }
  a{ color:inherit; }
  .wrap{
    max-width:920px;
    margin:0 auto;
    padding:0 28px;
  }

  /* ---------- NAV ---------- */
  nav{
    position:sticky; top:0; z-index:50;
    background:var(--black);
  }
  nav .wrap{
    display:flex; align-items:center; justify-content:space-between;
    padding-top:14px; padding-bottom:14px;
  }
  .nav-name{
    color:var(--gold);
    font-family:'Halant', serif;
    font-weight:600;
    font-size:20px;
    letter-spacing:0.3px;
  }
  .nav-links{ display:flex; gap:26px; list-style:none; margin:0; padding:0; }
  .nav-links a{
    color:#EFE7CE; text-decoration:none; font-size:15px; font-weight:500;
    opacity:0.85; transition:opacity .15s;
  }
  .nav-links a:hover{ opacity:1; color:var(--gold); }
  .nav-cta{
    background:var(--gold); color:var(--black); padding:8px 18px;
    border-radius:3px; font-weight:600; text-decoration:none; font-size:14px;
  }
  @media (max-width:640px){ .nav-links{ display:none; } }

  /* ---------- HERO (sign-block layout) ---------- */
  .hero-gold{
    background:var(--gold);
    line-height:0;
  }
  .hero-banner-img{
    width:100%;
    height:auto;
    display:block;
  }

  .btn{
    display:inline-block; padding:12px 24px; border-radius:3px;
    font-weight:600; text-decoration:none; font-size:15px;
    transition:transform .15s, opacity .15s;
  }
  .btn:hover{ transform:translateY(-1px); }
  .btn-gold{ background:var(--gold); color:var(--black); }
  .btn-outline{ border:1.5px solid var(--gold); color:var(--gold); }
  .btn-form{
    background: var(--black);
    color: var(--gold);
    border-color: var(--black);
    margin-bottom: 16px;
    line-height:1.4;
  }

  /* ---------- ROOT DIVIDER ---------- */
  .root-divider{ width:100%; height:34px; display:block; }
  .root-divider svg{ width:100%; height:100%; display:block; }

  /* ---------- SECTIONS ---------- */
  section{ padding:72px 0; }
  .section-label{
    text-transform:uppercase; letter-spacing:2.5px; font-size:13px;
    font-weight:700; color:var(--gold-deep); margin-bottom:14px;
  }
  .section-title{ font-size:clamp(30px,4vw,42px); margin-bottom:28px; }

  /* About */
  .about-intro{
    display:flex; gap:36px; align-items:flex-start;
    margin-bottom:36px;
  }
  .about-photo{
    width:220px; height:220px; flex-shrink:0;
    object-fit:cover; border-radius:8px;
    border:3px solid black;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  }
  @media (max-width:680px){
    .about-intro{ flex-direction:column; align-items:center; text-align:left; }
    .about-photo{ width:180px; height:180px; }
  }
  .about-grid{ display:grid; grid-template-columns: 1fr; gap:24px; }
  .about-body p{ margin:0 0 16px; color:#3a3527; }
  .about-body p:last-child{ margin-bottom:0; }
  .signoff{ font-family:'Yellowtail', cursive; font-size:30px; color:var(--gold-deep); margin-top:22px; }

  .traits-list{
    list-style:none; margin:6px 0 26px; padding:0;
    display:grid; gap:16px;
  }
  .traits-list li{
    background:#fff; border-left:3px solid var(--gold);
    border-radius:0 6px 6px 0; padding:16px 20px;
  }
  .trait-label{
    font-family:'Halant', serif; font-weight:600; font-size:17px;
    color:var(--charcoal); margin-bottom:6px;
  }
  .traits-list li p{ margin:0; font-size:15px; color:#4a4536; }
  .callout{ font-weight:700; color:var(--gold-deep); }

  /* Donate */
  /* Endorsements */
  .endorsements{ background:var(--cream); position:relative; overflow:hidden; }
  .endorsements-watermark{
    position:absolute;
    right:-40px; top:50%;
    transform:translateY(-50%);
    height:85%;
    width:auto;
    filter:grayscale(100%);
    opacity:0.08;
    pointer-events:none;
    z-index:0;
  }
  .endorsements .wrap{ position:relative; z-index:1; }
  .endorse-grid{
    display:grid; grid-template-columns:1fr 1fr 1fr; gap:20px;
  }
  @media (max-width:760px){ .endorse-grid{ grid-template-columns:1fr; } }
  .endorse-card{
    background:#fff; border:1px solid var(--line); border-radius:6px;
    padding:26px; display:flex; flex-direction:column; gap:14px;
  }
  .endorse-quote{
    font-family:'Halant', serif; font-size:16px; color:var(--charcoal);
    flex-grow:1; margin:0;
  }
  .endorse-who{ font-size:14px; color:#6b654e; }
  .endorse-who b{ color:var(--ink); display:block; font-size:15px; }
  .endorse-placeholder-note{
    margin-top:26px; font-size:13px; color:#7a745c; font-style:italic;
  }

  .donate{
    background:var(--gold);
    text-align:center;
  }
  .donate h2{ font-size:clamp(28px,4vw,40px); margin-bottom:14px; }
  .donate p{ max-width:520px; margin:0 auto 26px; color:var(--charcoal); }
  .donate-qr{
    width:170px; height:170px; display:block; margin:0 auto 14px;
    background:#fff; padding:12px; border-radius:8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  .donate-note{
    margin-top:0; margin-bottom:0px; font-size:14px; color:var(--charcoal); opacity:0.85;
  }
  .donate-disclosure{
    font-size:12.5px; color:var(--charcoal); opacity:0.7;
    max-width:460px; margin:0 auto; line-height:1.5;
  }

  /* Footer */
  footer{
    background:var(--black); color:#c9c2a9; padding:44px 0 30px; font-size:14px;
  }
  .footer-top{
    display:flex; justify-content:space-between; align-items:flex-start;
    flex-wrap:wrap; gap:24px; margin-bottom:28px;
  }
  .footer-name{ font-family:'Halant',serif; color:var(--gold); font-size:20px; margin-bottom:6px;}
  footer a.email{ color:var(--gold); text-decoration:none; font-weight:600; }
  footer a.email:hover{ text-decoration:underline; }
  .footer-bottom{
    border-top:1px solid rgba(246,197,26,0.15); padding-top:18px; font-size:13px; opacity:0.7;
  }
