.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border: 0;
  border-radius: 999px;
  background: var(--leaf-dark);
  color: white;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(47, 77, 50, 0.24);
}

.button:hover { transform: translateY(-1px); }

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--leaf-dark);
  border: 1px solid var(--border);
  box-shadow: none;
}

.button-small {
  min-height: 38px;
  padding: 0.55rem 0.85rem;
  color: white !important;
  opacity: 1 !important;
}

.intro-copy, .watch-panel, .newsletter-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 4vw, 3rem);
}

.intro-copy p, .section-heading p, .watch-panel p, .newsletter-card p, .project-card p, .hen-card p, .video-placeholder p {
  color: var(--muted);
}

.principles {
  display: grid;
  gap: 1rem;
}

.principles article, .project-card, .hen-card, .video-placeholder, .social-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 42px rgba(31, 47, 31, 0.09);
}

.principles article, .project-card, .hen-card, .video-placeholder {
  padding: 1.25rem;
}

.principles span {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--clay);
  font-weight: 900;
}

.project-icon, .hen-portrait, .play {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 1.1rem;
  border-radius: 18px;
  background: var(--sage);
  font-size: 1.6rem;
}

.project-card a {
  color: var(--leaf-dark);
  font-weight: 900;
  text-decoration: none;
}

.hen-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255, 249, 236, 0.82));
}

.hen-portrait {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  background: var(--butter);
  font-size: 2rem;
}

.hen-photo-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 1rem;
  border-radius: 22px;
  overflow: hidden;
  background: var(--sage);
  box-shadow: 0 12px 30px rgba(31, 47, 31, 0.12);
}

.hen-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-cards {
  display: grid;
  gap: 0.85rem;
}

.social-card {
  padding: 1rem;
  text-decoration: none;
  display: grid;
  gap: 0.15rem;
}

.social-card span {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.88rem;
}

.social-card strong {
  color: var(--leaf-dark);
  font-size: 1.1rem;
}

.video-placeholder {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(33, 48, 36, 0.04), rgba(33, 48, 36, 0.16)),
    rgba(255, 255, 255, 0.66);
  color: inherit;
  text-decoration: none;
}

.video-placeholder[href]:hover {
  transform: translateY(-2px);
}

.play {
  background: var(--leaf-dark);
  color: white;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--leaf-dark);
  font-weight: 900;
}

input, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.82);
  color: var(--ink);
  font: inherit;
  font-weight: 500;
}

input:focus, textarea:focus {
  outline: 3px solid rgba(78, 122, 77, 0.22);
  border-color: var(--leaf);
}

.form-note, .fine-print {
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  border-top: 1px solid var(--border);
}

.site-footer p { margin-bottom: 0; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 900;
}

.footer-links a {
  color: var(--leaf-dark);
  text-decoration: none;
}

.fine-print { grid-column: 1 / -1; }

.hero-photo-card {
  background: var(--leaf-dark);
}

.hero-photo-card::before,
.hero-photo-card .sun,
.hero-photo-card .coop-card {
  display: none;
}

.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 47, 31, 0.02), rgba(31, 47, 31, 0.28));
  pointer-events: none;
}

.hero-photo-note {
  z-index: 1;
}

.project-card.has-image {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.project-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-card-body p {
  flex: 1;
}

.project-image-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sage);
}

.project-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card.has-image .project-icon {
  margin-top: -2.15rem;
  box-shadow: 0 14px 30px rgba(31, 47, 31, 0.16);
  border: 3px solid rgba(255, 249, 236, 0.92);
}

.snapshot-card {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 42px rgba(31, 47, 31, 0.09);
  overflow: hidden;
}

.snapshot-image-frame {
  aspect-ratio: 4 / 3;
  background: var(--sage);
  overflow: hidden;
}

.snapshot-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.snapshot-card figcaption {
  padding: 1rem;
  color: var(--muted);
  font-weight: 800;
}
