/* ===========================
   LALITPUR DAIRY COOPERATIVE
   style.css
=========================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #00A651;
  --green-dark: #007A3D;
  --green-light: #E8F5EE;
  --blue: #0D47A1;
  --blue-mid: #1565C0;
  --red: #C62828;
  --white: #FFFFFF;
  --off-white: #F5FAF6;
  --gray-light: #F0F4F1;
  --gray-mid: #9E9E9E;
  --gray-dark: #424242;
  --text-main: #1A2E1A;
  --text-muted: #546E54;
}

html { scroll-behavior: smooth; scroll-margin-top: 110px; }
body { font-family: 'Inter', 'Noto Sans Devanagari', sans-serif; color: var(--text-main); background: var(--white); }

/* ---- TOP BAR ---- */
.topbar {
  background: var(--green-dark);
  color: #fff;
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 3px solid var(--red);
}
.topbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.topbar a { color: #cce8d4; text-decoration: none; margin-left: 14px; font-size: 12px; }
.topbar a:hover { color: #fff; }
.topbar-contact span { margin-right: 18px; }
.topbar-contact svg { vertical-align: -3px; margin-right: 4px; }

/* ---- NAV ---- */
nav {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,120,60,0.10);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 3px solid var(--green);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.nav-logo { display: flex; align-items: center; gap: 8px; padding: 10px 0; text-decoration: none; }
.nav-logo img { width: 80px; height: 80px; object-fit: contain; }
.nav-logo-text { line-height: 1.3; }
.nav-logo-text .org-name {
  font-family: 'Tiro Devanagari Hindi', serif;
  font-size: 22px; font-weight: 700;
  color: var(--blue); display: block;
}
.nav-logo-text .org-sub {
  font-size: 13px; font-weight: 799; color: var(--green-dark); letter-spacing: 0.03em;
}
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a {
  display: block; padding: 22px 16px;
  text-decoration: none; font-size: 14px; font-weight: 500;
  color: var(--text-main);
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  font-family: 'Noto Sans Devanagari', sans-serif;
}
.nav-links a:hover { color: var(--green-dark); border-bottom-color: var(--green); }
.nav-links a.active { color: var(--green-dark); border-bottom-color: var(--green); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-main); margin: 5px 0; transition: 0.3s; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, #005C2E 50%, #003D20 100%);
  color: var(--white);
  padding: 80px 24px 60px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 400'%3E%3Cellipse cx='900' cy='350' rx='500' ry='300' fill='rgba(255,255,255,0.03)'/%3E%3Cellipse cx='200' cy='100' rx='400' ry='200' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") center/cover no-repeat;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 60px; position: relative;
}
.hero-badge {
  flex-shrink: 0;
  width: 160px; height: 160px;
  background: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 5px solid var(--green);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
  animation: heroPulse 3s ease-in-out infinite;
}
.hero-badge img { width: 130px; height: 130px; object-fit: contain; }
@keyframes heroPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255,255,255,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(255,255,255,0.1); }
}
.hero-text { flex: 1; }
.hero-tagline {
  font-family: 'Tiro Devanagari Hindi', serif;
  font-size: 13px; letter-spacing: 0.08em;
  color: #90EBA8; text-transform: uppercase; margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.hero-tagline::before, .hero-tagline::after { content: '★'; color: var(--red); font-size: 10px; }
.hero-title {
  font-family: 'Tiro Devanagari Hindi', serif;
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 700; line-height: 1.35;
  color: var(--white); margin-bottom: 10px;
}
.hero-subtitle { font-size: 14px; color: #a8d8b8; margin-bottom: 28px; font-family: 'Noto Sans Devanagari', sans-serif; }
.hero-english { font-size: 13px; color: #7EC899; margin-top: 6px; font-style: italic; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- BUTTONS ---- */
.btn-primary {
  background: var(--white); color: var(--green-dark);
  padding: 11px 24px; border-radius: 6px;
  font-weight: 600; font-size: 14px; text-decoration: none;
  border: 2px solid var(--white);
  transition: background 0.2s, color 0.2s;
}
.btn-primary:hover { background: var(--green-light); }
.btn-outline {
  background: transparent; color: var(--white);
  padding: 11px 24px; border-radius: 6px;
  font-weight: 600; font-size: 14px; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* ---- STATS STRIP ---- */
.stats-strip { background: var(--blue); color: white; padding: 0; }
.stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 24px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,0.15); }
.stat-item:last-child { border-right: none; }
.stat-number { font-size: 32px; font-weight: 700; color: #90CAF9; line-height: 1; }
.stat-label { font-size: 12px; color: #BBDEFB; margin-top: 4px; font-family: 'Noto Sans Devanagari', sans-serif; }

/* ---- SECTIONS (shared) ---- */
section { padding: 70px 24px; scroll-margin-top: 70px; }
[id] { scroll-margin-top: 70px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  color: var(--green-dark); text-transform: uppercase; margin-bottom: 8px;
}
.section-title {
  font-family: 'Tiro Devanagari Hindi', serif;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--blue); margin-bottom: 14px; line-height: 1.3;
}
.section-desc {
  font-size: 15px; color: var(--text-muted); max-width: 640px; line-height: 1.75;
  font-family: 'Noto Sans Devanagari', sans-serif;
}
.divider { width: 48px; height: 4px; background: var(--green); border-radius: 2px; margin: 16px 0; }

/* ---- BOARD MEMBERS ---- */
.board { background: var(--white); }
.board-tabs { margin-top: 40px; }
.board-tab-buttons {
  display: flex; gap: px; flex-wrap: wrap; margin-bottom: 24px;
  border-bottom: 2px solid #E0EEE4; padding-bottom: 0;
}
.board-tab-btn {
  background: transparent; border: none; padding: 12px 16px;
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  cursor: pointer; transition: all 0.2s; font-family: 'Noto Sans Devanagari', sans-serif;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
}
.board-tab-btn:hover { color: var(--green-dark); }
.board-tab-btn.active { color: var(--green-dark); border-bottom-color: var(--green); }
.board-tab-content { margin-top: 24px; }
.board-term { display: none; }
.board-term.active { display: block; }
.board-term h3 { font-family: 'Noto Sans Devanagari', sans-serif; font-size: 18px; color: var(--blue); margin-bottom: 24px; }
.board-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 20px;
}
.board-member {
  background: var(--white); border-radius: 10px; overflow: hidden;
  text-align: center; border: 1.5px solid #C8E6C9; transition: all 0.2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.board-member:hover { box-shadow: 0 6px 16px rgba(0,120,60,0.15); transform: translateY(-4px); }
.board-member-photo {
  width: 100%; height: 140px; background: var(--green-light);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.board-member-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.board-member-info { padding: 12px 12px; }
.board-member p { font-family: 'Noto Sans Devanagari', sans-serif; font-size: 13px; font-weight: 600; color: var(--blue); margin-bottom: 4px; line-height: 1.3; }
.board-member span { font-size: 11px; color: var(--green-dark); font-weight: 600; font-family: 'Noto Sans Devanagari', sans-serif; }

/* ---- ABOUT ---- */
.about { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 40px; }
.about-image-box {
  background: var(--green-light);
  border-radius: 12px; padding: 40px;
  display: flex; align-items: center; justify-content: center;
  min-height: 280px;
  position: relative; overflow: hidden;
  border: 2px solid rgba(0,166,81,0.2);
}
.about-image-box img { width: 220px; height: 220px; object-fit: contain; }
.about-established {
  position: absolute; bottom: 16px; right: 16px;
  background: var(--blue); color: white;
  padding: 8px 14px; border-radius: 6px;
  font-size: 12px; font-family: 'Noto Sans Devanagari', sans-serif;
}
.about-established span { font-size: 16px; font-weight: 700; display: block; }
.about-points { list-style: none; margin-top: 20px; }
.about-points li {
  padding: 10px 0 10px 24px; position: relative;
  font-size: 15px; color: var(--text-muted); line-height: 1.6;
  border-bottom: 1px solid rgba(0,166,81,0.1);
  font-family: 'Noto Sans Devanagari', sans-serif;
}
.about-points li::before {
  content: ''; position: absolute; left: 0; top: 18px;
  width: 10px; height: 10px; background: var(--green); border-radius: 50%;
}

/* ---- OBJECTIVES ---- */
.objectives { background: var(--white); }
.obj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.obj-card {
  background: var(--white); border: 1.5px solid #C8E6C9;
  border-radius: 10px; padding: 28px 24px;
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative; overflow: hidden;
}
.obj-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--green);
}
.obj-card:hover { box-shadow: 0 6px 24px rgba(0,120,60,0.12); transform: translateY(-3px); }
.obj-icon {
  width: 52px; height: 52px; background: var(--green-light);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 24px;
}
.obj-card h3 { font-family: 'Noto Sans Devanagari', sans-serif; font-size: 15px; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.obj-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; font-family: 'Noto Sans Devanagari', sans-serif; }

/* ---- CHAIRMAN ---- */
.chairman { background: var(--green-dark); color: white; padding: 70px 24px; }
.chairman-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.chairman-inner .section-title { color: #90EBA8; }
.chairman-inner .divider { margin: 16px auto; background: rgba(255,255,255,0.3); }
.chairman-quote {
  font-family: 'Tiro Devanagari Hindi', serif;
  font-size: clamp(16px, 2.5vw, 20px); line-height: 1.8;
  color: rgba(255,255,255,0.92); margin: 28px 0;
  padding: 28px 32px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px; border-left: 4px solid var(--green);
  text-align: left;
}
.chairman-sig { margin-top: 20px; }
.chairman-sig strong { font-size: 16px; color: #90EBA8; display: block; }
.chairman-sig span { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ---- NEWS ---- */
.news { background: var(--off-white); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.news-card {
  background: var(--white); border-radius: 10px;
  overflow: hidden; border: 1px solid #E0EEE4;
  transition: box-shadow 0.25s, transform 0.25s;
}
.news-card:hover { box-shadow: 0 6px 24px rgba(0,120,60,0.10); transform: translateY(-2px); }
.news-card-img {
  height: 180px; background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; position: relative;
}
.news-date {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: white;
  padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 600;
}
.news-card-body { padding: 20px; }
.news-card-body h3 {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 15px; font-weight: 700; color: var(--blue);
  margin-bottom: 8px; line-height: 1.45;
}
.news-card-body p { font-size: 13px; color: var(--text-muted); line-height: 1.65; font-family: 'Noto Sans Devanagari', sans-serif; }
.news-card-link { display: inline-block; margin-top: 14px; font-size: 13px; color: var(--green-dark); font-weight: 600; text-decoration: none; }
.news-card-link:hover { text-decoration: underline; }

/* ---- MEMBERS ---- */
.members { background: var(--white); }
.members-table-wrap { margin-top: 36px; overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th { background: var(--blue); color: white; padding: 12px 16px; text-align: left; font-family: 'Noto Sans Devanagari', sans-serif; font-weight: 600; }
td { padding: 11px 16px; border-bottom: 1px solid #E8F0EB; color: var(--text-muted); font-family: 'Noto Sans Devanagari', sans-serif; }
tr:hover td { background: var(--off-white); }
.badge-active { background: #E8F5E9; color: #2E7D32; padding: 3px 10px; border-radius: 20px; font-size: 12px; }

/* ---- GALLERY ---- */
.gallery { background: var(--off-white); }
.gallery-slider { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.gallery-track {
  display: flex; gap: 16px; overflow-x: auto; padding: 8px 0;
  scroll-behavior: smooth;
}
.gallery-track::-webkit-scrollbar { height: 10px; }
.gallery-track::-webkit-scrollbar-thumb { background: rgba(0,120,60,0.35); border-radius: 99px; }
.gallery-track::-webkit-scrollbar-track { background: rgba(255,255,255,0.8); }
.gallery-item {
  min-width: 220px; min-height: 220px;
  flex: 0 0 220px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(180, 249, 187, 0.45), rgba(255,255,255,0.05)), var(--green-light);
  border: 1.5px solid rgba(0,166,81,0.2);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,0.12); }
.gallery-item-icon { font-size: 42px; }
.gallery-item span {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.3;
}
.gallery-nav {
  width: 48px; height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(0,166,81,0.2);
  background: var(--white);
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}
.gallery-nav:hover { transform: translateY(-2px); background: #f8fff7; }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.86);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 200;
}
.lightbox.active { display: flex; }
.lightbox-content {
  position: relative;
  width: min(1080px, 100%);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-img {
  width: 100%;
  min-height: 60vh;
  border-radius: 20px;
  background: rgba(255,255,255,0.04) center/contain no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lightbox-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.18));
}
.lightbox-caption {
  margin-top: 18px;
  color: #f7f7f7;
  font-size: 15px;
  line-height: 1.6;
  font-family: 'Noto Sans Devanagari', sans-serif;
  text-align: center;
}
.lightbox-close,
.lightbox-arrow {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox-close:hover,
.lightbox-arrow:hover { background: rgba(255,255,255,0.22); transform: translateY(-1px); }
.lightbox-close { top: -24px; right: -24px; }
.lightbox-arrow.left { left: -24px; top: 50%; transform: translate(-0%, -50%); }
.lightbox-arrow.right { right: -24px; top: 50%; transform: translate(0%, -50%); }
@media (max-width: 900px) {
  .gallery-slider { flex-direction: column; align-items: stretch; }
  .gallery-nav { width: 44px; height: 44px; }
  .gallery-item { min-width: 180px; min-height: 200px; padding: 22px 14px; }
  .lightbox-content { width: 100%; }
  .lightbox-arrow.left { left: 8px; }
  .lightbox-arrow.right { right: 8px; }
  .lightbox-close { top: 8px; right: 8px; }
}

/* ---- CONTACT ---- */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 40px; }
.contact-info h3 { font-size: 18px; color: var(--blue); margin-bottom: 20px; font-family: 'Noto Sans Devanagari', sans-serif; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.contact-icon {
  width: 40px; height: 40px; background: var(--green-light);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 18px;
}
.contact-row-text strong { font-size: 13px; color: var(--gray-mid); display: block; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-row-text span { font-size: 15px; color: var(--text-main); font-family: 'Noto Sans Devanagari', sans-serif; }
.contact-form { background: var(--off-white); border-radius: 12px; padding: 32px; border: 1.5px solid #C8E6C9; }
.contact-form h3 { font-size: 18px; color: var(--blue); margin-bottom: 20px; font-family: 'Noto Sans Devanagari', sans-serif; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 10px 14px; border-radius: 6px;
  border: 1.5px solid #C8E6C9; font-size: 14px;
  font-family: 'Noto Sans Devanagari', 'Inter', sans-serif;
  background: white; color: var(--text-main); outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  background: var(--green-dark); color: white;
  padding: 12px 28px; border-radius: 6px; border: none;
  font-size: 14px; font-weight: 600; cursor: pointer; width: 100%;
  font-family: 'Noto Sans Devanagari', 'Inter', sans-serif;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--green); }
.membership-box {
  margin-top: 24px; padding: 20px;
  background: var(--green-light);
  border-radius: 10px; border: 1.5px solid #C8E6C9;
}
.membership-box p {
  font-size: 13px; font-family: 'Noto Sans Devanagari', sans-serif;
  color: var(--text-muted); line-height: 1.7;
}
.membership-box strong { color: var(--green-dark); }

/* ---- FOOTER ---- */
footer { background: #0D1F0D; color: rgba(255,255,255,0.75); padding: 50px 24px 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { width: 60px; height: 52px; }
.footer-logo-text { font-family: 'Tiro Devanagari Hindi', serif; font-size: 14px; color: #90EBA8; line-height: 1.4; }
.footer-desc { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.55); font-family: 'Noto Sans Devanagari', sans-serif; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #90EBA8; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; font-family: 'Noto Sans Devanagari', sans-serif; transition: color 0.2s; }
.footer-col ul li a:hover { color: #90EBA8; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 10px; align-items: flex-start; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.6); font-family: 'Noto Sans Devanagari', sans-serif; }
.footer-bottom {
  margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  font-size: 12px; color: rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-stars { color: var(--red); letter-spacing: 4px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: white; flex-direction: column; box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; border-bottom: 1px solid #f0f0f0; }
  .hamburger { display: block; }
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-cta { justify-content: center; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .obj-grid, .news-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; }
}
