/* =========================
   Guante Bridge — styles.css
   cleaned up so the paws stop trying to become billboards
   ========================= */

:root{
  --bg: #151B24;
  --page-bg: #151B24;
  --page-bg-2: #0F141C;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.03);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --line: rgba(255,255,255,.14);
  --accent: #f3c969;
  --accent2: #ffd98a;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --max: 1100px;
}

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

body{
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1000px 500px at 50% -10%, rgba(243,201,105,.18), transparent 55%),
    radial-gradient(900px 650px at 90% 20%, rgba(255,255,255,.06), transparent 55%),
    linear-gradient(180deg, var(--page-bg) 0%, var(--page-bg-2) 100%);
  color: var(--text);
  line-height: 1.6;
}

img{
  max-width: 100%;
  height: auto;
  display: block;
}

a{ color: var(--accent2); text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section{ padding: 64px 0; }

.section-soft{
  background: rgba(255,255,255,.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

h1,h2,h3{
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.1;
  margin: 0 0 14px;
}

h1{ font-size: clamp(2.2rem, 4vw, 3.2rem); }
h2{ font-size: clamp(1.7rem, 3vw, 2.2rem); }
h3{
  font-size: 1.15rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

p{ margin: 0 0 14px; color: var(--text); line-height: 1.65; }
.lead{ font-size: 1.06rem; color: var(--muted); }
.muted{ color: var(--muted); }
.tiny{ font-size: .9rem; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(243,201,105,.92), rgba(243,201,105,.72));
  color: #1a1508;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
  text-decoration:none;
}

.btn:hover{ text-decoration:none; filter: brightness(1.03); }
.btn:active{ transform: translateY(1px); }
.btn-small{ padding: 10px 14px; font-size: .92rem; }

.btn-ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn-ghost:hover{ background: rgba(255,255,255,.06); }

.site-header{
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(11,11,15,.55);
  border-bottom: 1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark{
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 14px;
  border: 1px solid rgba(243,201,105,.45);
  background: linear-gradient(180deg,#f3c969,#e2b24c);
  padding: 6px;
  box-shadow: 0 6px 16px rgba(0,0,0,.35);
  object-fit: contain;
}

.brand-name{
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing:.2px;
  line-height: 1.05;
}

.brand-tag{
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.15;
}

.nav-links{
  display:flex;
  align-items:center;
  gap: 16px;
}

.nav-links a{
  color: var(--text);
  font-weight: 600;
  font-size: .95rem;
}

.nav-links a.btn{
  color:#1a1508;
}

.social-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-link img{
  display: block;
  width: 18px;
  height: 18px;
}

.nav-links a:hover{ color: var(--accent2); text-decoration: none; }

.nav-toggle{
  display:none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
}

.nav-toggle span{
  display:block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
  border-radius: 2px;
}

.hero{ padding: 56px 0 34px; }

.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: start;
}

.cta-row{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
  justify-content:center;

}

.hero-note{ margin-top: 10px; }

.hero h1{
  font-family: "Fraunces", serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.media-card,
.aside-card,
.bridge-card,
.embed-card,
.progress-card{
  background: var(--panel2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}


.hero-media .media-card{ padding: 14px; }

.hero-photo{
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid var(--line);
}

.hero-subline{
  margin-bottom:18px;
  padding-bottom:16px;
  border-bottom:1px solid rgba(255,255,255,.12);
  font-weight:500;
  color:#e9d6a2;
}

.sparkle{ color: var(--accent); }

.hero-meta{
  display:flex;
  flex-direction: column;
  align-items:center;
  text-align:center;
  gap: 10px;
  margin-top: 14px;
}

.pill-row{
  display:flex;
  justify-content:center;
  gap: 10px;
  flex-wrap: wrap;
}

.pill{
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: .82rem;
  color: var(--muted);
  white-space: nowrap;
}

.pill strong{ color: var(--text); }
.hero-quote{ margin-bottom: 0; }
.quote-author{ margin-top: 2px; font-style: italic; opacity: .85; }

.two-col{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: start;
}

.story-two-col{ display:block; }
.story-wrap::after{ content:""; display:block; clear: both; }

.story-float{
  float: left;
  width: min(360px, 46%);
  margin: 6px 22px 14px 0;
  padding: 16px;
}

.aside-photo{
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.25);
  margin-bottom: 12px;
}

.quotes{
  margin: 10px 0 0;
  padding: 0 0 0 18px;
  color: var(--muted);
}

.quotes li{ margin-bottom: 10px; }

.aside-cta{
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  justify-content: center;
}


.givebutter-wrap{
  margin-top: 104px;
  align-self: start;
}

.givebutter-embed{
  max-width: 520px;
  margin: 0;
}

.embed-card{ padding: 18px; }
.embed-card h3{ margin: 0 0 12px; }

givebutter-giving-form,
givebutter-widget{
  display:block;
  width:100%;
}

.donate{ padding-bottom: 84px; }

.donate-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items:start;
}

.donate-bullets{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin: 14px 0 6px;
}

.bullet{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding: 10px 12px;
  color: var(--muted);
  display:flex;
  gap: 8px;
  align-items:center;
  font-weight: 600;
}

.bullet span{
  font-size: 1.2rem;
  filter: brightness(1.4) saturate(1.3);
}

.donate-photo{
  margin-top: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding: 14px;
}

.donate-photo-main{
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.25);
  padding: 10px;
}

.donate-side .card + .card{
  margin-top: 20px;
}
.paw-callout{
  display:flex;
  align-items:flex-start;
  gap: 14px;
  margin-top: 14px;
}

.paw-callout-icon{
  width: 40px;
  height: 40px;
  max-width: none;
  flex: 0 0 40px;
  object-fit: contain;
  padding: 4px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}

.paw-callout p{
  margin: 0;
}

/* Instagram strip */

.insta-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
  gap:14px;
  margin-top:14px;
}

.insta-grid img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:10px;
}

.progress-card{ margin-top: 16px; padding: 16px; }
.progress-card h4{
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-family: "Inter", sans-serif;
  font-weight: 800;
}

.progress-card p{ color: var(--muted); }

.timeline{
  display:grid;
  gap: 12px;
  margin-top: 14px;
}

.t-item{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
}

.t-date{ font-weight: 800; color: var(--accent2); }
.t-body p{ color: var(--muted); margin: 6px 0 0; }

#bridge{
  padding-top: 20px;
  padding-bottom: 30px;
}

.bridge-head{
  margin-bottom: 6px;
}

.bridge-card{
  overflow: visible;
  padding-top: 34px;
}

.bridge-row{
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  width: fit-content;
  min-width: max-content;
  margin: 0 auto;
  padding: 6px 2px;
  overflow: visible;
}

@keyframes pawGlow{
  0%{
    box-shadow: 0 0 4px rgba(243,201,105,.35);
  }
  50%{
    box-shadow:
      0 0 10px rgba(243,201,105,.65),
      0 0 22px rgba(243,201,105,.35);
  }
  100%{
    box-shadow: 0 0 4px rgba(243,201,105,.35);
  }
}

/* =========================
   Donor ticker
========================= */

.donor-wall{
  max-width: 800px;
  margin: 34px auto 0;
  text-align: center;
}

.donor-label{
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b9a88f;
}

.donor-ticker-wrap{
  position: relative;
  overflow: hidden;

  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 10px 0;

  background: rgba(255,255,255,.02);
}

.donor-ticker-wrap::before,
.donor-ticker-wrap::after{
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 40px;
  z-index: 3;
  pointer-events: none;
}

.donor-ticker-wrap::before{
  left: 0;
  background: linear-gradient(
    to right,
    rgba(8,14,30,1) 0%,
    rgba(8,14,30,0) 100%
  );
}

.donor-ticker-wrap::after{
  right: 0;
  background: linear-gradient(
    to left,
    rgba(8,14,30,1) 0%,
    rgba(8,14,30,0) 100%
  );
}

.donor-ticker{
  overflow: hidden;
  white-space: nowrap;
}

.donor-track{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: max-content;
  animation: donorScroll 45s linear infinite;
}

.donor-track::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(243,201,105,.18),
    rgba(243,201,105,.28),
    rgba(243,201,105,.18),
    transparent
  );
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.donor-track span{
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  color: #b9a88f;
  padding-right: 28px;
  white-space: nowrap;
}

.donor-track span::after{
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 28px;
  background-image: url("../assets/img/pawprint.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: .7;
}

@keyframes donorScroll{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-50%);
  }
}

.paw{
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: default;
  color: var(--accent2);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, filter .15s ease, opacity .15s ease;
}

.paw:hover{
  transform: translateY(-2px);
  background: rgba(243,201,105,.18);
  box-shadow: 0 6px 16px rgba(243,201,105,.35);
  filter: brightness(1.08);
}

.paw.filled{
  background: rgba(243,201,105,.30);
  border-color: rgba(243,201,105,.55);
  box-shadow: 0 0 0 2px rgba(243,201,105,.15), 0 8px 22px rgba(243,201,105,.35);
  filter: drop-shadow(0 0 6px rgba(232, 190, 90, .6));
}

.paw.done{
  background: linear-gradient(180deg,#f3c969,#e2b24c);
  border-color: rgba(243,201,105,.85);
  color:#1a1508;
  box-shadow:
    0 0 0 2px rgba(243,201,105,.25),
    0 8px 20px rgba(0,0,0,.45);
}

.paw.current{
  color: var(--accent2);
  background: rgba(243,201,105,.18);
  border-color: rgba(243,201,105,.55);
  animation: pawGlow 2.8s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(232,190,90,.6);
}

.paw.future{
  color:#7a6a9f;
  opacity:.65;
}

.paw[data-name]::after{
  content: attr(data-name);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%);
  background: rgba(12, 17, 27, 0.96);
  color: var(--accent2);
  border: 1px solid rgba(243,201,105,.35);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 8px 18px rgba(0,0,0,.28);
  transition: opacity .15s ease, transform .15s ease;
  z-index: 5;
}

.paw[data-name]:hover::after,
.paw[data-name]:focus-visible::after{
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

.bridge-explain{
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  padding: 18px 22px 80px 22px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}


.footer{
  border-top: 1px solid var(--line);
  padding: 26px 0;
  background: rgba(0,0,0,.25);
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 16px;
  align-items:center;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap: 12px;
}

.footer-links{
  display:flex;
  gap:18px;
  flex-wrap: nowrap;
  align-items:center;
}

.footer-links a{
  color: var(--muted);
  font-weight: 700;
}

.footer-links a:hover{ color: var(--accent2); text-decoration: none; }
.footer-mini{ margin-top: 8px; font-size: .9rem; }
.footer-mini a{ color: var(--accent2); font-weight: 700; text-decoration: none; }
.footer-mini a:hover{ text-decoration: underline; }
.footer-cta{ text-align:right; }
.footer-bottom{ margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); }

.modal-overlay{
  position: fixed;
  inset: 0;
  background: rgba(3, 8, 20, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 9999;
}

.modal-overlay.show{ display: flex; }

.modal-box{
  position: relative;
  width: min(680px, 100%);
  max-height: 85vh;
  overflow-y: auto;
  background: #0b1220;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 28px 24px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.modal-box h2{ margin-top: 0; margin-bottom: 16px; }
.modal-box h3{ margin: 18px 0 8px; font-size: 1rem; }
.modal-box p{ margin: 0 0 12px; line-height: 1.6; }

.modal-close{
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover{ opacity: 0.75; }

@media (max-width: 980px){
  .hero-grid,
  .two-col,
  .donate-grid{ grid-template-columns: 1fr; }

  .footer-grid{
    grid-template-columns: 1fr;
    text-align:left;
  }

  .footer-cta{ text-align:left; }
}

@media (max-width: 920px){
  .donate-bullets{ grid-template-columns: 1fr; }
  .t-item{ grid-template-columns: 1fr; }
}

@media (max-width: 780px){
  .nav-links{ display:none; }
  .nav-toggle{ display:block; }

  .nav.open .nav-links{
    display:flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    position:absolute;
    right: 20px;
    top: 64px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(11,11,15,.92);
    box-shadow: var(--shadow);
    width: min(260px, calc(100% - 40px));
  }
}

@media (max-width: 720px){
  .story-float{
    float: none;
    width: 100%;
    margin: 0 0 14px 0;
  }

  .paw-callout{
    align-items: center;
  }
}
/* CONTACT MODAL */
.modal{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 10000;
}

.modal.show{
  display: flex;
}

.modal #contactOverlay{
  position: absolute;
  inset: 0;
  background: rgba(16, 18, 24, 0.72);
  backdrop-filter: blur(4px);
}

.modal-card{
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  max-height: 90vh;
  overflow: hidden;
  background: #fffaf2;
  color: #1f1b16;
  border-radius: 20px;
  padding: 28px 24px 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}


.modal-card h2{
  margin-top: 0;
  margin-bottom: 6px;
  color: #1f1b16;
}

.modal-subtext{
  margin-bottom: 18px;
  color: #5a5145;
}

.modal-close--contact{
  position: absolute;
  top:14px;
  right:16px;
  font-size:28px;
  border: 0;
  background: transparent;
  line-height: 1;
  cursor: pointer;
  color: #2a241d;
}

.contact-form{
  display:grid;
  gap:12px;
  overflow-y:auto;
  max-height:60vh;
  padding-right:6px;
}

.contact-form label{
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: #2a241d;
  margin-top: 2px;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  border: 1px solid #d6c8b2;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font: inherit;
  background: #fff;
  color: #1f1b16;
  margin-top: 6px;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline: none;
  border-color: #b88c3a;
  box-shadow: 0 0 0 3px rgba(184, 140, 58, 0.15);
}

.contact-form textarea{
  resize: vertical;
  min-height: 140px;
}

.botcheck{
  display: none !important;
}

.form-success{
  display: none;
  margin-top: 12px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #f6f3e9;
  color: #2a241d;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}

/* Nicer on mobile */
@media (max-width: 640px){
  .modal{
    padding: 10px;
    align-items: flex-end;
  }

  .modal-card{
    width: 100%;
    max-height: 92vh;
    border-radius: 18px 18px 0 0;
    padding: 22px 18px 20px;
  }

  .contact-form{
    gap: 10px;
  }

  .contact-form input,
  .contact-form textarea{
    padding: 0.85rem 0.9rem;
  }

  .modal-close--contact{
    top: 8px;
    right: 12px;
  }
}

/* Street Dog Hero watermark */

/* watermark image */

.bridge-explain::after{
  content: "";
  position: absolute;
  right: 28px;
  bottom: -22px;

  width: 240px;
  height: 140px;

  background: url("../assets/img/streetdoghero.png") no-repeat center;
  background-size: contain;

  opacity: .50;
  pointer-events: none;
}

/* mobile adjustment */

@media (max-width:640px){

  .bridge-explain::after{
    width: 150px;
    height: 70px;
    bottom: -4px;
    opacity: .22;
  }

}

.modal-trigger{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  margin: 0 2px;
  border: 1px solid rgba(243,201,105,.35);
  border-radius: 999px;
  background: rgba(243,201,105,.08);
  color: #d4af37;
  font: inherit;
  font-weight: 600;
  line-height: 1.2;
  vertical-align: middle;
  cursor: pointer;
}

.modal-trigger:hover,
.modal-trigger:focus-visible{
  background: rgba(243,201,105,.14);
  opacity: 1;
  text-decoration: none;
}

.modal-trigger:focus-visible,
.modal-close:focus-visible{
  outline: 2px solid rgba(243,201,105,.7);
  outline-offset: 2px;
}

.image-modal{
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.75);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.image-modal.show{
  display: flex;
}

.image-modal .modal-content{
  max-width: 520px;
  width: 100%;
  background: #0f172a;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  position: relative;
}

.image-modal .modal-content img{
  width: 100%;
  border-radius: 8px;
}

.image-modal .modal-caption{
  margin-top: 12px;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.image-modal .modal-close{
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  background: transparent;
  border: 0;
  line-height: 1;
}

@media (max-width: 640px){
  .modal-trigger{
    padding: 6px 10px;
  }

  .image-modal{
    padding: 16px;
  }

  .image-modal .modal-content{
    padding: 18px;
  }
}

@media (max-width: 640px){
  .bridge-card{
    overflow-x: visible;
  }

  .bridge-row{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 6px 0;
  }

  .paw{
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    font-size: 22px;
  }
}
.dog-modal{
  display:none;
  position:fixed;
  z-index:9999;
  inset:0;
  background:rgba(0,0,0,.6);
  padding:20px;
}

.dog-modal.show{
  display:block;
}

.dog-modal-content{
  position:relative;
  background:#f4f1ea;
  color:#2a2a2a;
  max-width:520px;
  margin:5vh auto;
  border-radius:12px;
  box-shadow:0 20px 40px rgba(0,0,0,.25);
  max-height:85vh;
  display:flex;
  flex-direction:column;
  overflow:hidden;
}

.dog-modal-header{
  padding:24px 28px 10px;
  text-align:center;
}

.dog-modal-content h3{
  margin-top:6px;
  font-size:1.4rem;
}

.dog-modal-sub{
  font-size:.9rem;
  color:#a18964;
  margin-bottom:10px;
}

.dog-modal a {
  color: #d4a94f; /* your gold vibe */
  text-decoration: none;
  font-weight: 500;
}

.dog-modal a:hover {
  text-decoration: underline;
}

.dog-modal img {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 14px;
  background: linear-gradient(180deg, #111, #1a1a1a);
}

.dog-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 14px;
  font-weight: 500;
  color: #6c6259;
  background: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: opacity 0.2s ease;
}

.dog-modal-close:hover {
  opacity: 0.7;
}

.dog-modal-content p,
.dog-modal-content .dog-story{
  color:#2a2a2a !important;
}

.dog-story{
  padding:0 28px 26px;
  overflow-y:auto;
  line-height:1.55;
  border-top:1px solid rgba(0,0,0,.08);
  margin-top:6px;
  padding-top:20px;
}

.dog-story p{
  margin-bottom:14px;
  color:#2a2a2a;
}

.dog-callout {
  background: linear-gradient(135deg, #f3c969 0%, #ffd98a 48%, #f0bf56 100%);
  color: #1a1508;
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 600;
  margin-bottom: 14px;
  box-shadow:
    0 8px 18px rgba(0,0,0,.25),
    0 0 0 1px rgba(255,255,255,.12) inset;
}

.dog-impact{
  margin-top:14px;
  font-weight:600;
}

/* =========================
   First funded update
   ========================= */

.pack-status{
  padding: 22px 0 0;
}

.status-banner{
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f3c969 0%, #ffd98a 48%, #f0bf56 100%);
  border: 1px solid rgba(255,217,138,.55);
  border-radius: 18px;
  padding: 18px 20px;
  color: #1a1508;
  box-shadow:
    0 14px 34px rgba(0,0,0,.28),
    0 0 0 1px rgba(255,255,255,.08) inset;
}

.status-banner::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 18%, rgba(255,255,255,.22) 38%, transparent 58%);
  transform: translateX(-120%);
  animation: statusShimmer 4.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes statusShimmer{
  0%, 18%{ transform: translateX(-120%); }
  42%{ transform: translateX(120%); }
  100%{ transform: translateX(120%); }
}

.status-banner__eyebrow,
.funded-callout__eyebrow{
  display: inline-block;
  margin-bottom: 8px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status-banner__eyebrow{
  color: rgba(26,21,8,.72);
}

.status-banner p{
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.04rem;
  color: #1a1508;
}

.status-banner strong{
  color: #1a1508;
}

.funded-callout{
  margin: 18px 0 18px;
  padding: 18px 18px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(243,201,105,.24);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.funded-callout h3{
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.funded-callout p:last-child{
  margin-bottom: 0;
}

.funded-callout__next{
  color: var(--accent2);
  font-weight: 700;
}

.progress-note{
  margin: -4px 0 12px;
}

.givebutter-embed givebutter-widget{
  display: block;
  width: 100%;
}

@media (max-width: 700px){
  .pack-status{
    padding-top: 10px;
  }

  .pack-status .container{
    width: calc(100% - 32px);
    margin: 0 auto;
  }

  .pack-status .status-banner{
    display: block;
    width: 100%;
    margin: 0;
    padding: 14px 16px;
    border-radius: 14px;
    background-color: #f3c969;
    background-image: linear-gradient(135deg, #f3c969 0%, #ffd98a 48%, #f0bf56 100%);
    border: 1px solid rgba(255,217,138,.55);
    box-shadow:
      0 14px 34px rgba(0,0,0,.28),
      0 0 0 1px rgba(255,255,255,.08) inset;
    box-sizing: border-box;
  }

  .pack-status .status-banner p{
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .pack-status .status-banner__eyebrow{
    display: block;
    margin-bottom: 6px;
    font-size: 0.76rem;
  }
}