/* ============================================================
   YHBR — Yuma Homeward Bound Animal Rescue
   Shared Stylesheet | 2026
   Brand: Compassionate blues/greens, warm cream
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ── CSS Variables ── */
:root {
  --blue:        #2A5B7E;
  --blue-dark:   #1e4460;
  --blue-light:  #e8f1f7;
  --green:       #4A7C59;
  --green-dark:  #375c42;
  --green-light: #eaf2ec;
  --cream:       #F5F3EE;
  --cream-dark:  #ede9e0;
  --olive:       #5A5A40;
  --slate:       #1e293b;
  --muted:       #64748b;
  --border:      #e2e8f0;
  --white:       #ffffff;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.14);
  --shadow-xl:   0 20px 60px rgba(0,0,0,.18);
  --radius-sm:   .75rem;
  --radius-md:   1.25rem;
  --radius-lg:   2rem;
  --radius-xl:   3rem;
  --font-body:   'DM Sans', system-ui, sans-serif;
  --font-display:'Cormorant Garamond', Georgia, serif;
  --nav-h:       72px;
  --max-w:       1180px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--slate);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 600;
  color: var(--slate);
}
h1 { font-size: clamp(2.6rem,6vw,5rem); }
h2 { font-size: clamp(2rem,4.5vw,3.5rem); }
h3 { font-size: clamp(1.3rem,2.5vw,1.9rem); }
h4 { font-size: 1.25rem; font-family: var(--font-body); font-weight: 700; }
p  { font-size: 1.05rem; color: var(--muted); }

.serif { font-family: var(--font-display); }
.italic { font-style: italic; }
.text-blue   { color: var(--blue); }
.text-green  { color: var(--green); }
.text-cream  { color: var(--cream); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--muted); }

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s, opacity .2s;
  cursor: pointer;
  text-align: center;
  justify-content: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn-primary   { background: var(--blue);  color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-green     { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-dark); }
.btn-outline   { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.8); }
.btn-light     { background: var(--white); color: var(--blue); }
.btn-light:hover { background: var(--cream); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }

/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 100px;
  padding: .35rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.badge-blue {
  background: var(--blue-light);
  border-color: rgba(42,91,126,.2);
  color: var(--blue);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}
.nav.scrolled .nav-logo, .nav.scrolled .nav-link { color: var(--slate); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: color .3s;
}
.nav-logo .paw { font-size: 1.6rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  letter-spacing: .02em;
  transition: color .2s, opacity .2s;
}
.nav-link:hover { opacity: .7; }
.nav-link.active { color: var(--white); }
.nav.scrolled .nav-link { color: var(--muted); }
.nav.scrolled .nav-link:hover { color: var(--blue); }
.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: .55rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .85rem;
  transition: background .2s, transform .2s !important;
}
.nav.scrolled .nav-cta { background: var(--blue); color: var(--white) !important; }
.nav-cta:hover { background: var(--blue-dark) !important; opacity: 1 !important; transform: translateY(-1px) !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .4rem;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.nav.scrolled .nav-hamburger span { background: var(--slate); }
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  padding: 1rem 0;
  box-shadow: var(--shadow-md);
  z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: .85rem 2rem;
  font-weight: 600;
  color: var(--slate);
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--blue); background: var(--cream); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a1a2e;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,26,46,.7) 0%, rgba(42,91,126,.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  padding-top: var(--nav-h);
  width: 100%;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hero-text { max-width: 680px; color: var(--white); }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { color: #7EC8A0; font-style: italic; }
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 540px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: #7EC8A0;
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-top: .25rem;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
  z-index: 10;
}
.hero-scroll .arrow { font-size: 1.2rem; }
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── Page Header (inner pages) ── */
.page-header {
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  background: var(--blue);
  color: var(--white);
}
.page-header.green  { background: var(--green); }
.page-header.cream  { background: var(--cream-dark); color: var(--slate); }
.page-header.olive  { background: var(--olive); }
.page-header h1 { color: var(--white); }
.page-header.cream h1 { color: var(--slate); }
.page-header p { color: rgba(255,255,255,.8); max-width: 600px; margin-top: .75rem; }
.page-header.cream p { color: var(--muted); }

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 1.5rem; }
.card-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 100px;
  margin-bottom: .75rem;
}
.card-tag.blue { background: var(--blue-light); color: var(--blue); }

/* ── Pet Grid ── */
.pet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.pet-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.pet-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pet-card-img { width: 100%; height: 240px; object-fit: cover; }
.pet-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.pet-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--slate); }
.pet-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin: .5rem 0 1rem; }
.pet-chip {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  background: var(--cream);
  border-radius: 100px;
  padding: .2rem .7rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
}

/* ── Impact Stats Bar ── */
.stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: var(--blue);
  color: var(--white);
}
.stat-item {
  flex: 1 1 200px;
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: #7EC8A0;
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-top: .4rem;
  display: block;
}

/* ── Feature Blocks ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform .2s;
}
.feature-card:hover { transform: translateY(-3px); }
.feature-icon {
  width: 52px; height: 52px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

/* ── 2-col split ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-img { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.split-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 260px;
}
.float-card.bottom-right { bottom: -1.5rem; right: -1.5rem; }
.float-card.top-left { top: -1.5rem; left: -1.5rem; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--blue);
  border-radius: var(--radius-xl);
  padding: 5rem 3rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: '🐾';
  position: absolute;
  font-size: 8rem;
  opacity: .05;
  line-height: 1;
}
.cta-banner::before { top: -1rem; left: -1rem; transform: rotate(15deg); }
.cta-banner::after  { bottom: -1rem; right: -1rem; transform: rotate(-15deg); }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,.8); margin-bottom: 2rem; font-size: 1.1rem; }
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ── Testimonial ── */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--green);
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--slate);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.testimonial cite { font-size: .85rem; font-weight: 700; color: var(--muted); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }

/* ── Timeline ── */
.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 4.5rem;
  top: 0; bottom: 0;
  width: 2px;
  background: rgba(42,91,126,.2);
}
.timeline-item { display: flex; gap: 2rem; align-items: flex-start; padding-bottom: 3rem; position: relative; }
.timeline-year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  width: 5rem;
  text-align: right;
  shrink: 0;
  padding-top: .15rem;
  flex-shrink: 0;
}
.timeline-dot {
  width: 1rem; height: 1rem;
  background: var(--blue);
  border-radius: 50%;
  margin-top: .3rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.timeline-body { flex: 1; }

/* ── Process Steps ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; counter-reset: step; }
.step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  counter-increment: step;
  box-shadow: var(--shadow-sm);
}
.step::before {
  content: counter(step);
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--blue);
  opacity: .08;
  line-height: 1;
}
.step-icon { font-size: 2rem; margin-bottom: 1rem; }

/* ── Donate Cards ── */
.donate-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.donate-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}
.donate-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.donate-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.donate-card h3 { font-family: var(--font-body); font-size: 1.3rem; font-weight: 700; margin-bottom: .5rem; }
.donate-card p { font-size: .95rem; flex: 1; margin-bottom: 1.5rem; }

/* ── Form ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
label { font-size: .875rem; font-weight: 600; color: var(--slate); }
input, select, textarea {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .8rem 1rem;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--slate);
  background: var(--white);
  transition: border-color .2s;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(42,91,126,.1);
}
textarea { resize: vertical; min-height: 120px; }
.form-dark input, .form-dark select, .form-dark textarea {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
  color: var(--white);
}
.form-dark label { color: rgba(255,255,255,.75); }
.form-dark input::placeholder, .form-dark textarea::placeholder { color: rgba(255,255,255,.35); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: color .2s;
}
.faq-q:hover { color: var(--blue); }
.faq-icon { font-size: 1.2rem; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { padding-bottom: 1.25rem; }

/* ── Map embed ── */
.map-frame { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); width: 100%; height: 380px; border: none; }

/* ── Footer ── */
.footer { background: #0d1f30; color: rgba(255,255,255,.7); padding: 4rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: 1rem;
}
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 280px; }
.footer h5 {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: background .2s;
}
.footer-social a:hover { background: var(--blue); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--white); }
.footer-501 {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: .3rem .9rem;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
}

/* ── Animations ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-in { opacity: 0; transition: opacity .7s ease; }
.fade-in.visible { opacity: 1; }

/* ── Utility ── */
.text-center { text-align: center; }
.mt-1  { margin-top: .5rem;  }
.mt-2  { margin-top: 1rem;   }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem;   }
.mb-1  { margin-bottom: .5rem;  }
.mb-2  { margin-bottom: 1rem;   }
.mb-3  { margin-bottom: 1.5rem; }
.mb-4  { margin-bottom: 2rem;   }
.mb-6  { margin-bottom: 3rem;   }
.gap-2 { gap: 1rem; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split-img .float-card { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .timeline::before { left: 2.5rem; }
  .timeline-year { width: 3rem; font-size: 1.1rem; }
}
@media (max-width: 768px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 3.5rem 0; }
  .stats-bar .stat-item { flex: 1 1 50%; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
  .cta-banner { padding: 3rem 1.5rem; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .pet-grid { grid-template-columns: 1fr; }
}
