/* ============================================
   Gillsville, Georgia — Community Website
   Warm & Rustic Farmhouse Style
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lora:ital,wght@0,400;0,500;1,400&family=Source+Sans+3:wght@300;400;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --color-soil:       #3B2A1A;
  --color-bark:       #5C3D2E;
  --color-wood:       #8B5E3C;
  --color-straw:      #C89A5B;
  --color-wheat:      #E5C98E;
  --color-cream:      #F5EDD8;
  --color-parchment:  #FAF3E0;
  --color-sage:       #7A8C6E;
  --color-moss:       #4E6143;
  --color-sky:        #7B9EB5;
  --color-rust:       #B0442A;
  --color-honey:      #D4892A;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lora', Georgia, serif;
  --font-ui:      'Source Sans 3', system-ui, sans-serif;

  --max-width: 1100px;
  --header-height: 70px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --shadow-sm: 0 2px 8px rgba(59,42,26,0.10);
  --shadow-md: 0 4px 20px rgba(59,42,26,0.14);
  --shadow-lg: 0 8px 40px rgba(59,42,26,0.18);

  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-soil);
  background-color: var(--color-parchment);
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(139,94,60,0.03) 40px,
      rgba(139,94,60,0.03) 41px
    );
}

img { max-width: 100%; display: block; }
a { color: var(--color-moss); text-decoration: none; }
a:hover { color: var(--color-wood); text-decoration: underline; }

/* ---- Container ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-soil);
  border-bottom: 3px solid var(--color-straw);
  box-shadow: var(--shadow-md);
  height: var(--header-height);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-emblem {
  font-size: 28px;
  line-height: 1;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-wheat);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.brand-sub {
  font-family: var(--font-ui);
  font-size: 10px;
  color: var(--color-straw);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-wheat);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  text-decoration: none;
}

.nav-link.active {
  color: var(--color-straw);
  border-bottom-color: var(--color-straw);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-wheat);
  font-size: 22px;
  cursor: pointer;
  margin-left: auto;
  padding: 4px 8px;
}

/* ============================================
   HERO (HOME)
   ============================================ */
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      to bottom,
      rgba(30,18,8,0.62) 0%,
      rgba(59,42,26,0.72) 100%
    ),
    url('../img/hero-bg.jpg') center/cover no-repeat;
  background-color: var(--color-bark);
  text-align: center;
  overflow: hidden;
}

/* Fallback texture pattern if no hero image */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(200,154,91,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(122,140,110,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 80px 24px;
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-straw);
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  color: var(--color-cream);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.hero-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 20px;
  color: var(--color-wheat);
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(229,201,142,0.6);
  letter-spacing: 0.1em;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(5px); }
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 64px 0 56px;
  background: var(--color-soil);
  border-bottom: 4px solid var(--color-straw);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; top: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(200,154,91,0.03) 20px,
    rgba(200,154,91,0.03) 21px
  );
  pointer-events: none;
}

.page-hero .section-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-straw);
  margin-bottom: 10px;
}

.page-hero--businesses {
    background-image: url('../img/business-hero.jpg');
    background-size: cover;
    background-position: center;
}

.page-hero--events {
  background-image: url('../img/park-hero.jpg');
  background-size: cover;
  background-position: center;
}

.page-hero--community {
    background-image: url('../img/community-hero.jpeg');
    background-size: cover;
    background-position: center;
}

.page-hero--community::before,
.page-hero--events::before,
.page-hero--businesses::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(20,12,5,0.82) 0%, rgba(20,12,5,0.55) 100%);
    z-index: 1;
}

.page-hero--community::after,
.page-hero--events::after,
.page-hero--businesses::after {
    display: none;
}

.page-hero--community .container,
.page-hero--events .container,
.page-hero--businesses .container {
    position: relative;
    z-index: 2;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--color-cream);
  line-height: 1.15;
  margin-bottom: 14px;
}

.page-subtitle {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 18px;
  color: var(--color-wheat);
  max-width: 560px;
  line-height: 1.6;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-moss);
  border-color: var(--color-moss);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-sage);
  border-color: var(--color-sage);
  color: #fff;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  border-color: var(--color-wood);
  color: var(--color-wood);
}

.btn-outline:hover {
  background: var(--color-wood);
  color: #fff;
  text-decoration: none;
}

.btn--full { width: 100%; text-align: center; display: block; }
.btn--sm { font-size: 12px; padding: 8px 16px; }

/* ============================================
   SECTION SHARED
   ============================================ */
.section-header {
  margin-bottom: 48px;
  text-align: center;
}

.section-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-wood);
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--color-soil);
  line-height: 1.2;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: 80px 0;
  background: var(--color-parchment);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}

.about-text p {
  margin-bottom: 18px;
  color: var(--color-bark);
  font-size: 17px;
}

.about-text p:last-child { margin-bottom: 0; }

.about-text strong { color: var(--color-soil); }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--color-cream);
  border: 1px solid rgba(139,94,60,0.2);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-moss);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number small {
  font-size: 18px;
  color: var(--color-sage);
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-wood);
}

/* ============================================
   QUICK LINKS
   ============================================ */
.quick-links-section {
  padding: 0 0 80px;
  background: var(--color-parchment);
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.quick-card {
  background: var(--color-cream);
  border: 1px solid rgba(139,94,60,0.2);
  border-top: 4px solid var(--color-straw);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.quick-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  border-top-color: var(--color-moss);
}

.quick-icon {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1;
}

.quick-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-soil);
  margin-bottom: 10px;
  line-height: 1.2;
}

.quick-card p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-bark);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.quick-arrow {
  font-size: 18px;
  color: var(--color-moss);
  transition: transform var(--transition);
}

.quick-card:hover .quick-arrow {
  transform: translateX(4px);
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location-section {
  padding: 80px 0;
  background: var(--color-cream);
  border-top: 1px solid rgba(139,94,60,0.15);
  border-bottom: 1px solid rgba(139,94,60,0.15);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}

.location-text .section-title { text-align: left; }
.location-text .section-label { text-align: left; }

.location-text p {
  margin: 16px 0 24px;
  color: var(--color-bark);
  font-size: 17px;
}

.location-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.location-details li {
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--color-bark);
  padding: 8px 0;
  border-bottom: 1px solid rgba(139,94,60,0.12);
}

.location-details strong {
  color: var(--color-soil);
  margin-right: 6px;
}

.location-map-placeholder {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
  background-image: url('../img/gillsville-map.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,12,5,0.78) 0%, rgba(20,12,5,0.55) 100%);
  z-index: 1;
}

.map-mock {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-cream);
}

.map-mock {
  text-align: center;
  color: var(--color-cream);
}

.map-pin {
  font-size: 48px;
  margin-bottom: 12px;
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.map-mock p {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--color-wheat);
  margin-bottom: 4px;
}

.map-mock small {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--color-straw);
  letter-spacing: 0.08em;
}

/* ============================================
   BUSINESSES PAGE
   ============================================ */
.businesses-section { padding: 60px 0 80px; }

.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 18px;
  border: 1.5px solid rgba(139,94,60,0.3);
  border-radius: 100px;
  background: var(--color-parchment);
  color: var(--color-wood);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-wood);
  border-color: var(--color-wood);
  color: #fff;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 60px;
}

.business-card {
  background: var(--color-cream);
  border: 1px solid rgba(139,94,60,0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.business-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.business-card.hidden { display: none; }

.biz-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.biz-icon {
  font-size: 30px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.biz-title-block {
  flex: 1;
  min-width: 0;
}

.biz-title-block h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-soil);
  line-height: 1.2;
  margin-bottom: 4px;
}

.biz-category-tag {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-wood);
  background: rgba(139,94,60,0.1);
  padding: 2px 8px;
  border-radius: 100px;
}

.biz-status {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  flex-shrink: 0;
}

.biz-status.open {
  background: rgba(78,97,67,0.12);
  color: var(--color-moss);
}

.biz-status.closed {
  background: rgba(176,68,42,0.1);
  color: var(--color-rust);
}

.biz-status.seasonal {
  background: rgba(212,137,42,0.12);
  color: var(--color-honey);
}

.biz-description {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-bark);
  line-height: 1.65;
  margin-bottom: 18px;
}

.biz-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(139,94,60,0.15);
}

.biz-detail {
  font-family: var(--font-ui);
  font-size: 13.5px;
  color: var(--color-bark);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.detail-icon {
  font-size: 14px;
  flex-shrink: 0;
}

.biz-hours strong {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-wood);
  display: block;
  margin-bottom: 8px;
}

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--color-bark);
}

.add-listing-cta {
  background: var(--color-soil);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cta-inner {
  padding: 48px 40px;
  text-align: center;
}

.cta-inner h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--color-cream);
  margin-bottom: 12px;
}

.cta-inner p {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--color-wheat);
  font-size: 16px;
  margin-bottom: 24px;
}

/* ============================================
   EVENTS PAGE
   ============================================ */
.events-section { padding: 60px 0 80px; }

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

.events-month-label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-wood);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-straw);
  margin-bottom: 28px;
}

.event-card {
  display: flex;
  gap: 24px;
  background: var(--color-cream);
  border: 1px solid rgba(139,94,60,0.18);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.event-card:hover { box-shadow: var(--shadow-md); }

.event-card--featured {
  border-left: 5px solid var(--color-moss);
  background: linear-gradient(135deg, rgba(78,97,67,0.04) 0%, var(--color-cream) 100%);
}

.event-date-badge {
  flex-shrink: 0;
  width: 60px;
  text-align: center;
  background: var(--color-soil);
  border-radius: var(--radius-md);
  padding: 12px 8px;
  align-self: flex-start;
  box-shadow: var(--shadow-sm);
}

.event-month {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-straw);
}

.event-day {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-cream);
  line-height: 1.1;
}

.event-info { flex: 1; }

.event-tag {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 8px;
}

.event-tag--festival  { background: rgba(78,97,67,0.12);   color: var(--color-moss);  }
.event-tag--meeting   { background: rgba(59,42,26,0.10);   color: var(--color-bark);  }
.event-tag--market    { background: rgba(212,137,42,0.12); color: var(--color-honey); }
.event-tag--community { background: rgba(123,158,181,0.15);color: var(--color-sky);   }

.event-info h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-soil);
  margin-bottom: 8px;
  line-height: 1.25;
}

.event-info p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-bark);
  line-height: 1.6;
  margin-bottom: 14px;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--color-wood);
}

/* Sidebar */
.events-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.sidebar-card {
  background: var(--color-cream);
  border: 1px solid rgba(139,94,60,0.2);
  border-top: 3px solid var(--color-straw);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-soil);
  margin-bottom: 10px;
}

.sidebar-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-bark);
  line-height: 1.6;
  margin-bottom: 16px;
}

.recurring-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.recurring-list li {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(139,94,60,0.12);
}

.recurring-list li:last-child { border-bottom: none; padding-bottom: 0; }

.recurring-list strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-soil);
  margin-bottom: 2px;
}

.recurring-list span {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--color-wood);
}

/* ============================================
   COMMUNITY HELP PAGE
   ============================================ */
.community-intro {
  padding: 40px 0;
  background: var(--color-cream);
  border-bottom: 1px solid rgba(139,94,60,0.15);
}

.intro-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 18px;
  color: var(--color-bark);
  line-height: 1.75;
}

.community-section { padding: 60px 0; }

.community-section-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--color-straw);
}

.community-section-icon {
  font-size: 44px;
  line-height: 1;
  flex-shrink: 0;
}

.community-section-header h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-soil);
  margin-bottom: 8px;
  line-height: 1.2;
}

.community-section-header p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  color: var(--color-bark);
  line-height: 1.6;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}

.helper-card {
  background: var(--color-cream);
  border: 1px solid rgba(139,94,60,0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.helper-card:hover { box-shadow: var(--shadow-md); }

.helper-avatar {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-soil);
  color: var(--color-wheat);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.helper-info { flex: 1; }

.helper-info h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-soil);
  margin-bottom: 8px;
}

.helper-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px;
}

.tag {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: rgba(139,94,60,0.1);
  color: var(--color-wood);
  padding: 2px 8px;
  border-radius: 100px;
}

.helper-info p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-bark);
  line-height: 1.6;
  margin-bottom: 14px;
}

.animal-subsections {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.animal-type {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-bark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(139,94,60,0.25);
}

.offer-help-bar {
  background: rgba(139,94,60,0.07);
  border: 1px dashed rgba(139,94,60,0.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--color-bark);
}

.offer-help-bar a {
  color: var(--color-moss);
  font-weight: 600;
  text-decoration: underline;
}

.info-box {
  background: rgba(212,137,42,0.08);
  border: 1px solid rgba(212,137,42,0.3);
  border-left: 4px solid var(--color-honey);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--color-bark);
  margin-bottom: 20px;
  line-height: 1.6;
}

.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(139,94,60,0.2), transparent);
  margin: 0;
}

.community-cta {
  padding: 60px 0 80px;
  background: var(--color-parchment);
}

.cta-inner--large {
  background: var(--color-soil);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.cta-inner--large h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--color-cream);
  margin-bottom: 14px;
}

.cta-inner--large p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 17px;
  color: var(--color-wheat);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-soil);
  border-top: 4px solid var(--color-straw);
  padding: 48px 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(229,201,142,0.15);
}

.footer-brand .brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-wheat);
  margin-bottom: 8px;
}

.footer-brand p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-straw);
  opacity: 0.7;
  font-style: italic;
  max-width: 280px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.footer-nav a {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-straw);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity var(--transition);
}

.footer-nav a:hover { opacity: 1; text-decoration: none; }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(229,201,142,0.4);
  letter-spacing: 0.06em;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .quick-links-grid { grid-template-columns: 1fr; }
  .location-inner { grid-template-columns: 1fr; }
  .events-layout { grid-template-columns: 1fr; }
  .events-sidebar { position: static; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-nav { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 640px) {
  :root { --header-height: 60px; }

  .main-nav { display: none; flex-direction: column; gap: 0; }
  .main-nav.open {
    display: flex;
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--color-soil);
    padding: 16px;
    border-bottom: 2px solid var(--color-straw);
    z-index: 99;
    box-shadow: var(--shadow-lg);
  }
  .nav-link { padding: 12px 16px; }
  .nav-toggle { display: block; }

  .hero { min-height: 420px; }
  .hero-title { font-size: 36px; }
  .page-title { font-size: 30px; }

  .business-grid { grid-template-columns: 1fr; }
  .help-grid { grid-template-columns: 1fr; }

  .event-card { flex-direction: column; gap: 14px; }
  .event-date-badge { width: 100%; display: flex; align-items: center; gap: 10px; padding: 10px 14px; }
  .event-day { font-size: 22px; }

  .about-stats { grid-template-columns: 1fr 1fr; }

  .community-section-header { flex-direction: column; gap: 12px; }
  .helper-card { flex-direction: column; }
}
