/* ============================================================
   Bayou Communities — Main Stylesheet
   ============================================================ */

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

/* ---- Custom Properties ---- */
:root {
  --teal-900: #0b3534;
  --teal-800: #10494a;
  --teal-700: #17615f;
  --teal-600: #1f7d7c;
  --teal-500: #299b99;
  --teal-300: #73D1CD;
  --teal-100: #beecea;
  --teal-50:  #eafafa;
  --orange:       #F5A020;
  --orange-hover: #D98818;
  --orange-light: #FEF3DC;
  --white:    #ffffff;
  --gray-900: #0f172a;
  --gray-800: #1e293b;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-500: #64748b;
  --gray-400: #94a3b8;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50:  #f8fafc;
  --max-width: 1200px;
  --nav-height: 72px;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow:    0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
  --radius-sm: 4px;
  --radius:    8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --transition: 200ms ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}
.section { padding: 4rem 0; }
.section--alt { background: var(--gray-50); }
.section--teal { background: var(--teal-900); color: var(--white); }
.section--light-teal { background: var(--teal-50); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ---- Typography ---- */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; color: var(--gray-900); }
.section--teal h1, .section--teal h2, .section--teal h3 { color: var(--white); }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 0.75rem;
}
.section--teal .section-label { color: var(--teal-300); }
.section-title { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 1rem; }
.section-subtitle { font-size: 1.125rem; color: var(--gray-600); max-width: 640px; line-height: 1.7; }
.section--teal .section-subtitle { color: var(--teal-100); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(245,160,32,0.35);
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245,160,32,0.45);
}
.btn-secondary {
  background: var(--white);
  color: var(--teal-700);
  border: 2px solid var(--teal-700);
}
.btn-secondary:hover { background: var(--teal-50); transform: translateY(-1px); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-dark {
  background: transparent;
  color: var(--teal-900);
  border: 2px solid rgba(11,53,52,0.5);
}
.btn-outline-dark:hover { background: rgba(11,53,52,0.08); border-color: var(--teal-900); }
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; border-radius: var(--radius-md); }

/* ---- Navigation ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.nav-logo-img { height: 44px; width: auto; display: block; }
.nav-logo-text { font-size: 1.25rem; font-weight: 800; color: var(--teal-900); letter-spacing: -0.02em; }
.nav-logo-text span { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all var(--transition);
}
.nav-link:hover { background: var(--teal-50); color: var(--teal-700); }
.nav-link.active { color: var(--teal-700); font-weight: 600; background: var(--teal-50); }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-phone { font-size: 0.875rem; font-weight: 600; color: var(--gray-700); transition: color var(--transition); }
.nav-phone:hover { color: var(--teal-700); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; border-radius: var(--radius); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--gray-700); transition: all var(--transition); border-radius: 2px; }
.mobile-nav { display: none; flex-direction: column; gap: 0.25rem; padding: 1rem 0; border-top: 1px solid var(--gray-200); }
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--gray-700);
  transition: all var(--transition);
}
.mobile-nav-link:hover { background: var(--teal-50); color: var(--teal-700); }

/* ---- Breadcrumb ---- */
.breadcrumb { padding: 1rem 0; border-bottom: 1px solid var(--gray-200); background: var(--gray-50); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.breadcrumb li { display: flex; align-items: center; font-size: 0.875rem; color: var(--gray-500); }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 0.5rem; color: var(--gray-300); }
.breadcrumb a { color: var(--teal-700); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--gray-700); font-weight: 500; }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, #68cac6 0%, #73D1CD 100%);
  color: var(--teal-900);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(11,53,52,0.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(11,53,52,0.08) 0%, transparent 50%);
}
.hero-inner { position: relative; max-width: 760px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(11,53,52,0.1);
  border: 1px solid rgba(11,53,52,0.2);
  border-radius: 100px;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--teal-900);
}
.hero h1 {
  font-size: clamp(1.875rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--teal-900);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-desc {
  font-size: 1.125rem;
  color: var(--teal-800);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(11,53,52,0.2);
}
.hero-stat-number { font-size: 1.875rem; font-weight: 800; color: var(--teal-900); line-height: 1; }
.hero-stat-label { font-size: 0.75rem; color: var(--teal-700); margin-top: 0.25rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* ---- Notice Banner ---- */
.notice-banner {
  background: #fffbeb;
  border-bottom: 1px solid #fde68a;
  padding: 0.875rem 0;
}
.notice-banner-inner { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.notice-icon { font-size: 1.125rem; flex-shrink: 0; }
.notice-banner-text { font-size: 0.875rem; font-weight: 500; color: var(--gray-900); flex: 1; }
.notice-banner-text strong { color: var(--orange-hover); }
.notice-banner a { color: var(--teal-700); font-weight: 600; text-decoration: underline; }

/* ---- Feature Cards ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.feature-card:hover { border-color: var(--teal-300); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.feature-icon {
  width: 48px; height: 48px;
  background: var(--teal-50);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-icon svg { width: 24px; height: 24px; color: var(--teal-700); }
.feature-card h3 { font-size: 1.125rem; margin-bottom: 0.75rem; color: var(--gray-900); }
.feature-card p { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.7; }

/* ---- Community Cards ---- */
.communities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.community-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.community-card:hover { border-color: var(--teal-300); box-shadow: var(--shadow-xl); transform: translateY(-3px); }
.community-card-header {
  display: flex;
  min-height: 90px;
}
.community-card-logo-side {
  width: 42%;
  flex-shrink: 0;
  background: var(--white);
  border-right: 1px solid rgba(11,53,52,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1rem;
}
.community-card-logo {
  max-height: 60px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}
.community-card-info-side {
  flex: 1;
  background: linear-gradient(135deg, #68cac6 0%, #73D1CD 100%);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--teal-900);
}
.community-hero-logo {
  height: 90px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  margin-bottom: 1rem;
  display: block;
}
.community-card-state-badge {
  display: inline-block;
  background: rgba(11,53,52,0.1);
  border: 1px solid rgba(11,53,52,0.2);
  border-radius: 100px;
  padding: 0.125rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--teal-900);
}
.community-card-name { font-size: 1.125rem; font-weight: 700; color: var(--teal-900); line-height: 1.3; }
.community-card-body { padding: 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.community-card-address {
  display: flex; align-items: flex-start; gap: 0.375rem;
  font-size: 0.8125rem; color: var(--gray-600); margin-bottom: 0.625rem;
}
.community-card-address svg { width: 14px; height: 14px; margin-top: 2px; flex-shrink: 0; color: var(--teal-500); }
.community-card-desc { font-size: 0.8125rem; color: var(--gray-700); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.community-card-meta {
  display: flex; gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-100);
}
.community-card-meta-item {
  display: flex; align-items: center; gap: 0.25rem;
  font-size: 0.6875rem; font-weight: 700;
  color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.06em;
}
.community-card-meta-item svg { width: 13px; height: 13px; color: var(--teal-500); }
.community-card-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.625rem 1rem;
  background: var(--teal-50);
  border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 600; color: var(--teal-700);
  transition: all var(--transition); margin-top: auto;
}
.community-card-link:hover { background: var(--teal-100); }
.community-card-link svg { width: 16px; height: 16px; }

/* ---- State Section Headers ---- */
.state-section { margin-bottom: 3rem; }
.state-section-header {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem; padding-bottom: 1rem;
  border-bottom: 2px solid var(--gray-200);
}
.state-section-header h2 { font-size: 1.5rem; color: var(--teal-900); }
.state-count-badge {
  background: var(--teal-100); color: var(--teal-800);
  border-radius: 100px; padding: 0.125rem 0.75rem;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.05em;
}

/* ---- Individual Community Page ---- */
.community-hero {
  background: linear-gradient(135deg, #68cac6 0%, #73D1CD 100%);
  padding: 3.5rem 0;
  color: var(--teal-900);
}
.community-hero-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
}
.community-hero h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800; color: var(--teal-900); margin-bottom: 0.5rem;
}
.community-hero-location {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--teal-800); font-size: 1rem; margin-bottom: 1rem;
}
.community-hero-location svg { width: 18px; height: 18px; }
.community-hero-desc {
  font-size: 1.0625rem; color: var(--teal-800);
  line-height: 1.75; max-width: 580px;
}
.community-cta-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.5rem; box-shadow: var(--shadow-xl);
}
.community-cta-card h3 { font-size: 1rem; color: var(--teal-900); margin-bottom: 1rem; }
.community-cta-card .btn { width: 100%; justify-content: center; margin-bottom: 0.75rem; }
.community-cta-phone {
  display: flex; align-items: center; justify-content: center; gap: 0.375rem;
  font-size: 0.8125rem; color: var(--gray-500);
}
.community-cta-phone a { color: var(--teal-700); font-weight: 600; }

/* ---- Community Info ---- */
.community-details-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start;
}
.info-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 1.5rem;
}
.info-card h2 { font-size: 1.125rem; margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 2px solid var(--teal-100); }
.info-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1rem; padding: 0.625rem 0; border-bottom: 1px solid var(--gray-100);
  font-size: 0.875rem;
}
.info-row:last-child { border-bottom: none; }
.info-label { color: var(--gray-500); font-weight: 500; }
.info-value { color: var(--gray-900); font-weight: 600; text-align: right; }

/* ---- Map ---- */
.map-container { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); box-shadow: var(--shadow-md); }
.map-container iframe { display: block; width: 100%; height: 380px; border: none; }
.all-communities-map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); box-shadow: var(--shadow-lg); }
.all-communities-map iframe { display: block; width: 100%; height: 520px; border: none; }
@media (max-width: 768px) { .all-communities-map iframe { height: 380px; } }

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, #68cac6 0%, #73D1CD 100%);
  padding: 5rem 0; text-align: center;
}
.cta-section h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); color: var(--teal-900); margin-bottom: 1rem; }
.cta-section p {
  font-size: 1.125rem; color: var(--teal-800);
  margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border: 1px solid var(--teal-100); border-radius: var(--radius-md);
  background: var(--white); overflow: hidden;
  padding: 1.25rem 1.5rem;
}
.faq-question {
  font-size: 1rem; font-weight: 700; color: var(--teal-900);
  margin: 0 0 0.625rem;
}
.faq-answer {
  font-size: 0.9375rem; color: var(--gray-700); line-height: 1.75; margin: 0;
}
.faq-answer a { color: var(--teal-700); }
.faq-answer a:hover { color: var(--teal-600); }

/* ---- Page Header ---- */
.page-header {
  background: linear-gradient(135deg, #68cac6 0%, #73D1CD 100%);
  padding: 4rem 0; color: var(--teal-900); text-align: center;
}
.page-header h1 { font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 800; color: var(--teal-900); margin-bottom: 1rem; }
.page-header p { font-size: 1.125rem; color: var(--teal-800); max-width: 600px; margin: 0 auto; line-height: 1.75; }

/* ---- Apply / Resident Portal ---- */
.apply-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; margin-top: 2.5rem;
}
.apply-step {
  display: flex; gap: 1rem; padding: 1.5rem;
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
}
.apply-step-num {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%; background: var(--teal-700); color: var(--white);
  font-size: 1.125rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.apply-step-content h3 { font-size: 1rem; margin-bottom: 0.375rem; }
.apply-step-content p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }
.requirements-list { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.375rem; }
.requirements-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--gray-700); }
.requirements-list li::before { content: '✓'; color: var(--teal-700); font-weight: 700; flex-shrink: 0; }

/* ---- Pet Page ---- */
.pet-policy-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 2rem; margin-top: 2rem;
}
.pet-highlight {
  display: flex; align-items: center; gap: 1rem;
  background: var(--orange-light); border: 1px solid #fde68a;
  border-radius: var(--radius-md); padding: 1.25rem 1.5rem; margin-bottom: 1.5rem;
}
.pet-highlight-icon { font-size: 2rem; flex-shrink: 0; }
.pet-highlight strong { font-size: 1.125rem; color: var(--gray-900); display: block; }
.pet-highlight span { font-size: 0.875rem; color: var(--gray-600); }
.pet-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem;
}
.pet-step { text-align: center; padding: 1.5rem; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); }
.pet-step-num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--teal-700); color: var(--white);
  font-size: 1.125rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
}
.pet-step h3 { font-size: 0.9375rem; margin-bottom: 0.5rem; }
.pet-step p { font-size: 0.8125rem; color: var(--gray-600); line-height: 1.6; }

/* ---- Footer ---- */
.site-footer { background: var(--teal-900); color: var(--teal-100); padding: 4rem 0 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 3rem;
}
.footer-logo-img { height: 40px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand-name { font-size: 1.25rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin-bottom: 1rem; }
.footer-brand-name span { color: var(--orange); }
.footer-tagline { font-size: 0.875rem; line-height: 1.75; margin-bottom: 1.25rem; color: var(--teal-100); }
.footer-phone { font-size: 1.125rem; font-weight: 700; color: var(--white); transition: color var(--transition); }
.footer-phone:hover { color: var(--orange); }
.footer-col h4 { font-size: 0.6875rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-link { font-size: 0.875rem; color: var(--teal-100); transition: color var(--transition); }
.footer-link:hover { color: var(--white); }
.footer-bottom {
  padding-top: 2rem; border-top: 1px solid rgba(156,219,219,0.15);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; font-size: 0.8125rem;
}
.footer-legal-links { display: flex; gap: 1.5rem; }
.footer-legal-links a { color: var(--teal-100); }
.footer-legal-links a:hover { color: var(--white); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .community-details-grid { grid-template-columns: 1fr; }
  .community-hero-layout { grid-template-columns: 1fr; }
  .apply-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 3rem 0; }
  .hero { padding: 3.5rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .communities-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .community-hero { padding: 2.5rem 0; }
  .page-header { padding: 3rem 0; }
  .pet-steps { grid-template-columns: 1fr; }
  .cta-section { padding: 3.5rem 0; }
  .hero-stats { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
