.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-block: var(--section-padding);
}

.section--alt {
  background-color: var(--color-bg-alt);
}

@media (max-width: 900px) {

  .hero .hero__title,
  .about .about__heading,
  .gallery .gallery__heading,
  .testimonials .testimonials__heading,
  .location .location__heading,
  .collections .collections__heading {
    text-wrap: wrap;
    max-width: none;
  }

  .hero__title br,
  .about__heading br,
  .gallery__heading br,
  .testimonials__heading br,
  .location__heading br,
  .collections__heading br {
    display: none;
  }

  .about .about__heading,
  .collections .collections__heading {
    line-height: 1.2;
  }

  #conteudo {
    display: flex;
    flex-direction: column;
  }
  #conteudo > .gallery {
    order: -1;
  }
}

.stack > * + * {
  margin-top: var(--space-md);
}

.flow > * + * {
  margin-top: var(--space-lg);
}

.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid--auto {
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
}

.flex {
  display: flex;
  gap: var(--space-md);
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.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;
}

.section-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  scroll-margin-top: calc(var(--nav-h) + 8px);
  pointer-events: none;
}

.skip-link {
  position: fixed;
  top: -100%;
  left: var(--gutter);
  z-index: var(--z-modal);
  padding: 0.75rem 1.25rem;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-on-dark);
  background-color: var(--color-ink);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: var(--gutter);
}
