/* ============================================
   JAX IN & OUT CAFE' — Gulf Coast Sunshine
   ============================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito:ital,wght@0,400;0,600;0,700;1,400&family=Pacifico&display=swap');

/* --- Custom Properties --- */
:root {
  --coral: #FF6B5A;
  --coral-deep: #E8503F;
  --teal: #2DB5A0;
  --teal-deep: #1E9685;
  --sunshine: #FFB830;
  --sunshine-light: #FFD470;
  --sand: #FFF5E6;
  --sand-dark: #F0DFC4;
  --seafoam: #E0F5F1;
  --dark: #2D3436;
  --dark-soft: #4A5568;
  --white: #FEFEFE;
  --shadow-sm: 0 2px 8px rgba(45, 52, 54, 0.08);
  --shadow-md: 0 4px 20px rgba(45, 52, 54, 0.12);
  --shadow-lg: 0 8px 40px rgba(45, 52, 54, 0.16);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Fredoka', sans-serif;
  --font-script: 'Pacifico', cursive;
  --font-body: 'Nunito', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 42px;
}

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

a {
  color: var(--teal-deep);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover,
a:focus-visible {
  color: var(--coral);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--dark);
}

/* --- Utility --- */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Wave Dividers --- */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.wave-divider--flip {
  bottom: auto;
  top: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.wave-divider--flip svg {
  transform: rotate(180deg);
}

/* --- Grain Overlay --- */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(254, 254, 254, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--sand-dark);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--coral);
  transition: transform var(--transition);
}

.logo-link:hover .logo-img {
  transform: rotate(-5deg) scale(1.05);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--coral);
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 100px;
  color: var(--dark-soft);
  transition: all var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--coral);
  background: rgba(255, 107, 90, 0.08);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: all var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: 140px 0 60px;
  background: linear-gradient(175deg, var(--seafoam) 0%, var(--sand) 40%, #FFF0D4 70%, var(--sand) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 184, 48, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 181, 160, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 32px;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg), 0 0 0 8px rgba(255, 107, 90, 0.15);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.hero h1 .accent {
  color: var(--coral);
  position: relative;
}

.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--sunshine);
  border-radius: 4px;
  transform: scaleX(0);
  animation: underline-grow 0.8s 0.6s ease forwards;
}

@keyframes underline-grow {
  to { transform: scaleX(1); }
}

.hero-tagline {
  font-family: var(--font-script);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--teal-deep);
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--dark-soft);
  max-width: 540px;
  margin: 0 auto 36px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 14px 36px;
  background: var(--coral);
  color: var(--white);
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(255, 107, 90, 0.3);
  text-decoration: none;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  background: var(--coral-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 107, 90, 0.4);
}

.hero-hours-badge {
  display: inline-block;
  margin-top: 28px;
  padding: 10px 24px;
  background: var(--white);
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--dark-soft);
  box-shadow: var(--shadow-sm);
}

.hero-hours-badge strong {
  color: var(--teal-deep);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 80px 0;
  background: var(--white);
  position: relative;
}

.section-label {
  font-family: var(--font-script);
  font-size: 1rem;
  color: var(--coral);
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--sunshine);
  border-radius: 4px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--dark-soft);
  font-size: 1.05rem;
}

.about-text p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.2rem;
  float: left;
  line-height: 1;
  margin-right: 8px;
  margin-top: 4px;
  color: var(--coral);
}

.about-visual {
  position: relative;
}

.about-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--coral), var(--sunshine), var(--teal));
}

.about-card-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.about-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.about-card p {
  color: var(--dark-soft);
  font-size: 0.95rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.value-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--sand);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--dark);
}

.value-chip .icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* ============================================
   COMMUNITY / GIVING BACK SECTION
   ============================================ */
.community {
  padding: 80px 0;
  background: linear-gradient(170deg, var(--seafoam) 0%, #E8FAF6 50%, var(--sand) 100%);
  position: relative;
}

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

.community-content .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.community-heart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  font-size: 2.5rem;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
  animation: pulse-heart 2s ease-in-out infinite;
}

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

.community-content p {
  font-size: 1.1rem;
  color: var(--dark-soft);
  margin-bottom: 20px;
}

.community-highlight {
  display: inline-block;
  background: linear-gradient(135deg, var(--coral), var(--sunshine));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
}

.community-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

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

.stat-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--dark-soft);
}

/* ============================================
   HOURS & LOCATION SECTION
   ============================================ */
.location {
  padding: 80px 0;
  background: var(--white);
}

.location .section-header {
  text-align: center;
}

.location .section-header .section-title {
  display: block;
}

.location .section-header .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
}

.hours-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.hours-card h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hours-table {
  width: 100%;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--sand-dark);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 600;
  color: var(--dark);
}

.hours-time {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--teal-deep);
}

.hours-time.closed {
  color: var(--coral);
}

.info-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.info-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-item a {
  font-weight: 600;
}

.info-text {
  color: var(--dark-soft);
  line-height: 1.6;
}

.map-container {
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--sand-dark);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: 80px 0;
  background: linear-gradient(175deg, var(--sand) 0%, #FFF0D4 50%, var(--sand) 100%);
}

.contact-inner {
  text-align: center;
  margin-bottom: 40px;
}

.contact-inner .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

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

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group label .optional {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--dark-soft);
  font-size: 0.85rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  background: var(--sand);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #B0A898;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(45, 181, 160, 0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--coral);
}

.form-error {
  font-size: 0.82rem;
  color: var(--coral);
  margin-top: 4px;
  display: none;
}

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

.form-submit {
  width: 100%;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
  background: var(--teal);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(45, 181, 160, 0.25);
}

.form-submit:hover,
.form-submit:focus-visible {
  background: var(--teal-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(45, 181, 160, 0.35);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success .check-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.form-success h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--dark-soft);
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--sand);
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--dark);
  transition: all var(--transition);
}

.social-link:hover,
.social-link:focus-visible {
  background: #1877F2;
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 24px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--sunshine), var(--teal), var(--coral));
  background-size: 300% 100%;
  animation: gradient-shift 6s linear infinite;
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

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

.footer-brand .logo-link {
  margin-bottom: 16px;
}

.footer-brand .logo-text {
  color: var(--white);
}

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

.footer-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--sunshine);
  padding-left: 4px;
}

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

.footer-contact-item .icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item a:hover,
.footer-contact-item a:focus-visible {
  color: var(--sunshine);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
  font-size: 1.1rem;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-3px);
}

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

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--sunshine);
}

/* ============================================
   404 PAGE
   ============================================ */
.page-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.error-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 20px 80px;
  background: linear-gradient(175deg, var(--seafoam) 0%, var(--sand) 50%, #FFF0D4 100%);
}

.error-content {
  max-width: 500px;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--coral), var(--sunshine));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.error-emoji {
  font-size: 3rem;
  margin-bottom: 16px;
}

.error-content h1 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.error-content p {
  color: var(--dark-soft);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.error-home-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 14px 36px;
  background: var(--coral);
  color: var(--white);
  border-radius: 100px;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(255, 107, 90, 0.3);
}

.error-home-link:hover,
.error-home-link:focus-visible {
  background: var(--coral-deep);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.js .fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .nav-toggle {
    display: flex;
  }

  .nav-list {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: var(--white);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }

  .nav-list.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 12px 16px;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 998;
  }

  .nav-overlay.open {
    display: block;
  }

  .hero {
    padding: 120px 0 50px;
  }

  .hero-logo {
    width: 140px;
    height: 140px;
  }

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

  .community-stats {
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .container {
    width: 92%;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .contact-form {
    padding: 28px 24px;
  }

  .about-card {
    padding: 28px;
  }

  .hours-card,
  .info-card {
    padding: 28px;
  }
}
