/* ============================================================
   VFW POST 7760 — Portage, Indiana  |  Shared Stylesheet
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;600;700&family=Source+Sans+3:wght@300;400;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --navy:    #1C2B4B;
  --red:     #BF0A30;
  --white:   #FFFFFF;
  --offwhite:#F4F5F7;
  --gold:    #C5A028;
  --gray:    #4A4A4A;
  --lightgray: #E8E9EC;
  --shadow:  0 2px 12px rgba(0,0,0,0.12);
  --radius:  4px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', Arial, sans-serif;
  color: var(--gray);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
}

h1, h2, h3, h4 {
  font-family: 'EB Garamond', Georgia, serif;
  color: var(--navy);
  line-height: 1.2;
}

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

/* --- Utility --- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.section--alt { background: var(--offwhite); }

.section-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.section-intro {
  font-size: 1.1rem;
  max-width: 640px;
  color: #555;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  border: none;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn--primary {
  background: var(--red);
  color: var(--white);
}
.btn--primary:hover { background: #a0091f; }

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn--secondary:hover { background: rgba(255,255,255,0.15); }

.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover { background: #13203a; }

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 2px solid var(--gold);
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar a { color: rgba(255,255,255,0.75); }
.topbar a:hover { color: var(--white); text-decoration: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow);
  border-bottom: 3px solid var(--red);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav__logo {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid var(--gold);
}

.nav__logo svg { width: 32px; height: 32px; }

.nav__title {
  display: flex;
  flex-direction: column;
}

.nav__title strong {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.1;
}

.nav__title span {
  font-size: 12px;
  color: #777;
  letter-spacing: 0.5px;
}

.nav__links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
}

.nav__links a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.3px;
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}

.nav__links a:hover,
.nav__links a.active {
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
}

.nav__links .nav__cta a {
  background: var(--red);
  color: var(--white);
  padding: 8px 18px;
}
.nav__links .nav__cta a:hover { background: #a0091f; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.2s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, #2a3f6f 60%, #3a1c2e 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.02) 40px,
      rgba(255,255,255,0.02) 41px
    );
}

.hero__stars {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  background:
    radial-gradient(circle at 70% 30%, rgba(197,160,40,0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(191,10,48,0.1) 0%, transparent 50%);
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 660px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 20px;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--red) 33%, var(--white) 33%, var(--white) 66%, var(--navy) 66%);
}

/* Photo hero variant */
.hero--photo {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(28, 43, 75, 0.88) 0%,
    rgba(28, 43, 75, 0.75) 50%,
    rgba(28, 43, 75, 0.40) 100%
  );
  z-index: 1;
}

.hero--photo .container {
  position: relative;
  z-index: 2;
}

/* ============================================================
   QUICK LINKS / CARDS
   ============================================================ */
.quicklinks {
  background: var(--navy);
  padding: 0;
}

.quicklinks__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.quicklinks__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
  cursor: pointer;
}

.quicklinks__item:last-child { border-right: none; }
.quicklinks__item:hover { background: rgba(255,255,255,0.08); text-decoration: none; color: var(--white); }

.quicklinks__icon {
  width: 44px;
  height: 44px;
  background: rgba(197,160,40,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(197,160,40,0.4);
}

.quicklinks__icon svg { width: 22px; height: 22px; color: var(--gold); }

.quicklinks__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border-top: 4px solid var(--red);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.15); }

.card__body { padding: 28px; }

.card__icon {
  width: 48px;
  height: 48px;
  background: var(--offwhite);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card__icon svg { width: 24px; height: 24px; color: var(--navy); }

.card__title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.card__text { font-size: 15px; color: #666; margin-bottom: 20px; }

.card__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card__link:hover { text-decoration: underline; }

/* ============================================================
   EVENTS LIST
   ============================================================ */
.events-list { display: flex; flex-direction: column; gap: 16px; }

.event-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 24px;
  border-left: 4px solid var(--red);
}

.event-date {
  flex-shrink: 0;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 10px 16px;
  min-width: 64px;
}

.event-date__month {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--gold);
}

.event-date__day {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
}

.event-info h3 { font-size: 1.1rem; margin-bottom: 4px; }
.event-info p { font-size: 14px; color: #666; margin: 0; }

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.event-action-btn {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  background: var(--offwhite);
  border: 1px solid var(--lightgray);
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.event-action-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  text-decoration: none;
}

.event-tag {
  display: inline-block;
  background: var(--offwhite);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 20px;
  margin-top: 6px;
}

/* ============================================================
   DOCUMENTS
   ============================================================ */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--lightgray);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.doc-item:hover {
  border-color: var(--navy);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  text-decoration: none;
}

.doc-icon {
  width: 44px;
  height: 44px;
  background: var(--offwhite);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.doc-icon svg { width: 22px; height: 22px; color: var(--red); }

.doc-meta strong { display: block; font-size: 15px; color: var(--navy); font-family: 'Source Sans 3', sans-serif; font-weight: 600; }
.doc-meta span { font-size: 12px; color: #888; }

/* ============================================================
   RESOURCES
   ============================================================ */
.resource-categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }

.resource-category h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
}

.resource-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.resource-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  font-size: 15px;
  transition: color 0.15s;
}

.resource-list li a:hover { color: var(--navy); text-decoration: none; }

.resource-list li a::before {
  content: '→';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

.gallery-item {
  aspect-ratio: 4/3;
  background: var(--lightgray);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, #2a3f6f 100%);
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  gap: 8px;
}

.gallery-placeholder svg { width: 32px; height: 32px; opacity: 0.4; }

/* ============================================================
   MEMBERSHIP / JOIN
   ============================================================ */
.eligibility-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.eligibility-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  border-left: 3px solid var(--gold);
}

.eligibility-list li strong { display: block; color: var(--navy); margin-bottom: 2px; }
.eligibility-list li span { font-size: 14px; color: #666; }

.check-icon {
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-icon svg { width: 14px; height: 14px; color: var(--navy); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1px solid var(--lightgray);
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  color: var(--gray);
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(28,43,75,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--red);
  color: var(--white);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}

.stat-number {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 6px;
  display: block;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #243560 100%);
  padding: 60px 0;
  color: var(--white);
  border-bottom: 4px solid var(--red);
}

.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 10px; }

.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.1rem; max-width: 560px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--white); text-decoration: none; }
.breadcrumb span { opacity: 0.5; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand strong {
  display: block;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 6px;
}

.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__col h4 {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__col ul a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer__col ul a:hover { color: var(--white); text-decoration: none; }

.footer__address { font-size: 14px; line-height: 1.8; }
.footer__address a { color: rgba(255,255,255,0.7); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__stripe {
  height: 6px;
  background: linear-gradient(90deg, var(--red) 33%, var(--white) 33%, var(--white) 66%, var(--navy) 66%);
  margin-top: 0;
}

/* ============================================================
   ALERT BANNER
   ============================================================ */
.alert-banner {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
}

.alert-banner a { color: var(--navy); text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: 1; }
}


/* ============================================================
   LAYOUT GRID CLASSES (for responsive control)
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.officers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.events-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.membership-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 56px;
  align-items: start;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.pas-chicken-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--red);
}

/* ============================================================
   ENHANCED MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: 1; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .officers-grid { grid-template-columns: 1fr; gap: 16px; }
  .events-layout { grid-template-columns: 1fr; }
  .membership-layout { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  /* Nav */
  .nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 16px;
    gap: 0;
    border-top: 2px solid var(--red);
    z-index: 998;
  }
  .nav__links.open { display: flex; }
  .nav__links li { width: 100%; }
  .nav__links a { padding: 12px 16px; width: 100%; border-radius: 0; }
  .nav { position: sticky; }
  .nav__inner { position: relative; }
  .nav__hamburger { display: flex; }
  .nav__title strong { font-size: 1rem; }
  .nav__logo { width: 44px; height: 44px; }

  /* Topbar */
  .topbar__inner { flex-direction: column; text-align: center; gap: 4px; }

  /* Hero */
  .hero { min-height: 380px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero h1 { font-size: 2rem; }

  /* Sections */
  .section { padding: 48px 0; }
  .page-hero { padding: 40px 0; }

  /* Quick links */
  .quicklinks__grid { grid-template-columns: repeat(3, 1fr); }
  .quicklinks__item { padding: 18px 10px; }
  .quicklinks__label { font-size: 11px; }

  /* Pa's Chicken */
  .pas-chicken-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 20px;
    gap: 16px;
  }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 2.2rem; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

  /* Benefits grid on membership */
  .benefit-grid { grid-template-columns: 1fr; }

  /* Resources */
  .resource-categories { grid-template-columns: 1fr; }
  .doc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .quicklinks__grid { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: 1fr; }
  .event-item { flex-direction: column; gap: 10px; }
  .event-date { align-self: flex-start; }
  .hero { min-height: 320px; }
  .hero__content { padding: 20px 0; }
  .section-title { font-size: 1.6rem; }
  .pas-chicken-card { padding: 20px 16px; }
  .btn { padding: 11px 20px; font-size: 14px; }
  .nav__inner { padding: 10px 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .officers-grid { grid-template-columns: 1fr; }
}
