@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
  }
  .logo img {
    height: 44px;
  }
  .site-title {
    font-size: 1.1rem;
  }
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    text-align: center;
  }

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

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

  .nav-links a {
    display: block;
    padding: 1rem;
  }

  .nav-links .glf-button {
    display: none;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .announcement-banner {
    top: 56px;
  }

  /* Mobile fixed bottom bar CTA */
  .mobile-cta-bar {
    position: sticky;
    bottom: 0;
    z-index: 1000;
    background: var(--primary-color, #b22222);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.75rem 1rem;
    gap: 0.5rem;
    width: 100%;
  }
  .mobile-cta-bar .cta-btn {
    flex: 1 1 0;
    margin: 0 0.25rem;
    padding: 0.85rem 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .mobile-cta-bar .cta-btn.call {
    background: #ff6666;
  }
}

@media (max-width: 600px) {
  .announcement-content {
    gap: 0.5rem;
    align-items: flex-start;
  }
  .announcement-text {
    font-size: 0.95rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
  .close-banner {
    align-self: center;
    margin: 0;
  }

  body {
    padding-top: 100px; /* 44px banner + 56px navbar */
  }
}

@media (max-width: 600px) {
  .hero-section {
    padding-bottom: 10vh;
  }
  .hero-image img {
    max-width: 240px;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    border: none;
  }
  .hero-text {
    padding: 20px 10px 18px 10px;
    padding-top: 0;
  }
  .hero-text h2 {
    font-size: 1rem;
  }
  .cta-button {
    padding: 10px 18px !important;
    font-size: 1rem !important;
  }
}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column-reverse;
    min-height: 0;
    border-radius: 24px;
    padding: 0;
  }
  .hero-text {
    padding: 32px 24px 24px 24px;
    align-items: center;
    text-align: center;
    padding-top: 0;
  }
  .hero-image {
    padding: 24px 0 0 0;
  }
}

@media (max-width: 600px) {
  body.banner-hidden {
    padding-top: 56px !important;
  }
}

@media (max-width: 700px) {
  .about-content {
    padding: 0 16px;
  }
  .about-content h2 {
    font-size: 1.5rem;
  }
  .about-content p {
    font-size: 1rem;
  }
}

@media (max-width: 900px) {
  .contact-info,
  .contact-map {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .contact-info h2 {
    text-align: center;
  }
}

@media (min-width: 769px) {
  .mobile-cta-bar {
    display: none !important;
  }
}
