/* ================= BASE ================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  background: #fff;
}

/* ================= TYPOGRAPHY ================= */
h2 {
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 2px;
}

.section-description {
  max-width: 800px;
  margin: 1.5rem auto 3rem;
  padding: 0 1.5rem;

  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

/* ================= SECTIONS ================= */
.section {
  padding: 4rem 1.5rem;
  scroll-margin-top: 100px;
}

.section.white {
  background: #ffffff;
}

.section.grey {
  background: #e6edf4; /* softer than before */
}

/* ================= GRID ================= */
.grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: center;
}

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

#email {
  color: black !important;
}

/* ================= TEXT BLOCK ================= */
.section-text {
  line-height: 1.7;
  font-size: 1rem;
  color: #222;
}

.section-text p {
  margin-bottom: 1.2rem;
}

/* ================= FIGURE ================= */
figure {
  margin: 0;
}

figcaption {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: #666;
  text-align: center;
}

/* ================= MAP ================= */
.map-container {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

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

/* ================= LINKS ================= */
a {
  color: #0077cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 1.2rem;
  }

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

/* Mobile */
@media (max-width: 600px) {
  h2 {
    font-size: 1.4rem;
  }

  .section-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .section-text {
    font-size: 0.95rem;
  }

  .map-container {
    aspect-ratio: 16 / 11;
  }
}
