.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  /* Warm forest green — bright enough to feel fresh, matches logo green */
  background: linear-gradient(145deg, #6BA032 0%, #4E7A22 45%, #8B4A2A 100%);
  overflow: hidden;
}

/* Soft paw texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='rgba(255,255,255,0.045)'%3E%3Ccircle cx='30' cy='20' r='8'/%3E%3Ccircle cx='50' cy='15' r='8'/%3E%3Ccircle cx='65' cy='25' r='8'/%3E%3Ccircle cx='25' cy='40' r='8'/%3E%3Cellipse cx='45' cy='45' rx='18' ry='22'/%3E%3C/svg%3E");
  background-size: 130px;
  z-index: 0;
  animation: floatPaws 28s linear infinite;
}

@keyframes floatPaws {
  from { background-position: 0 0; }
  to   { background-position: 130px 130px; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--nav-height) + 2.5rem) var(--container-padding) 3rem;
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content-lower {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 1.5rem;
  margin: 0;
  z-index: 5;
  width: 100%;
  max-width: 680px;
}

/* Logo — white card, centred */
.hero-logo-wrap {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  animation: logoFloat 4s ease-in-out infinite;
}

.hero-logo {
  width: min(300px, 68vw);
  height: auto;
  display: block;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

.hero h1 { display: none; }

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-lg);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.9rem;
  letter-spacing: 0.06em;
}

.hero-motto {
  font-family: var(--font-accent);
  font-size: var(--fs-accent);
  color: #FFE08A;
  margin-bottom: 2rem;
  line-height: 1.4;
  text-shadow:
    0 3px 16px rgba(0,0,0,0.95),
    0 0 40px rgba(0,0,0,0.8),
    0 1px 2px rgba(0,0,0,1);
  background: rgba(0,0,0,0.55);
  padding: 0.7rem 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-weight: 700;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: rgba(255,255,255,0.55);
  stroke-width: 2;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40%  { transform: translateX(-50%) translateY(-10px); }
  60%  { transform: translateX(-50%) translateY(-5px); }
}
