:root {
  --accent: #8bc34a;
  --text: #333;
  --muted: #6b7280;
  --light: #f7f7fb;   
}

.nav-links a.active { color: var(--accent); }
.nav-links a.active:hover { color: var(--accent); }

.about {
  padding: 56px 0 28px;
  background: var(--light);
  color: var(--text);
}

.about-inner {
  padding: 0 10%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.about h1 {
  color: var(--accent);
  font-weight: 700;
  line-height: 1.15;
  font-size: clamp(2rem, 2.4vw + 1rem, 2.8rem);
  margin-bottom: 8px;
}

.about p {
  color: var(--muted);
  font-size: clamp(1rem, .4vw + .95rem, 1.15rem);
  max-width: 85ch;
  margin: 0 auto 58px;
  line-height: 1.7;
}

.about-gallery {
  margin: 36px auto 0;
  padding: 0;                        
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  justify-items: center;
}

.about-gallery img {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 5 / 5;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

@media (max-width: 900px) {
  .about-gallery { grid-template-columns: 1fr; }
}
