/* ═══════════════════════════════════════════════════════════════
   LA FRESCA NETWORK - MAIN STYLES
   Modern nonprofit website with teal/cream color scheme
════════════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:       #009791;
  --teal-dark:  #00736e;   /* accessible teal — 5.7:1 on white (was #005855); matches redesign --lf-teal-dark */
  --teal-darker:#005249;   /* deep teal for hover / strong accents — 8:1+ on white */
  --green:      #00a806;
  --cream:      #fdf8ee;   /* unified with redesign --lf-cream (was #FDF8F0) */
  --brown:      #5C4033;
  --brown-light:#8B6558;
  --white:      #ffffff;
  --text:       #1a1a1a;
  --text-muted: #5a5a5a;
  --border:     #e8e0d4;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.15);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

ul { list-style: none; }

/* ─── UTILITY ────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2.5rem);
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: .75rem;
}

.text-center { text-align: center; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal-dark);
  color: var(--white);
  border-color: var(--teal-dark);
}
.btn-primary:hover {
  background: var(--teal-darker);
  border-color: var(--teal-darker);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,82,73,.35);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,151,145,.25);
}

.btn-white {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,.3);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* ─── FADE IN ANIMATIONS ─────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }
.fade-in-delay-4 { transition-delay: .4s; }

/* ─── HEADER ─────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253,248,240,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-shrink: 0;
}
.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text .name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--teal-dark);
}
.logo-text .sub {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brown-light);
}

.nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: .5rem .85rem;
  border-radius: 8px;
  transition: var(--transition);
}
.nav a:hover {
  color: var(--teal-dark);
  background: rgba(0,151,145,.07);
}
.nav a.active {
  color: var(--teal-dark);
  background: rgba(0,151,145,.1);
}

.header-cta {
  flex-shrink: 0;
}
.header-cta .btn {
  padding: .65rem 1.4rem;
  font-size: .875rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  border: none;
  background: none;
  border-radius: 8px;
  transition: var(--transition);
}
.hamburger:hover { background: rgba(0,151,145,.07); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--teal);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  display: none;
  flex-direction: column;
  gap: .5rem;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: .75rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: rgba(0,151,145,.1);
  color: var(--teal);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(165deg, var(--cream) 0%, rgba(253,248,240,.5) 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-circle-1, .hero-circle-2 {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,151,145,.08), transparent 70%);
}
.hero-circle-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
}
.hero-circle-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -80px;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.1rem;
  background: rgba(0,151,145,.1);
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 1.5rem;
}
.hero-eyebrow .badge {
  background: var(--teal);
  color: white;
  padding: .15rem .5rem;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--teal-dark);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 620px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.avatars {
  display: flex;
  margin-left: -8px;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2.5px solid var(--cream);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-left: -8px;
}
.trust-text {
  font-size: .875rem;
  color: var(--text-muted);
}
.trust-text strong {
  color: var(--teal-dark);
  font-weight: 700;
}

/* ─── PAGE HEADER (for inner pages) ─────────────────────────────── */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(165deg, var(--cream) 0%, rgba(253,248,240,.5) 100%);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,151,145,.1), transparent 70%);
  pointer-events: none;
}
.page-header-inner {
  position: relative;
  z-index: 1;
}
.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--teal-dark);
  margin-bottom: 1rem;
}
.page-header p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--teal); }
.breadcrumb a:hover { text-decoration: underline; }

/* ─── STATS BAR ──────────────────────────────────────────── */
.stats-bar {
  padding: 3rem 0;
  background: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(0,151,145,.03);
  border: 1px solid rgba(0,151,145,.1);
  transition: var(--transition);
}
.stat-item:hover {
  background: rgba(0,151,145,.07);
  border-color: rgba(0,151,145,.2);
  transform: translateY(-4px);
}
.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  color: var(--teal);
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-label {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ─── MISSION PREVIEW ────────────────────────────────────── */
.mission-preview {
  padding: 6rem 0;
  background: var(--cream);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--teal-dark);
  margin-bottom: 1.25rem;
}

.mission-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.mission-content p strong {
  color: var(--teal-dark);
  font-weight: 600;
}

/* Economy Cycle Diagram */
.economy-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.cycle-center {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  position: absolute;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0,151,145,.4);
}
.cycle-center .big { font-size: 1.8rem; font-weight: 800; font-family: 'Playfair Display', serif; }
.cycle-center .small { font-size: .65rem; font-weight: 600; letter-spacing: .05em; opacity: .9; }

.cycle-ring {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 2px dashed rgba(0,151,145,.25);
  position: relative;
}

.cycle-node {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(0,151,145,.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 600;
  color: var(--teal-dark);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: default;
  padding: .25rem;
  gap: .2rem;
}
.cycle-node:hover {
  background: rgba(0,151,145,.07);
  border-color: var(--teal);
  transform: scale(1.08);
}
.cycle-node .node-icon { font-size: 1.4rem; line-height: 1; }

/* Position nodes around the ring */
.cycle-node:nth-child(1) { top: -40px; left: 50%; transform: translateX(-50%); }
.cycle-node:nth-child(1):hover { transform: translateX(-50%) scale(1.08); }
.cycle-node:nth-child(2) { top: 50%; right: -40px; transform: translateY(-50%); }
.cycle-node:nth-child(2):hover { transform: translateY(-50%) scale(1.08); }
.cycle-node:nth-child(3) { bottom: -40px; left: 50%; transform: translateX(-50%); }
.cycle-node:nth-child(3):hover { transform: translateX(-50%) scale(1.08); }
.cycle-node:nth-child(4) { top: 50%; left: -40px; transform: translateY(-50%); }
.cycle-node:nth-child(4):hover { transform: translateY(-50%) scale(1.08); }

/* ─── FEATURED BUSINESSES ────────────────────────────────────────── */
.featured-businesses {
  padding: 6rem 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 3.5rem;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--teal-dark);
  margin-bottom: .85rem;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.biz-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  background: var(--white);
}
.biz-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: rgba(0,151,145,.2);
}

.biz-card-banner {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}
.biz-card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.biz-card:hover .biz-card-banner img {
  transform: scale(1.05);
}
.biz-card-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.25) 100%);
}

.biz-card-body {
  padding: 1.4rem;
}
.biz-tag {
  display: inline-block;
  background: rgba(0,151,145,.1);
  color: var(--teal-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}
.biz-card h3 {
  font-size: 1.2rem;
  color: var(--teal-dark);
  margin-bottom: .5rem;
}
.biz-card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.biz-card-footer {
  padding: .85rem 1.4rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.biz-neighborhood {
  font-size: .78rem;
  color: var(--brown-light);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.biz-neighborhood svg { width: 12px; height: 12px; }
.biz-link {
  font-size: .8rem;
  font-weight: 600;
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: var(--transition);
}
.biz-card:hover .biz-link { gap: .5rem; }

/* ─── UPCOMING EVENTS ─────────────────────────────────────────────── */
.upcoming-events {
  padding: 6rem 0;
  background: var(--cream);
}

.events-grid-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.event-card-compact {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.event-card-compact:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0,151,145,.15);
}

.event-date-badge-compact {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,151,145,.3);
}
.event-date-badge-compact span:first-child {
  font-size: 1.4rem;
  line-height: 1;
}

.event-compact-content h4 {
  font-size: 1.1rem;
  color: var(--teal-dark);
  margin-bottom: .25rem;
}
.event-compact-content p {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.event-time {
  font-size: .8rem;
  color: var(--brown-light);
}

/* ─── CTA SECTION ─────────────────────────────────────────────── */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
}

.cta-inner {
  text-align: center;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.cta-inner p {
  font-size: 1.15rem;
  opacity: .9;
  margin-bottom: 2rem;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,.9);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .footer-logo {
  margin-bottom: 1rem;
}
.footer-logo .logo-img {
  width: 84px;
  height: 84px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  padding: 2px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12), 0 8px 24px rgba(0, 0, 0, 0.25);
}
.footer-logo .logo-text .name {
  color: var(--white);
}
.footer-logo .logo-text .sub {
  color: rgba(255,255,255,.7);
}

.footer-tagline {
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255,255,255,.8);
  margin-bottom: 1.5rem;
  max-width: 360px;
}

.footer-socials {
  display: flex;
  gap: .75rem;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-link svg {
  width: 18px;
  height: 18px;
}
.social-link:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--white);
  padding-left: .3rem;
}

.footer-contact p {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.footer-contact svg {
  width: 16px;
  height: 16px;
}
.footer-contact a {
  color: rgba(255,255,255,.9);
  transition: var(--transition);
}
.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}

/* ─── BUSINESS SLIDESHOW ─────────────────────────────────── */
.business-slideshow {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.slideshow-container {
  position: relative;
  min-height: 500px;
}

.slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  animation: fadeSlide 0.5s ease-in-out;
}

.slide.active {
  display: grid;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.slide-image {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-content .biz-tag {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  width: fit-content;
}

.slide-content h3 {
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.slide-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.slide-location svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
}

.slide-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 2rem;
}

.slideshow-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.slide-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  background: var(--white);
  color: var(--teal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slide-btn:hover {
  background: var(--teal);
  color: var(--white);
  transform: scale(1.1);
}

.slide-btn svg {
  width: 24px;
  height: 24px;
}

.slide-dots {
  display: flex;
  gap: 0.75rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--teal);
  transform: scale(1.2);
}

.dot:hover {
  background: var(--teal-dark);
}

/* ─── BUSINESS PROFILE PAGES ─────────────────────────────── */
.business-directory {
  padding: 4rem 0;
}

.business-profile {
  margin-bottom: 6rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}

.business-profile:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.profile-grid.reverse {
  grid-template-columns: 1.2fr 1fr;
  direction: rtl;
}

.profile-grid.reverse > * {
  direction: ltr;
}

.profile-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.profile-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.profile-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.profile-badge.new {
  background: var(--green);
  color: var(--white);
}

.profile-badge .years {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.profile-badge.new .years {
  color: var(--white);
}

.profile-badge .label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.profile-badge.new .label {
  color: rgba(255,255,255,0.9);
}

.profile-content {
  padding: 1rem 0;
}

.profile-header {
  margin-bottom: 2rem;
}

.profile-header .biz-tag {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.profile-header h2 {
  font-size: 2.5rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.profile-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.profile-location svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
}

.profile-story {
  margin-bottom: 2.5rem;
}

.profile-story h3 {
  font-size: 1.25rem;
  color: var(--teal-dark);
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.profile-story p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.profile-highlights {
  margin-bottom: 2.5rem;
}

.profile-highlights h3 {
  font-size: 1.25rem;
  color: var(--teal-dark);
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.profile-highlights ul {
  list-style: none;
}

.profile-highlights li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.profile-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.profile-quote {
  border-left: 4px solid var(--teal);
  padding-left: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--brown);
  line-height: 1.6;
}

/* ─── NETWORK IMPACT SECTION ─────────────────────────────── */
.network-impact {
  background: var(--cream);
  padding: 5rem 0;
}

.impact-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.impact-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.impact-content > p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.impact-item {
  text-align: center;
}

.impact-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.impact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.impact-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ─── PAGE HERO ──────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  color: var(--white);
  padding: 140px 0 80px;
  text-align: center;
}

.page-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 968px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .network-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid-compact { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  
  /* Slideshow responsive */
  .slide { grid-template-columns: 1fr; }
  .slide-image { min-height: 300px; }
  .slide-content { padding: 2rem; }
  .slideshow-container { min-height: auto; }
  
  /* Business profiles responsive */
  .profile-grid,
  .profile-grid.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
  }
  .profile-image img { height: 350px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero-content h1 { font-size: 2.2rem; }
}

@media (max-width: 640px) {
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .network-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
  
  /* Slideshow mobile */
  .slide-content h3 { font-size: 1.5rem; }
  .slide-description { font-size: 1rem; }
  .slideshow-controls { gap: 1rem; padding: 1rem; }
  .slide-btn { width: 40px; height: 40px; }
  
  /* Business profiles mobile */
  .profile-header h2 { font-size: 1.8rem; }
  .profile-story p { font-size: 1rem; }
  .profile-quote { font-size: 1.1rem; }
  .impact-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 100px 0 60px; }
  .page-hero-content h1 { font-size: 1.8rem; }
}