/* =============================================
   SteamShow40 — National Pike Steam, Gas & Horse Association
   Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@400;500;600&display=swap');

/* --- Variables --- */
:root {
  --green-dark:  #1C3610;
  --green-mid:   #2D5A1B;
  --green-light: #3D7A24;
  --gold:        #C4922A;
  --gold-light:  #E8B84B;
  --cream:       #F4EDD8;
  --cream-dark:  #E8DFC8;
  --dark:        #111111;
  --text:        #2A2A2A;
  --text-light:  #666666;
  --white:       #FFFFFF;
  --nav-height:  70px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

/* --- Hero Date Display --- */
.event-date-hero { margin: 28px 0 20px; }
.event-date-hero .event-month-year {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.event-date-hero .event-days {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.9;
  letter-spacing: -0.02em;
  display: block;
}
.event-date-hero .event-day-names {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.16em;
  margin-top: 20px;
  display: block;
}

/* --- Countdown --- */
.countdown-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 16px 24px;
  display: inline-block;
  margin-bottom: 36px;
}
.countdown-title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.countdown {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
}
.cd-item span {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: block;
}
.cd-item label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
  cursor: default;
}
.cd-sep {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
  opacity: 0.7;
}

/* --- Featured Event --- */
.featured-event {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.featured-event-image {
  background: var(--green-dark);
  background-image: radial-gradient(ellipse at 40% 60%, rgba(45,90,27,0.5) 0%, transparent 70%);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-event-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.featured-event-content {
  padding: 48px 48px 48px 40px;
}
.featured-event-content h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--green-dark);
  margin-bottom: 6px;
}
.featured-event-date {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}
.featured-event-content > p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.feature-tag {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 2px;
}

@media (max-width: 820px) {
  .featured-event { grid-template-columns: 1fr; }
  .featured-event-image { min-height: 240px; }
  .featured-event-content { padding: 32px 24px; }
}

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

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.btn-primary:hover { background: var(--gold-light); }

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

.btn-dark {
  background: var(--green-dark);
  color: var(--white);
}
.btn-dark:hover { background: var(--green-mid); }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--green-dark);
  z-index: 1000;
  border-bottom: 2px solid var(--gold);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.nav-logo svg,
.nav-logo img {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .org-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

.nav-logo-text .domain {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* --- Hero --- */
.hero {
  padding: calc(var(--nav-height) + 64px) 0 72px;
  background: var(--green-dark);
  background-image:
    radial-gradient(ellipse at 30% 60%, rgba(45, 90, 27, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(196, 146, 42, 0.12) 0%, transparent 50%),
    linear-gradient(rgba(28,54,16,0.78), rgba(28,54,16,0.72)),
    url('../images/486545582_9526426827425355_2985669802752220126_n.jpg');
  background-size: auto, auto, auto, cover;
  background-position: center, center, center, center top;
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 146, 42, 0.15);
  border: 1px solid rgba(196, 146, 42, 0.4);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.05;
}

.hero h1 span { color: var(--gold); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-dates {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.date-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 16px 24px;
  color: var(--white);
}

.date-badge .show-type {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.date-badge .show-date {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.date-badge .show-detail {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--gold);
  padding: 20px 0;
}

.stats-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
  text-align: center;
}

.stat-item {
  color: var(--dark);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* --- Events Section --- */
.events-section {
  padding: 72px 0;
  background: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-dark);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.event-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.event-card-header {
  padding: 28px 32px 20px;
  border-bottom: 3px solid var(--gold);
}

.event-card-header.spring { border-color: var(--green-light); }
.event-card-header.annual { border-color: var(--gold); }

.event-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green-mid);
  padding: 3px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 12px;
}

.event-tag.annual-tag { background: var(--gold); color: var(--dark); }

.event-card h3 {
  font-size: 1.6rem;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.event-card-date {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
}

.event-card-body {
  padding: 24px 32px 32px;
}

.event-card-body p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.event-details-list {
  list-style: none;
  margin-bottom: 28px;
}

.event-details-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.event-details-list li:last-child { border-bottom: none; }

.event-details-list .icon {
  color: var(--gold);
  font-style: normal;
  flex-shrink: 0;
  width: 18px;
}

/* --- About Section --- */
.about-section {
  padding: 72px 0;
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--green-dark);
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.8;
}

.about-highlights {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.highlight-icon {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.1rem;
}

.highlight-text strong {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.highlight-text span {
  font-size: 0.875rem;
  color: var(--text-light);
}

.about-image-area {
  background: var(--green-dark);
  border-radius: 4px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-image-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 60%, rgba(45,90,27,0.4) 0%, transparent 70%);
}

.photo-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.4);
  position: relative;
  z-index: 1;
  padding: 40px;
}

.photo-placeholder svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  opacity: 0.4;
}

.photo-placeholder p {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* --- Photo CTA --- */
.photo-cta {
  background: var(--green-dark);
  padding: 60px 0;
  text-align: center;
  background-image: radial-gradient(ellipse at 50% 100%, rgba(196,146,42,0.15) 0%, transparent 60%);
}

.photo-cta h3 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 12px;
}

.photo-cta p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

/* --- Footer --- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 56px 0 24px;
}

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

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand .footer-logo svg,
.footer-brand .footer-logo img { width: 40px; height: 40px; }

.footer-brand .footer-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.875rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 0.875rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: var(--gold);
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--gold-light); }

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: calc(var(--nav-height) + 60px) 0 60px;
  background: var(--green-dark);
  background-image:
    radial-gradient(ellipse at 30% 70%, rgba(45,90,27,0.5) 0%, transparent 60%),
    linear-gradient(rgba(28,54,16,0.80), rgba(28,54,16,0.76)),
    url('../images/482029959_1032107932284188_7692043855777146470_n.jpg');
  background-size: auto, auto, cover;
  background-position: center, center, center top;
  text-align: center;
}

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

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto;
}

/* --- About Page --- */
.page-section {
  padding: 80px 0;
}

.page-section:nth-child(even) { background: var(--cream); }

.content-block {
  max-width: 780px;
  margin: 0 auto;
}

.content-block h2 {
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 20px;
}

.content-block p {
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 18px;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.founder-card:nth-child(1) { grid-column: 1 / span 2; }
.founder-card:nth-child(2) { grid-column: 3 / span 2; }
.founder-card:nth-child(3) { grid-column: 5 / span 2; }
.founder-card:nth-child(4) { grid-column: 2 / span 2; }
.founder-card:nth-child(5) { grid-column: 4 / span 2; }

.founder-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-top: 3px solid var(--gold);
  padding: 20px 16px;
  text-align: center;
  border-radius: 2px;
}

.founder-card .founder-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-dark);
}

.callout-box {
  background: var(--green-dark);
  color: var(--white);
  padding: 36px 40px;
  border-radius: 4px;
  margin: 36px 0;
  border-left: 4px solid var(--gold);
}

.callout-box p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0;
}

.callout-box strong { color: var(--gold); }

/* --- Events Page --- */
.admission-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.95rem;
}

.admission-table th {
  background: var(--green-dark);
  color: var(--white);
  padding: 12px 20px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admission-table td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--text);
}

.admission-table tr:last-child td { border-bottom: none; }
.admission-table tr:nth-child(even) td { background: var(--cream); }

/* --- Board & Leadership --- */
.officers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin: 28px 0 36px;
}
.officer-card {
  background: var(--green-dark);
  border-radius: 4px;
  padding: 20px 18px;
  text-align: center;
}
.officer-card .officer-title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.officer-card .officer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.board-subsection {
  margin: 36px 0 0;
}
.board-subsection h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--cream-dark);
}
.directors-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin-bottom: 8px;
}
.director-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
  padding: 8px 14px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 3px 3px 0;
}
.director-term {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-light);
  white-space: nowrap;
  flex-shrink: 0;
}
.committees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 16px;
}
.committee-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-top: 3px solid var(--green-mid);
  border-radius: 0 0 4px 4px;
  padding: 20px;
}
.committee-card .committee-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.committee-card .committee-chair {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.committee-card .committee-members {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- Gallery Page --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  aspect-ratio: 4/3;
  background: var(--green-dark);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

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

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

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  gap: 8px;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-info-item strong {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.contact-info-item span, .contact-info-item a {
  font-size: 0.95rem;
  color: var(--text-light);
}

.contact-info-item a:hover { color: var(--gold); }

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--green-mid);
}

.contact-form textarea { resize: vertical; min-height: 140px; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .events-grid,
  .about-inner,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-image-area { min-height: 260px; }

  .footer-grid { gap: 32px; }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--green-dark);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 1rem;
  }

  .nav-links a::after { display: none; }

  .nav-toggle { display: flex; }

  .hero-cta { flex-direction: column; }

  .hero-dates { flex-direction: column; gap: 12px; }

  .stats-inner { gap: 24px; }

  .founders-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-card:nth-child(n) { grid-column: auto / span 1; }
}
