/* Underpass - Premium Bridge Access
   ClassPass-inspired sleek fitness aesthetic */

/* Prevent iOS zoom on input focus */
@media screen and (max-width: 768px) {
  input, select, textarea {
    font-size: 16px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1a1a2e;
  --primary-dark: #0f0f1a;
  --accent: #e94560;
  --accent-light: #ff6b8a;
  --secondary: #16213e;
  --success: #00d9a5;
  --warning: #f59e0b;
  --bg-light: #faf9f7;
  --bg-white: #ffffff;
  --text-dark: #1a1a2e;
  --text-secondary: #4a4a5a;
  --text-muted: #8b8b9a;
  --border: #e8e8ed;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
}

/* Navigation */
.nav {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.nav-logo {
  height: 36px;
}

.nav-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: white !important;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--accent-light);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile-toggle svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}

/* Mobile Menu */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: white;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-close svg {
  width: 20px;
  height: 20px;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.mobile-menu-links a {
  padding: 16px 0;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
  color: var(--accent);
}

.mobile-menu-cta {
  margin-top: 20px;
  background: var(--accent);
  color: white !important;
  padding: 16px 24px;
  border-radius: 50px;
  text-align: center;
  font-weight: 600;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero-bg video,
.hero-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-bg img {
  display: none;
}

.hero-video-mobile-wrapper {
  display: none;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-bottom: 24px;
}

.hero-video-mobile {
  width: 100%;
  display: block;
}

.hero-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.hero-video-play-btn:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%) scale(1.1);
}

.hero-video-play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent white;
  margin-left: 4px;
}

.hero-video-play-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 40px 100px;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-content .tagline {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 550px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-premium {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(26, 26, 46, 0.3);
}

.btn-cta {
  background: white;
  color: var(--primary);
  font-size: 1.1rem;
  padding: 18px 40px;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-avatars {
  display: flex;
}

.trust-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  margin-left: -12px;
  object-fit: cover;
}

.trust-avatars img:first-child {
  margin-left: 0;
}

.hero-trust p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero-trust strong {
  color: var(--accent);
}

/* Stats Bar */
.stats-bar {
  background: var(--accent);
  padding: 40px 20px;
}

.stats-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.stat {
  color: white;
}

.stat-value {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 4px;
}

/* Section Styling */
section {
  padding: 100px 20px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-header.light {
  color: white;
}

.section-header.light h2,
.section-header.light p {
  color: white;
}

.section-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary);
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* How It Works */
.how-it-works {
  background: var(--bg-light);
}

.steps-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step {
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  width: 36px;
  height: 36px;
  stroke: white;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.step p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Features */
.features {
  background: white;
  overflow: hidden;
}

.features-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.features-text {
  padding-right: 40px;
}

.features-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary);
  line-height: 1.2;
}

.features-text h2 span {
  color: var(--accent);
}

.features-description {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
}

.feature-content h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--primary);
}

.feature-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.features-image {
  position: relative;
}

.features-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.features-image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: white;
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.badge-stars {
  display: block;
  color: var(--warning);
  font-size: 1rem;
  margin: 4px 0;
}

.badge-text {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Amenities */
.amenities {
  background: var(--bg-light);
}

.amenities-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.amenity-card {
  background: white;
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.amenity-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(233, 69, 96, 0.1);
}

.amenity-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.amenity-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.amenity-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Map Preview */
.map-preview {
  background: var(--primary);
  padding: 80px 20px;
}

.map-container-preview {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

#preview-map {
  width: 100%;
  height: 500px;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.95) 0%, rgba(26, 26, 46, 0.4) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 40px;
}

.map-cta {
  text-align: center;
  color: white;
}

.map-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 12px;
}

.map-cta p {
  opacity: 0.9;
  margin-bottom: 24px;
}

/* Map Markers */
.underpass-marker .marker-pin {
  width: 30px;
  height: 40px;
  background: var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.underpass-marker .marker-pin span {
  transform: rotate(45deg);
  color: white;
  font-weight: 700;
  font-size: 12px;
}

/* Pricing */
.pricing {
  background: white;
}

.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pricing-card {
  background: var(--bg-light);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: var(--accent);
  background: white;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-card.premium {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
}

.pricing-card.premium .pricing-header h3,
.pricing-card.premium .pricing-header p,
.pricing-card.premium .pricing-credits,
.pricing-card.premium .pricing-features li {
  color: white;
}

.pricing-card.premium .pricing-price .price {
  color: var(--accent);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-header h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.pricing-header p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-price {
  margin: 24px 0 8px;
}

.pricing-price .price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
}

.pricing-price .period {
  font-size: 1rem;
  color: var(--text-muted);
}

.pricing-credits {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.pricing-features li {
  padding: 10px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
}

.pricing-card.premium .pricing-features li::before {
  color: var(--success);
}

.pricing-credits-guide {
  max-width: 800px;
  margin: 60px auto 0;
  background: var(--bg-light);
  border-radius: 16px;
  padding: 32px;
}

.pricing-credits-guide h4 {
  text-align: center;
  margin-bottom: 24px;
  color: var(--primary);
  font-size: 1.2rem;
}

.credits-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.credit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.credit-type {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.credit-cost {
  font-weight: 700;
  color: var(--accent);
}

/* Gallery */
.gallery {
  background: var(--bg-light);
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Testimonials */
.testimonials {
  background: white;
}

/* Press */
.press {
  background: var(--bg-light);
  padding: 60px 20px;
}

.press-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.press-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.press-quotes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.press-quote {
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: italic;
}

.press-quote strong {
  color: var(--primary);
  font-style: normal;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 100px 20px;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
  color: white;
}

.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
}

.cta-note {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 16px !important;
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: white;
  padding: 80px 20px 40px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.footer-social a:hover {
  background: var(--accent);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.footer-links h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.5);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

/* Leaflet overrides */
.leaflet-popup-content-wrapper {
  border-radius: 12px;
}

.leaflet-popup-content {
  margin: 12px 16px;
  font-family: 'DM Sans', sans-serif;
}

/* Responsive */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: none;
  }

  .features-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .features-text {
    padding-right: 0;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-bg video {
    display: none;
  }

  .hero-bg img {
    display: block;
    opacity: 0.3;
  }

  .hero-video-mobile-wrapper {
    display: block;
    width: calc(100% + 40px);
    margin-left: -20px;
  }

  .hero-container {
    padding: 100px 20px 80px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-content .tagline {
    margin: 0 auto 32px;
  }

  .hero-ctas {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
  }

  .stats-container {
    flex-wrap: wrap;
    gap: 30px;
  }

  .stat {
    flex: 1 1 40%;
  }

  .steps-container {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .nav {
    padding: 12px 16px;
  }

  .nav-title {
    font-size: 1.2rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

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

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

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-social {
    justify-content: center;
  }

  .cta h2 {
    font-size: 2rem;
  }

  .credits-list {
    flex-direction: column;
    align-items: center;
  }

  #preview-map {
    height: 350px;
  }
}
