:root{
  /* Business card palette */
  --stripe-a: #cfcada;   /* soft lavender-gray */
  --stripe-b: #bdb6cd;   /* deeper lavender */
  --cream:    #fbf4e6;   /* warm cream */
  --ink:      #2b2b33;   /* soft ink */
  --plum:     #7a5b69;   /* muted mauve/plum */

  /* Optional soft accent pastels (from the card paw vibe) */
  --peach:    #f3c7c1;
  --mint:     #9ddfcf;
  --sky:      #9fc7e8;

  /* Structure */
  --radius: 18px;
  --radius-lg: 26px;
  --line: rgba(43,43,51,.14);
  --muted: rgba(43,43,51,.72);

  --shadow: 0 18px 50px rgba(43,43,51,.16);
  --shadow-soft: 0 10px 28px rgba(43,43,51,.12);

  --max: 1120px;
}

body{
  font-family: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);

  background:
    /* stripes (base) */
    repeating-linear-gradient(
      90deg,
      var(--stripe-a) 0px,
      var(--stripe-a) 34px,
      var(--stripe-b) 34px,
      var(--stripe-b) 68px
    ),
    /* soft glow overlays (top) */
    radial-gradient(700px 380px at 16% 4%, rgba(224,176,90,.22), transparent 62%),
    radial-gradient(900px 520px at 85% 10%, rgba(40,109,176,.18), transparent 62%);

  line-height: 1.55;
}


/* Base */
*{ box-sizing:border-box; }
html, body{ margin:0; padding:0; }

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }
img{ max-width:100%; display:block; }
.container{ width: min(var(--max), 92vw); margin: 0 auto; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 900;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
  text-decoration:none;
}
.btn:hover{ text-decoration:none; transform: translateY(-1px); }
.btn.primary{
  background: linear-gradient(180deg, rgba(122,91,105,.92), rgba(122,91,105,.78));
  color: rgba(255,255,255,.96);
  border-color: rgba(255,255,255,.20);
}

.btn.gold{ /* keep class name, but make it “cream/plum” */
  background: rgba(251,244,230,.96);
  color: rgba(122,91,105,.98);
  border: 2px solid rgba(122,91,105,.22);
  box-shadow: var(--shadow-soft);
}

.btn.ghost{
  background: rgba(255,255,255,.42);
  border-color: rgba(43,43,51,.14);
  box-shadow: none;
  color: rgba(43,43,51,.90);
}
.btn-row{ display:flex; flex-wrap:wrap; gap: 10px; }

/* Typography */
.h1{
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 800;
  letter-spacing: .2px;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.08;
  margin: 10px 0 10px;
}
.h2{
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 800;
  font-size: 26px;
  margin: 0;
}
.lede{
  font-size: 18px;
  font-weight: 650;
  color: var(--muted);
  margin: 0 0 16px;
}

.logo{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
}


/* Header (transparent over hero) */
.site-header{
  background: linear-gradient(180deg, rgba(122,91,105,.55), rgba(122,91,105,0));
  position: relative;
  z-index: 50;
}

/* Header layout: keep logo/title left, nav always right */
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* Force nav to the right on every page */
.nav{
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand{
  color: rgba(255,255,255,.96);
  font-weight: 900;
  text-shadow: 0 2px 10px rgba(0,0,0,.22);
}

.brand .mark{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.32), transparent 55%),
              linear-gradient(180deg, rgba(40,109,176,.95), rgba(2,46,99,.95));
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 8px 18px rgba(0,0,0,.14);
}
.brand small{
  font-size: 12px;
  line-height: 1.15;
  display:block;
  font-weight: 750;
  opacity: .92;
}

.nav{
  font-size: 14px;
  display:flex;
  align-items:center;
  gap: 8px;
}
.nav a{
  color: rgba(255,255,255,.92);
  font-weight: 850;
  padding: 7px 9px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid transparent;
}
.nav a:hover{
  text-decoration:none;
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.16);
}

.nav a.active{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.22);
}


.menu-btn{
  display:none;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(2,46,99,.22);
  color: #fff;
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 900;
}

@media (max-width: 920px){
  .menu-btn{ display:block; }
  .nav{
    display:none;
    position:absolute;
    right: 4vw;
    top: 68px;
    width: min(380px, 92vw);
    flex-direction:column;
    align-items:stretch;
    gap: 8px;
    padding: 12px;
    border-radius: var(--radius);
    background: rgba(2,46,99,.34);
    border: 1px solid rgba(255,255,255,.18);
box-shadow: var(--shadow);
  }
  .nav.open{ display:flex; }
  .nav a{ background: rgba(255,255,255,.10); }
  
}

/* Only adjust layering on INNER pages */
.hero--inner::before{ z-index: 0; }

.hero--inner .hero-content,
.hero--inner .container{
  position: relative;
  z-index: 1;
}

.hero--inner + *{
  position: relative;
  z-index: 1;
}

/* Keep header above inner hero background */
.site-header{
  position: relative;
  z-index: 50;
}
/* INNER PAGES: remove the old blue hero background */
.hero--inner::before{
  content: none !important;
}

.hero--inner{
  background: transparent !important;
}
.hero--inner .hero-card{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.08);
  backdrop-filter: blur(6px);
}



/* Hero */
.hero{
  position: relative;
  min-height: 28vh;
  display:flex;
  align-items:center;        
  padding: 66px 0 30px;
  overflow:hidden;
  border-bottom: 1px solid rgba(2,46,99,.12);
}

.hero-card--cta{
  padding: 18px 18px;
  max-width: 720px;
  margin: 0 auto;
}

.btn-row--center{
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}


.hero::before{
  content:"";
  position:absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,46,99,.62), rgba(2,46,99,.18)),
    radial-gradient(900px 520px at 80% 20%, rgba(224,176,90,.35), transparent 60%);
  background-size: cover;
  background-position: center;
  filter: saturate(1.06);
  transform: none;
}
.hero::after{
  content:"";
  position:absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(2,46,99,.52));
}
.hero-content{
  position: relative;
  z-index: 2;
  color: #fff;
}
.hero-card{
  width: min(760px, 100%);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: var(--radius-lg);
  padding: 18px;
box-shadow: 0 24px 60px rgba(0,0,0,.22);
}
.hero-title{
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 900;
  font-size: clamp(32px, 4.6vw, 54px);
  line-height: 1.05;
  margin: 0 0 10px;
}
.hero-sub{
  color: rgba(255,255,255,.92);
  font-weight: 650;
  font-size: 18px;
  margin: 0 0 14px;
}

/* Inner pages: smaller hero so it doesn’t feel huge/weird */
.hero--inner{
  min-height: 26vh !important;
  padding: 62px 0 26px !important;
  align-items: center !important;
}

/* Inner pages: keep the hero-card from becoming a giant blob */
.hero--inner .hero-card{
  max-width: 980px;
  padding: 22px 22px;
}

/* Inner pages: tighten the big title a bit */
.hero--inner .hero-title{
  font-size: 56px;
  line-height: 1.02;
  margin-bottom: 8px;
}
@media (max-width: 720px){
  .hero--inner .hero-title{ font-size: 42px; }
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(224,176,90,.92);
  color:#2a1e07;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.28);
}

/* Sections */
.section{ padding: 26px 0; }
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.section-head p{ margin:0; color: var(--muted); font-weight: 650; }

/* Soft divider (no harsh lines) */
.divider{
  width: 100%;
  margin: 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.divider span{
  display: block;
  width: 80px;
  height: 6px;
  border-radius: 999px;
  background: rgba(122,91,105,.35); /* plum/mauve */
  box-shadow: none;
}

.divider::before, .divider::after{
  content:"";
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(210,144,34,.55), transparent);
}
.divider span{
  font-size: 18px;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,.08));
}
.divider span::after{
  content:"🐾";
}

/* Divider graphic */
.divider-img{
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin: 10px 0 0;
}

.divider-img img{
  height: 22px;        /* change this if needed */
  width: auto;
  display: block;
  opacity: .9;
}

/* Cards/grid */
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.card{
  grid-column: span 4;
  background: rgba(255,255,255,.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow:hidden;
}
.card .pad{ padding: 14px; }
.card h3{
  margin: 0 0 6px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 20px;
}
.card p{ margin:0; color: var(--muted); font-weight: 650; }
.card .thumb{ height: 110px; background: #e9eef6; }
.card .thumb img{ width:100%; height:100%; object-fit: contain; }
@media (max-width: 980px){ .card{ grid-column: span 6; } }
@media (max-width: 640px){ .card{ grid-column: span 12; } }

/* Panels/grid (separate from the homepage card grid) */
.panel-grid{
  display: grid;
  gap: 18px;
}

.panel-grid--2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

@media (max-width: 900px){
  .panel-grid--2{
    grid-template-columns: 1fr;
  }
}

.card, .panel, .banner-block, .supporter-note{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  backdrop-filter: blur(6px);
}


/* Banner blocks (centered + not overwhelming) */
.banner-block{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.9);
}

.banner-block img{
  display: block;
  width: 100%;
  max-width: 820px;   /* keeps "Caring for Cats" + highlights centered on desktop */
  height: auto;
}
/* HERO / HEADER GRAPHIC — remove the ugly white frame */
.banner-block{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;

  display: flex;
  justify-content: center;
}

.banner-block img{
  display: block;
  width: 100%;
  height: auto;

  /* optional: keep a soft rounded edge WITHOUT a white frame */
  border-radius: 18px;
}



/* Panels */

.card, .panel, .banner-block{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(4px);
}

.supporter-note{
  max-width: 860px;
  margin: 0 auto;
  padding: 18px 20px;
  border-radius: 22px;

  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.08);

  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  backdrop-filter: blur(6px);
}

.supporter-note h3{
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: .2px;
}

.supporter-note p{
  margin: 0;
  opacity: .92;
  line-height: 1.45;
}
.supporter-note--accent{
  position: relative;
  overflow: hidden;
}

.supporter-note--accent::before{
  content:"";
  position:absolute;
  left: 18px;
  right: 18px;
  top: 12px;
  height: 3px;
  border-radius: 999px;
  background: rgba(122,91,105,.35); /* your mauve/plum */
}
.supporter-note--accent h3{ margin-top: 10px; }

/* Footer */
.footer{
  padding: 28px 0 40px;
  border-top: 1px solid rgba(2,46,99,.12);
  color: var(--muted);
}
.footer .footgrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
}
.footer b{ color: var(--ink); }
.badge{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(2,46,99,.08);
  border: 1px solid rgba(2,46,99,.18);
  font-weight: 900;
}
.badge:hover{ text-decoration:none; }
@media (max-width: 760px){ .footer .footgrid{ grid-template-columns: 1fr; } }

.footer-social{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-social:hover{
  opacity: .9;
}

.fb-icon{
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  background: rgba(24,119,242,.95);
  color: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,.18);
}

/* Footer Quick Links pills (NO special Donate color) */
.footer-cta-row{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.footer-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .2px;

  background: rgba(207,202,218,.55);
  border: 1px solid rgba(0,0,0,.10);
  color: var(--plum);
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}

.footer-pill:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.86);
}

/* Kill any "Donate gets special color" rule */
.footer-pill--gold{
  background: rgba(255,255,255,.72) !important;
  color: var(--plum) !important;
  border: 1px solid rgba(0,0,0,.10) !important;
  box-shadow: 0 8px 18px rgba(0,0,0,.08) !important;
}

.footer-cta-row--forms{
  margin-top: 8px;
}

.footer-pill--small{
  padding: 8px 12px;
  font-weight: 750;
  font-size: 14px;
}


/* Floating Quick Help Bubble */
.float-bubble{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
}
.float-bubble__btn{
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(122,91,105,.78);  /* plum */
  color: rgba(255,255,255,.96);
  box-shadow: 0 18px 50px rgba(43,43,51,.22);
}

.float-bubble__icon{
  background: rgba(251,244,230,.96); /* cream */
  color: rgba(122,91,105,.98);
  border: 1px solid rgba(255,255,255,.25);
}
.float-bubble__panel{
  width: min(320px, 86vw);
  margin-top: 10px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(2,46,99,.14);
  box-shadow: 0 18px 50px rgba(2,46,99,.18);
  display:none;
}
.float-bubble__panel.open{ display:block; }
.float-bubble__title{
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}
.float-bubble__link{
  display:block;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(2,46,99,.06);
  border: 1px solid rgba(2,46,99,.12);
  font-weight: 850;
  margin-bottom: 8px;
}
.float-bubble__link:hover{ text-decoration:none; background: rgba(2,46,99,.10); }
.float-bubble__hint{
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
}
@media (max-width: 520px){
  .float-bubble{ right: 12px; bottom: 12px; }
  .float-bubble__label{ display:none; }
}

/* Tighter banner spacing (reduce overwhelm) */
.banner-block{ margin: 6px 0; }
.section{ padding: 22px 0; }



/* Hard-center banner cards even when combined with .container */
.container.banner-block{
  width: min(880px, 92vw) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.banner-block{
  justify-content: center !important;
}
.banner-block img{
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Homepage header graphic block */
.banner-block--hero{
  max-width: 980px;
  padding: 18px;
  margin-top: 18px;
}

.banner-block--hero img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.banner-block--hero{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(4px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.video-embed{
  max-width: 980px;
  margin: 0 auto;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.08);
  backdrop-filter: blur(6px);
}
.video-embed .fb-video{
  width: 100%;
}

.float-cta{
  background: rgba(255,255,255,.92) !important;
  background: var(--cream) !important;
  border: 2px solid rgba(122,91,105,.35) !important;

  font-weight: 900;
  font-size: 15px;
  padding: 10px 14px;

  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  border-radius: 999px;
}

.float-cta:hover{
  background: rgba(255,255,255,.98) !important;
  transform: translateY(-2px);
}