/* ============================================
   SOULS COOP — Landing Page
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: #111;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul { list-style: none; }

/* Oculto visualmente pero accesible para SEO y lectores de pantalla */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a { color: inherit; text-decoration: none; }

/* Focus visible — keyboard navigation */
:focus-visible {
  outline: 2.5px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

/* VARIABLES */
:root {
  /* Colors */
  --yellow:      #F5C800;
  --teal:        #6CC5BB;
  --black:       #111111;
  --white:       #ffffff;
  --cream:       #F0E9DC;
  --gray-1:      #333333;
  --gray-2:      #444444;
  --gray-3:      #555555;
  --gray-4:      #666666;
  --gray-5:      #888888;
  --gray-6:      #aaaaaa;

  /* Typography scale */
  --text-xs:     0.8rem;
  --text-sm:     0.875rem;
  --text-base:   0.95rem;
  --text-md:     1rem;

  /* Spacing */
  --max-w:       1200px;

  /* Fonts */
  --font-body:   'Canva Sans', 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-title:  'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-em:     'Times New Roman MT Condensed', 'Times New Roman', Times, serif;
}

/* CONTAINER */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   TIPOGRAFÍA — SECTION TITLES
   ============================================ */
.section-title {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}

.section-title em {
  font-family: var(--font-em);
  font-style: italic;
  font-weight: 400;
  font-stretch: condensed;
  display: inline;
  background: var(--yellow);
  padding: 0.04em 0.18em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent;
  padding: 1.3rem 2rem;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}

.navbar.scrolled {
  background: transparent;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--black);
  text-transform: lowercase;
  padding: 0.42rem 1.05rem;
  border: 1.5px solid rgba(17, 17, 17, 0.65);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 1);
}

.nav-links a.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.nav-links .nav-cta {
  background: rgba(255, 255, 255, 0.82);
  color: var(--black);
  border: 1.5px solid rgba(17, 17, 17, 0.65);
}

.nav-links .nav-cta:hover {
  background: rgba(255, 255, 255, 1);
  color: var(--black);
}

/* Language switcher */
.lang-switcher {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  position: absolute;
  right: 0;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.28rem 0.55rem;
  border: 1.5px solid rgba(17,17,17,0.45);
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  color: var(--black);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  line-height: 1;
}

.lang-btn:hover {
  background: rgba(255,255,255,1);
}

.lang-btn.active {
  background: var(--yellow);
  border-color: var(--yellow);
}

.lang-btn[data-lang="en"] {
  font-size: 0.9rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: absolute;
  right: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background-image: url('../images/cielo.png');
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: min(580px, 56vw);
  height: auto;
  animation: fadeUp 0.9s ease both;
}


@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   ABOUT US
   ============================================ */
.about {
  padding: 4rem 0 2.5rem;
  background: #F0E9DC;
  overflow-x: clip;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 5rem;
}

.about-text p {
  font-size: 0.975rem;
  line-height: 1.8;
  color: var(--gray-1);
  margin-bottom: 1.2rem;
}

.about-list {
  list-style: disc;
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

.about-list li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-1);
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ============================================
   MISIÓN / VISIÓN / VALORES
   ============================================ */
.mvv-wrapper {
  margin-top: 3rem;
  padding-bottom: 6rem;
}

/* Shared 3-column grid */
.mvv-icons-row,
.mvv-line-row,
.mvv-text-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

/* Fila 1 — Iconos centrados sobre cada punto */
.mvv-icons-row {
  padding-bottom: 2.8rem;
}

.mvv-icons-row .mvv-col {
  display: flex;
  justify-content: flex-start;
  padding-right: 0;
}

.mvv-icons-row .mvv-col img {
  width: 100px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Fila 2 — Línea a pantalla completa + óvalos */
.mvv-line-row {
  position: relative;
  padding: 0.4rem 0;
  overflow: visible;
}

.mvv-line-row::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50vw, -50%);
  width: 100vw;
  height: 1px;
  background: rgba(0,0,0,0.15);
}

.mvv-dot {
  width: 52px;
  height: 24px;
  border-radius: 999px;
  background: var(--cream);
  border: 1.5px solid rgba(0,0,0,0.25);
  display: block;
  position: relative;
  z-index: 1;
  margin: 0;
}

/* Fila 3 — Textos */
.mvv-text-row {
  padding-top: 2.8rem;
}

/* Shared column padding — solo en textos */
.mvv-col {
  padding-right: 0;
}

.mvv-text-row .mvv-col {
  padding-right: 3rem;
}

.mvv-title {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.mvv-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
}

.mvv-list {
  list-style: none;
  padding: 0;
  font-size: 0.95rem;
  line-height: 2.1;
  color: #444;
}

/* ============================================
   RED MTA
   ============================================ */
.mta {
  background: var(--cream);
  padding: 4rem 0;
}

.mta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}

.mta-photo img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
}

.mta-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mta-title {
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  color: var(--black);
}

.mta-title em {
  font-family: var(--font-em);
  font-style: italic;
  font-stretch: condensed;
  font-weight: 400;
  background: var(--yellow);
  padding: 0.04em 0.18em;
  color: var(--black);
  display: block;
  width: fit-content;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.mta-content p {
  font-size: 0.93rem;
  line-height: 1.75;
  color: #333;
  text-align: justify;
}

.link-underline {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--black);
  font-weight: 700;
}

.mta-bottom {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 1.5rem;
}

.mta-logo-link {
  display: inline-flex;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.mta-logo-link:hover { opacity: 1; }

.mta-logo {
  width: min(260px, 80%);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 50px;
  height: 120px;
  background: var(--yellow);
  color: var(--black);
  font-size: 2.2rem;
  font-weight: 900;
  border-radius: 999px;
  border: 1.5px solid var(--black);
  transition: transform 0.2s;
  letter-spacing: 0.05em;
  line-height: 1;
}

.btn-arrow:hover { transform: scale(1.06); }

/* ============================================
   OUR SERVICES
   ============================================ */
.services {
  min-height: 100vh;
  background-image: url('../images/cielo.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 3.5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.services-left p {
  font-size: 0.975rem;
  line-height: 1.75;
  color: #111;
  margin-bottom: 0.9rem;
  text-align: justify;
}

.services-icons {
  display: flex;
  gap: 1.8rem;
  margin-top: 2.4rem;
  align-items: flex-start;
}

.svc-folder {
  width: 120px;
  height: auto;
  object-fit: contain;
  transition: transform 0.25s;
}

.svc-folder:hover { transform: translateY(-4px); }

.svc-folder-link {
  display: inline-block;
  line-height: 0;
}

/* Overlapping images — right column */
.services-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-stack {
  position: relative;
  width: 100%;
  height: 540px;
}

.svc-fotocalle {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: auto;
  object-fit: contain;
}

.svc-notes {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 62%;
  height: auto;
  object-fit: contain;
}

/* ============================================
   PROJECTS — SCROLL ANIMATION (canvas 141 frames)
   ============================================ */
.scroll-anim {
  height: 170vh;
  position: relative;
}

.scroll-anim-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #c4d3e2;
}

.scroll-canvas {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Overlay de iconos — aparece sobre el canvas */
.scroll-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

.ov-icon {
  position: absolute;
  display: block;
  transform: translate(-50%, -50%);
  line-height: 0;
  cursor: default;
}

.ov-icon img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: filter 0.18s, transform 0.18s;
}

a.ov-icon {
  cursor: pointer;
}

a.ov-icon:hover img {
  filter: brightness(1.08) drop-shadow(0 3px 8px rgba(0,0,0,0.22));
  transform: scale(1.06);
}



/* ============================================
   OUR TEAM
   ============================================ */
.team {
  padding: 4rem 0;
  background: #F0E9DC;
}

.team .section-title {
  margin-bottom: 3.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 2rem;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
}

.team-member img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  transition: transform 0.25s ease;
  mix-blend-mode: multiply;
}

a.team-member:hover img {
  transform: scale(1.05);
}

.team-member h4 {
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
}

.team-member p {
  font-size: 0.82rem;
  color: var(--gray-4);
  line-height: 1.5;
}

/* ============================================
   LET'S TALK + FOOTER
   ============================================ */
.contact {
  padding: 4rem 0 0;
  background: #F0E9DC;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  padding-bottom: 6rem;
}

.contact-text .section-title {
  margin-bottom: 1.4rem;
}

.contact-text p {
  font-size: 0.975rem;
  line-height: 1.75;
  color: #444;
  text-align: justify;
}

.contact-logo {
  width: min(300px, 80%);
  height: auto;
  margin-top: 2rem;
  object-fit: contain;
}

/* Form */
.contact-form {
  background: var(--yellow);
  padding: 2.8rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 12px 48px rgba(245, 200, 0, 0.25);
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.72);
  border: none;
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  outline: none;
  width: 100%;
  transition: background 0.2s;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
  font-weight: 600;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255, 255, 255, 0.9);
}

/* Error states */
.contact-form input:invalid:not(:placeholder-shown),
.contact-form textarea:invalid:not(:placeholder-shown) {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 2px rgba(200, 50, 50, 0.45);
}

.contact-form input:valid:not(:placeholder-shown),
.contact-form textarea:valid:not(:placeholder-shown) {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 2px rgba(40, 160, 90, 0.45);
}

.btn-submit {
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 1rem;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-transform: lowercase;
}

.btn-submit:hover {
  background: #333;
  transform: translateY(-1px);
}

/* ============================================
   SITE FOOTER
   ============================================ */
.site-footer {
  background: #F0E9DC;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.footer-main {
  padding: 3rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr 1.6fr;
  gap: 3.5rem;
  align-items: start;
}

.footer-logo-img {
  height: 30px;
  width: auto;
  margin-bottom: 1rem;
  display: block;
}

.footer-company-name {
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.04em;
  margin-bottom: 0.9rem;
}

.footer-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  font-size: 0.82rem;
  color: #777;
  line-height: 1.65;
  margin-bottom: 1.3rem;
}

.footer-address a { color: #777; transition: color 0.2s; }
.footer-address a:hover { color: var(--black); }

.footer-social {
  display: inline-flex;
  align-items: center;
  color: #999;
  transition: color 0.2s;
}
.footer-social:hover { color: var(--black); }

.footer-heading {
  font-family: var(--font-title);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1.1rem;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-list a {
  font-size: 0.82rem;
  color: #777;
  transition: color 0.2s;
}
.footer-nav-list a:hover { color: var(--black); }

/* Map */
.footer-map-col {
  display: flex;
  flex-direction: column;
}

.footer-map {
  width: 100%;
  height: 150px;
  border: none;
  border-radius: 8px;
  display: block;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.07);
  padding: 1rem 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.76rem;
  color: #aaa;
}

.footer-bottom-links {
  display: flex;
  gap: 1.6rem;
}

.footer-bottom-links a {
  font-size: 0.76rem;
  color: #aaa;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--black); }

/* ============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 1.5rem;
  }

  .about-grid {
    gap: 3rem;
  }

  .services-grid {
    gap: 3rem;
  }

  .mta-content {
    padding: 4rem 3rem;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================ */
@media (max-width: 768px) {

  /* Nav mobile */
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    z-index: 199;
  }

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

  .nav-links a {
    font-size: 1.2rem;
    border: none;
    background: transparent;
    padding: 0;
  }

  .nav-links a.active {
    background: transparent;
    border: none;
    color: var(--yellow);
  }

  .hamburger {
    display: flex;
    z-index: 201;
  }

  .lang-switcher {
    right: 3rem;
    z-index: 202;
  }

  /* Hero */
  .hero-logo {
    width: min(340px, 85vw);
  }

  /* About */
  .about {
    padding: 4rem 0 3rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 2.5rem;
  }

  .value-card {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #ebebeb;
  }

  .value-card:last-child {
    border-bottom: none;
  }

  /* MTA */
  .mta {
    padding: 4rem 0;
  }

  .mta-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* MVV mobile — cada icono agrupado con su texto */
  .mvv-wrapper {
    display: grid;
    grid-template-columns: 1fr;
  }

  /* Los rows se vuelven "transparentes": sus hijos pasan a ser
     ítems directos del grid de .mvv-wrapper */
  .mvv-icons-row,
  .mvv-text-row { display: contents; }

  /* Ocultar la línea decorativa en móvil */
  .mvv-line-row  { display: none; }

  /* Intercalar: icono1 → texto1 → icono2 → texto2 → icono3 → texto3 */
  .mvv-icons-row > .mvv-col:nth-child(1) { order: 1; }
  .mvv-text-row  > .mvv-col:nth-child(1) { order: 2; }
  .mvv-icons-row > .mvv-col:nth-child(2) { order: 3; }
  .mvv-text-row  > .mvv-col:nth-child(2) { order: 4; }
  .mvv-icons-row > .mvv-col:nth-child(3) { order: 5; }
  .mvv-text-row  > .mvv-col:nth-child(3) { order: 6; }

  /* Estilos columnas de iconos */
  .mvv-icons-row > .mvv-col {
    padding-right: 0;
    padding-bottom: 1rem;
    border-bottom: none;
    display: flex;
    justify-content: flex-start;
  }

  .mvv-icons-row > .mvv-col img {
    width: 60px;
    height: auto;
  }

  /* Estilos columnas de texto — separador entre grupos */
  .mvv-text-row > .mvv-col {
    padding-right: 0;
    padding-bottom: 2.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    border-top: none;
  }

  .mvv-text-row > .mvv-col:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .mta-bottom {
    flex-wrap: wrap;
  }

  /* Services */
  .services {
    padding: 4rem 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .services-icons {
    gap: 1.2rem;
    flex-wrap: wrap;
  }

  .svc-folder {
    width: 90px;
  }

  .services-stack {
    height: 380px;
  }

  /* Scroll animation — mobile portrait */
  .scroll-anim {
    height: 380vh;
  }

  .scroll-anim-sticky {
    /* Canvas 16:9 centrado verticalmente en el viewport */
    height: 56.25vw;
    top: calc(50vh - 28.125vw);
    background: transparent;
  }

  /* Team */
  .team {
    padding: 4rem 0;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }

  .team-member img {
    width: 110px;
    height: 110px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-main { padding: 3rem 0 2.5rem; }
  .footer-map { height: 200px; }

  .footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Contact */
  .contact {
    padding: 4rem 0 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 4rem;
  }

  .contact-form {
    padding: 2rem 1.8rem;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 1.2rem;
  }

  .section-title {
    font-size: 2.1rem;
  }

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

  .team-member img {
    width: 96px;
    height: 96px;
  }

  .mta-pretitle {
    font-size: 1rem;
  }

  .mta-title {
    font-size: 2.4rem;
  }
}
